Uploading your own agent framework
Last updated
Last updated
Click on “Upload New Framework”.
Complete the following steps and review the summary panel before clicking “Submit”
Enter your Agent Framework name (lowercase letters only, e.g. helloworld
)
Write a description of the AI Agent Framework (e.g., “ A sophisticated furry chat agent specializing in handling mission-critical conversations”)
Input the Docker Image(e.g., docker_org_name/imagine:tag
)
Input Agent Logo (e.g. https://example.com/ottie007.png)
Choose your Chat Endpoint (e.g. /poke
)
Input Port ( e.g. 3000
)
Ensure your agent chat framework follows the Chat Request and Chat Response Schema as shown below.
Input GitHub URL (e.g. https://github.com/alt-research)
Specify Environment Variables (optional)
Finally, ensure all details are correct in the Summary panel and click on “Submit”.
You can now find your uploaded framework under "My Uploads" tab. If you wish to, you can opt to "Make Public" your framework in our Autonome App Store by submitting your request. Typically, these requests will be approved in two to three business days if there are no issues.
If your agent deployment doesn't work with your uploaded framework, please do ensure your framework meets the following criteria before uploading again:
It has to be built for Linux architecture, you can use docker buildx build --platform=linux/amd64
if you are on MacOS;
The docker image url should be publicly accessible in order for our infrastructure to pull the image (https://hub.docker.com/);
The agent must have some API endpoints available to communicate, instead of being just a CLI application