We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7cb8c9 commit 07d1b9aCopy full SHA for 07d1b9a
src/integrations/vercel-ai/index.ts
@@ -17,7 +17,7 @@ class VercelAIApi {
17
/**
18
* @todo make it dynamic, get from project settings
19
*/
20
- this.modelId = 'gpt-4o';
+ this.modelId = 'deepseek/deepseek-v3.1';
21
}
22
23
@@ -29,7 +29,7 @@ class VercelAIApi {
29
30
public async generateSuggestion(payload: EventData<EventAddons>) {
31
const { text } = await generateText({
32
- model: openai(this.modelId),
+ model: this.modelId,
33
system: ctoInstruction,
34
prompt: eventSolvingInput(payload),
35
});
0 commit comments