Emmanuel Letremble
Emmanuel Letremble
I had the same problem, so I forked and solved the problem (the openai models and the other models hosted on Azure doesn't call the same type of URL). The...
Hello @mldangelo , Here my `docker-compose-local.yml` file ``` services: database: image: postgres:14.1-alpine restart: always environment: - POSTGRES_USER=xxxx - POSTGRES_PASSWORD=xxxx - POSTGRES_DB=xxxx expose: - 5432 ports: - "5432:5432" promptfoo: container_name: "xxxx_promptfoo"...
@mldangelo I tried several volumes configurations : ``` volumes: - promptfoo_data:/root/.promptfoo ``` > Result: **no data** in the `promptfoo_data` **volume** --- ``` volumes: - ./promptfoo_data:/app ``` > Result : the...