Skip to content

Commit

Permalink
Merge pull request #40 from route06inc/change-basic-model-to-gpt-4o
Browse files Browse the repository at this point in the history
set model to gpt-4o
  • Loading branch information
toyamarinyon authored Oct 23, 2024
2 parents eb35581 + 1d51280 commit 12a39cd
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 12a39cd

Please sign in to comment.