Skip to content

kurtosis-tech/agentgpt-package

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

agentGPT Package

Let your AI Agents loose locally in just 2 commands, made possible by Kurtosis

Assuming you have Kurtosis installed; replace YOUR_API_KEY_HERE with your actual OpenAI API key

kurtosis run github.com/kurtosis-tech/agentgpt-package '{"OPENAI_API_KEY": "YOUR_API_KEY_HERE"}'

Then just visit it on your browser at http://localhost:3000

Docker Image Note

Currently this project is working with a self published image at h4ck3rk3y/agentgpt. If you have the agentGPT repo cloned locally, do the following instead from inside the agentGPT repository:

./setup.sh --docker
kurtosis run github.com/kurtosis-tech/agentgpt-package '{"OPENAI_API_KEY": "YOUR_API_KEY_HERE", "IMAGE": "IMAGE_NAME"}'

Where IMAGE_NAME is the desired image name. The IMAGE arg overrides the IMAGE with which the container runs.

Exposed Port Note

By default we expose the port 3000; if you are running into port conflicts or want to change it for any other reason use the PORT_OVERRIDE arg; as follows (using 3030 as an example):

kurtosis run github.com/kurtosis-tech/agentgpt-package '{"OPENAI_API_KEY": "YOUR_API_KEY_HERE", "PORT_OVERRIDE": 3030}'