You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When interacting with Chaz I get the following error:
!chaz Error: Error: Failed to load config at '/root/.config/aichat/config.yaml' Caused by: No such file or directory (os error 2)
Docker:
chaz:
image: arcuru/chaz:main # Set to your desired version
container_name: chaz
restart: unless-stopped
network_mode: host
volumes:
# Mount your config file to /config.yaml
- /opt/synapse/chaz/config.yaml:/config.yaml
# Mount your aichat config to /aichat, AND SET THAT LOCATION IN CHAZ'S CONFIG.YAML
- /opt/synapse/chaz/aichat-state:/aichat
- /opt/synapse/chaz/aichat.yaml:/aichat/config.yaml
# Mount the volume into the same location specified in config.yaml
- /opt/synapse/chaz/state:/state
Thanks for the report! It seems that I broke that setting in the latest update.
As a workaround until I get the chance to fix it, removing the aichat_config_dir from your config.yaml and mounting the files into the default directory should work.
Docker:
chaz:
image: arcuru/chaz:main # Set to your desired version
container_name: chaz
restart: unless-stopped
network_mode: host
volumes:
# Mount your config file to /config.yaml
- /opt/synapse/chaz/config.yaml:/config.yaml
# Mount your aichat config to /aichat, AND SET THAT LOCATION IN CHAZ'S CONFIG.YAML
- /opt/synapse/chaz/aichat-state:/root/.config/aichat
- /opt/synapse/chaz/aichat.yaml:/root/.config/aichat/config.yaml
# Mount the volume into the same location specified in config.yaml
- /opt/synapse/chaz/state:/state
When interacting with Chaz I get the following error:
Docker:
config.yaml:
The text was updated successfully, but these errors were encountered: