Use bron as RAG with CoHere
git pull
- modify the docker-compose.yml file so that a CO_API_KEY is exposed with your CoHere API Key, like below
cd docker
docker-compose up -d
docker exec -it bron-llm_shell_1 ./llm.py
version: "3.7"
services:
shell:
build:
context: .
dockerfile: Dockerfile
environment:
- "CO_API_KEY=xxxxx"
volumes:
- ../:/opt/bron-llm
networks:
- bron-llm
restart: always
networks:
bron-llm: