Skip to content

Commit

Permalink
#93 Adding support for Claude 3.5 Sonnet
Browse files Browse the repository at this point in the history
  • Loading branch information
santthosh committed Jun 26, 2024
1 parent 4c0b18b commit 6a330e8
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions prisma/seed.ts
Original file line number Diff line number Diff line change
Expand Up @@ -328,6 +328,26 @@ async function main() {
} as Prisma.JsonObject,
},
});

const claude_3_5_sonnet_20240620 = await prisma.model.upsert({
where: { id: 'claude-3-5-sonnet-20240620' },
update: {
features: {
retrieval: false,
} as Prisma.JsonObject,
},
create: {
id: 'claude-3-5-sonnet-20240620',
name: 'Claude 3.5 Sonnet',
description:
"Claude 3.5 Sonnet is anthropic's most intelligent model with highest level of intelligence and capability",
url: 'https://docs.anthropic.com/en/docs/about-claude/models',
providerId: 'anthropic',
features: {
retrieval: false,
} as Prisma.JsonObject,
},
});
}

main()
Expand Down

0 comments on commit 6a330e8

Please sign in to comment.