Adds provider names to dropdown

This commit is contained in:
Pugazhendhi
2025-01-27 11:16:57 +05:30
committed by Vignesh Subbiah
parent aed51a2bc5
commit 31ec687768
2 changed files with 7 additions and 7 deletions

View File

@@ -20,7 +20,7 @@ export class UnboundHandler implements ApiHandler {
"Content-Type": "application/json",
},
body: JSON.stringify({
model: this.getModel().id,
model: this.getModel().id.split("/")[1],
messages: [{ role: "system", content: systemPrompt }, ...messages],
}),
})