Skip to content

Commit

Permalink
fixed linting error
Browse files Browse the repository at this point in the history
  • Loading branch information
Nils Ohlmeier committed Jan 22, 2025
1 parent c55f406 commit 0ec253e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion app/durableObjects/ChatRoom.server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,10 @@ export class ChatRoom extends Server<Env> {
params.set('instructions', instructions)
}

params.set('model', this.env.OPENAI_MODEL_ID || defaultOpenAIModelID)
params.set(
'model',
this.env.OPENAI_MODEL_ID || defaultOpenAIModelID
)

// The Calls's offer is sent to OpenAI
const openaiAnswer = await requestOpenAIService(
Expand Down

0 comments on commit 0ec253e

Please sign in to comment.