How to change provider settings as easy as possible? #955
Replies: 1 comment
-
Didn't realize these discussions were here separately from issues. You can modify agent settings in the Streamlit web UI. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I want to change for example AGiXT/agixt/providers/kobold.py
But changes to the parameters of this file do not result in changes inside the docker containers.
I tried using
docker-compose up -d --build
docker-compose build --no-cache
docker-compose up -d
but that didn't work.
So far it has only worked like this:
edit the kobold.py file
docker cp (path to edited kobold.py file) (agixt-agixt-1 container id):(path to copy kobold.py file to agixt-agixt-1 container)
Example of my command:
docker cp /home/agi/kobold.py 5aff64bbcd29bb4ccacd868459078f931324eb53:/agixt/providers/kobold.py
Beta Was this translation helpful? Give feedback.
All reactions