Skip to content

Commit

Permalink
set model to gpt-4o
Browse files Browse the repository at this point in the history
  • Loading branch information
toyamarinyon committed Oct 23, 2024
1 parent eb35581 commit 1d51280
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export async function generateArtifactStream(
const stream = createStreamableValue();

(async () => {
const model = "gpt-4o-mini";
const model = "gpt-4o";
const generation = trace.generation({
input: params.userPrompt,
model,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export async function generateWebSearchStream(
const stream = createStreamableValue();

(async () => {
const model = "gpt-4o-mini";
const model = "gpt-4o";
const generation = trace.generation({
input: inputs.userPrompt,
model,
Expand Down

0 comments on commit 1d51280

Please sign in to comment.