tutorial(text: str) -> str: Providing a TODO list as a toturial for the foundation model based on the given objective.
(text: str)
| 30 | |
| 31 | @tool.get("/tutorial") |
| 32 | def tutorial(text: str) -> str: |
| 33 | """ |
| 34 | tutorial(text: str) -> str: Providing a TODO list as a toturial for the foundation model based on the given objective. |
| 35 | """ |
| 36 | result = chain.run(text) |
| 37 | return result |
| 38 | |
| 39 | return tool |