Daniel Caldeweyher

Results 5 comments of Daniel Caldeweyher

Please get rid of `pgdb` and `pg` and just use `psycopg2` or `pg8000` as used by AWS Datawrangler. Why are random libraries used in aws samples?

Thanks @bogomips. That did the trick.

this is still an issue. I am hosting on ECS and cannot easily meddle with the image and cannot enable CORS via environment variable

I have the same problem. Configuring it the for openai compatible endpoint of deepinfra results in invalid urls: ``` val deepinfra = OpenAI( token = deepInfraApiKey, host = OpenAIHost("https://api.deepinfra.com/v1/openai") )...

I was able to get it to work with fudging the baseurl: ``` val deepinfra = OpenAI( token = deepInfraApiKey, host = OpenAIHost("https://api.deepinfra.com/v1/openai/DUMMY") ) ``` FYI this affects version 3.8.2....