An SDK for hosting and managing AI agents.
Project description
AgentServe SDK
AgentServe is an SDK & CLI for hosting and managing AI agents. It provides a simple interface to wrap your agent in a FastAPI server with a Redis queue to maintain tasks. The output is a single docker image that you can deploy anywhere.
Goals and Objectives
The goal of AgentServe is to provide the easiest way to take an local agent to production and standardize the communication layer between multiple agents, humans, and other systems.
Features
- Standardized: AgentServe provides a standardized way to communicate with AI agents via a REST API.
- Framework Agnostic: AgentServe supports multiple agent frameworks (OpenAI, LangChain, LlamaIndex, and Blank).
- Dockerized: The output is a single docker image that you can deploy anywhere.
- Easy to Use: AgentServe provides a CLI tool to initialize and setup your AI agent projects.
Requirements
- Python 3.9+
Installation
To install the AgentServe SDK, you can use pip:
pip install agentserve
CLI Commands
AgentServe provides a Command-Line Interface (CLI) tool to setup your AI agent projects. Below are the available commands and their usages.
agentserve init <project_name> [--framework <framework>] # Initialize a new project
agentserve setup # Add AgentServe to an existing project
Getting Started
First we need to set up agentserve in our project. We can do this by running the init command to create a new project or by running the setup command to add AgentServe to an existing project.
Initialize a New Project
Create a new AgentServe project with a specified agent framework.
Command:
agentserve init <project_name> [--framework <framework>]
Options:
--framework: (Optional) Specify the type of agent framework to use. Available options:openai(default)langchainllamaindexblank
Example:
agentserve init my_project --framework openai
This command adds AgentServe to the current project using the OpenAI framework.
Run the Server
Use Docker Compose to build and run the server:
docker-compose up --build
This command starts the API server and a Redis instance, allowing your agent to process tasks.
Test the Agent
The agent will be running on http://localhost:8000/ and have the following endpoint:
POST /task/sync- Synchronously process a taskPOST /task/async- Asynchronously process a taskGET /task/status/:task_id- Get the status of a taskGET /task/result/:task_id- Get the result of a task
Example:
curl -X POST http://localhost:8000/task/sync -H "Content-Type: application/json" -d '{"prompt": "What is the capital of France?"}'
Example Project Structure
After initializing a new project, your project directory will look like this:
my_project/
├── Dockerfile
├── docker-compose.yml
├── main.py
├── example_agent.py
├── requirements.txt
main.py: The main application file where the agent server is configured.Dockerfile&docker-compose.yml: Docker configurations for building and running the application.example_openai_agent.py: An example agent tailored to the OpenAI framework.requirements.txt: Lists Python dependencies.
API Reference
POST /task/sync
Synchronously process a task.
Request Body:
task_data: A dictionary containing the task data.
Response:
result: The result of the task.
POST /task/async
Asynchronously process a task.
Request Body:
task_data: A dictionary containing the task data.
Response:
task_id: The ID of the task.
GET /task/status/:task_id
Get the status of a task.
Response:
status: The status of the task.
GET /task/result/:task_id
Get the result of a task.
Response:
result: The result of the task.
CLI Usage
Init Command (for new projects)
To create a new project with AgentServe:
agentserve init my_new_project --framework openai
Result:
- Creates a new directory named
my_new_project. - Populates it with necessary AgentServe files tailored to the OpenAI framework.
- Sets up
requirements.txtwith necessary dependencies.
Setup Command (for existing projects)
Navigate to your existing project directory and run:
agentserve setup
Result:
- Adds AgentServe to the project and sets up the necessary files.
- Note this command will not run if the project already included a main.py, Dockerfile or docker-compose.yml
License
This project is licensed under the MIT License.
Contact
For any questions or issues, please contact Peter at peter@getprops.ai.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file agentserve-0.1.2.tar.gz.
File metadata
- Download URL: agentserve-0.1.2.tar.gz
- Upload date:
- Size: 9.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e2eb3e7ff28fea6eb574043eac3081f309bfdafbe56672947466bad24a27b915
|
|
| MD5 |
83263ed69762a283aa986517417e7e40
|
|
| BLAKE2b-256 |
dd9a9b203eccd8ffb3f0a08a5e7a9b516afe7d4151f72d40f2946775e65eacad
|
File details
Details for the file agentserve-0.1.2-py3-none-any.whl.
File metadata
- Download URL: agentserve-0.1.2-py3-none-any.whl
- Upload date:
- Size: 10.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0abf7f4aa5172c8b7c88c0ce57c861ee0c67416355b9365ba55a328ed3230cd6
|
|
| MD5 |
561212d630198080d1a5722a10310c0b
|
|
| BLAKE2b-256 |
32820a23f04797cdb06a856a602acf5bb46be872cee2f1943c2d0bcfdfa15ad9
|