Skip to content

Commit

Permalink
💄 style: Modify bedrock provided model (#2473)
Browse files Browse the repository at this point in the history
* 💄 style: Modify bedrock provided model

* 💄 style: Adjust copywriting
  • Loading branch information
RubuJam committed May 20, 2024
1 parent 5c4ffc7 commit a1fabf6
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions src/config/modelProviders/bedrock.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,35 @@ import { ModelProviderCard } from '@/types/llm';
// ref https://docs.aws.amazon.com/bedrock/latest/userguide/model-ids.html
const Bedrock: ModelProviderCard = {
chatModels: [
{
displayName: 'Titan Text G1 - Lite',
id: 'amazon.titan-text-lite-v1:0:4k',
tokens: 4000,
},
{
description:
'Amazon Titan Text G1 - Express v1,上下文长度可达 8000 个 token,适合广泛的用途。',
displayName: 'Titan Text G1 - Express',
id: 'amazon.titan-text-express-v1:0:8k',
tokens: 8000,
},
{
displayName: 'Titan Text Premier',
id: 'amazon.titan-text-premier-v1:0:32K',
tokens: 32_000,
},
{
displayName: 'Jurassic-2 Mid',
enabled: true,
id: 'ai21.j2-mid-v1',
tokens: 8192,
},
{
displayName: 'Jurassic-2 Ultra',
enabled: true,
id: 'ai21.j2-ultra-v1',
tokens: 8192,
},
{
description:
'Claude 3 Opus 是 Anthropic 最强大的人工智能模型,在处理高度复杂的任务方面具备顶尖性能。该模型能够以非凡的流畅性和类似人类的理解能力引导开放式的提示和未可见的场景。Claude 3 Opus 向我们展示生成式人工智能的美好前景。 Claude 3 Opus 可以处理图像和返回文本输出,并且提供 200K 上下文窗口。',
Expand Down

0 comments on commit a1fabf6

Please sign in to comment.