This quickstart guide will walk you through building a local travel guide application. In just 5 minutes, you'll be able to build the application and deploy it to the cloud.
You can ask simple questions like:
- Create an itinerary for a weekend trip to Los Angeles.
- Plan a 4-day trip to San Francisco.
- Plan a trip to New York from January 20th to January 24th.
- What to do in Phoenix this weekend?
Step-by-Step Guide
Install AgentifyMe CLI
First, install the AgentifyMe CLI, which provides the tools for local development and deployment:
bashcurl -LsSf https://agentifyme.ai/install.sh | bash
The installation script will place the CLI in ~/.agentifyme/bin/agentifyme. Add this location to your PATH and verify the installation:
bashagentifyme --version
Log in to your AgentifyMe account, if you don't have an account, you can sign up for one here:
bashagentifyme login
Create a New Project
Let's create a new directory for the project.
bashmkdir my-local-travel-guide && cd my-local-travel-guide
Create a project using our quickstart template:
bashagentifyme init my-local-travel-guide --template agentifyme/local-travel-guide-py
This command creates a new directory containing all necessary project files. Take some time to explore the generated code structure.
Set Up Local Development
In this tutorial, we'll use the OpenAI to generate responses. First, configure your OpenAI API key:
bashcp .env.example .env echo "OPENAI_API_KEY=sk-..." >> .env
Visit http://localhost:3418 in your browser to see your development environment.
Run the workflow in development mode:
bashagentifyme dev
Invoke Your Workflow
curl --location 'http://localhost:34186/v1/workflows/run' \ --header 'x-wf-endpoint: my-local-travel-guide-0fc8e6bd' \ --header 'Content-Type: application/json' \ --header 'X-API-KEY: <API_KEY>' \ --data '{ "name": "search-candidates", "parameters": { "query": "What to do in Monterey this weekend?", "organization_id": "272e9e73-fe36-4ea1-acf6-4ea08d21aa0c", "filters": {} } }'
Congratulations! 🎉
You've successfully created and deployed your first agentic workflow! Your workflow is now running in the cloud and ready to use.
Next Steps
To continue your journey with AgentifyMe: