Chris Van Pelt (CVP)

Results 267 comments of Chris Van Pelt (CVP)

I'm using the native OpenAI client which I imagine [supports it](https://learn.microsoft.com/en-us/azure/ai-services/openai/how-to/switching-endpoints). You can just change the [code here](https://github.com/wandb/openui/blob/main/backend/openui/server.py#L68).

Hey @koulanurag we're working on an implementation of tables that can scale to millions of rows and expect to release next year. Currently tables are limited to 200k rows. We...

@VideoFX @cashgarman I just pushed a change to main and deployed to the demo app. Copying or downloading now includes the needed wrapper to render properly. For future reference the...

Hmmm, I know llava was working at one point. Maybe you need to upgrade Ollama? I'll try to reproduce.

Hey @codingbjorn. Running `npm run build` from the `frontend` directory will automatically copy the built assets into `backend/openui/dist`. That's what's going to make it into the docker container when building...

Hey @hukarere thanks for the detailed description of your issue, this all makes sense. My backend doesn't actually check this api key or need it, it's only set because the...

I did a little more digging, my approach above indeed removes the Authorization header but it probably won't automatically include the existing existing credentials in the `fetch` request. To make...

`credentials: "include"` tells the browser to include any credentials that it has with the requests. I believe because we're on the same domain it just includes those automatically, we would...