Initialize and run a Serverless LLM Tool project
mainTo build an AI agent with LLM Function Calling, follow these steps:
- Initialize the project: Run
yomo initto scaffold a new project structure. - Implement logic: Edit the application code (e.g.,
./app/src/app.tsin TypeScript projects). - Run the tool: Use the
yomo runcommand to execute your tool with a specific name.
yomo init
yomo run -n <tool-name> <path-to-app>Example for a weather tool:
yomo run -n get-weather ./appyomo init
yomo run -n get-weather ./app