A web application for creating AI agents using Together AI's API.
- Create agents with customizable goals, models, and tools
- Responsive Bootstrap UI
- Real-time API response display
- Node.js and npm
- Python 3.7+ for the FastAPI backend
- Together AI API key
- Make sure you have Python installed
- Install the required packages:
pip install fastapi uvicorn python-dotenv httpx pydantic - Create a
.envfile with your Together AI API key:TOGETHER_API_KEY=your_api_key_here - Run the FastAPI server:
The backend will be available at http://localhost:8000
uvicorn main:app --reload
- Make sure you have Node.js and npm installed
- Install the dependencies:
npm install - Run the development server:
The frontend will be available at http://localhost:3000
npm start
- Fill out the form with the agent's goal, select a model, and choose required tools
- Click "Create Agent" to submit the request to the FastAPI backend
- View the agent's response in the right panel