Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update model names (ernie-longtext -> ernie-3.5-8k) #340

Merged
merged 2 commits into from
Apr 17, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/sdk/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ models = erniebot.Model.list()

print(models)
# ernie-3.5 文心大模型(ernie-3.5)
# ernie-3.5-8k 文心大模型(ernie-3.5-8k)
# ernie-lite 文心大模型(ernie-lite)
# ernie-4.0 文心大模型(ernie-4.0)
# ernie-longtext 文心大模型(ernie-longtext)
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

咱们整个项目当中有很多 ernie-longtext的keyword,是不是得全量替换呢?

# ernie-speed 文心大模型(ernie-speed)
# ernie-speed-128k 文心大模型(ernie-speed-128k)
# ernie-tiny-8k 文心大模型(ernie-tiny-8k)
Expand Down
2 changes: 1 addition & 1 deletion docs/sdk/models.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ ERNIE Bot支持的所有模型如下:
| ernie-3.5 | 文心大模型3.5版本。具备优秀的知识增强和内容生成能力,在文本创作、问答、推理和代码生成等方面表现出色。 | 对话补全,函数调用 | qianfan,aistudio | message中的content总长度、functions和system字段总内容不能超过20000个字符,且不能超过5120 tokens | 2048 |
| ernie-lite | ERNIE Lite是百度自研的轻量级大语言模型,兼顾优异的模型效果与推理性能,适合低算力AI加速卡推理使用。 | 对话补全 | qianfan,aistudio | message中的content总长度和system字段总内容不能超过11200个字符,且不能超过7168 tokens | 1024 |
| ernie-4.0 | 文心大模型4.0版本,具备目前系列模型中最优的理解和生成能力。 | 对话补全,函数调用 | qianfan,aistudio | message中的content总长度和system字段总内容不能超过20000个字符,且不能超过5120 tokens | 2048 |
| ernie-longtext | 文心大模型。在ernie-3.5模型的基础上增强了对长对话上下文的支持,输入token数量上限为7000。 | 对话补全,函数调用 | qianfan,aistudio | message中的content总长度、functions和system字段总内容不能超过20000个字符,且不能超过5120 tokens | 2048 |
| ernie-3.5-8k | 文心大模型。在ernie-3.5模型的基础上增强了对长对话上下文的支持,输入token数量上限为7000。 | 对话补全,函数调用 | qianfan,aistudio | message中的content总长度、functions和system字段总内容不能超过20000个字符,且不能超过5120 tokens | 2048 |
| ernie-speed | ERNIE Speed是百度自研高性能大语言模型,通用能力优异,适合作为基座模型进行精调,更好地处理特定场景问题,同时具备极佳的推理性能 | 对话补全 | qianfan,aistudio | message中的content总长度和system字段总内容不能超过24000个字符,且不能超过6144 tokens | 2048 |
| ernie-speed-128k | ERNIE Speed是百度自研高性能大语言模型,通用能力优异,适合作为基座模型进行精调,更好地处理特定场景问题,同时具备极佳的推理性能。 | 对话补全 | qianfan,aistudio | message中的content总长度和system字段总内容不能超过516096个字符,且不能超过126976 tokens | 4096 |
| ernie-tiny-8k | ERNIE Tiny是百度自研的超高性能大语言模型,部署与精调成本在文心系列模型中最低 | 对话补全 | qianfan,aistudio | message中的content总长度和system字段总内容不能超过24000个字符,且不能超过6144 tokens | 2048 |
Expand Down
16 changes: 10 additions & 6 deletions erniebot/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,16 @@ import erniebot
models = erniebot.Model.list()

print(models)
# ernie-3.5 文心大模型(ernie-3.5)
# ernie-turbo 文心大模型(ernie-turbo)
# ernie-4.0 文心大模型(ernie-4.0)
# ernie-longtext 文心大模型(ernie-longtext)
# ernie-text-embedding 文心百中语义模型
# ernie-vilg-v2 文心一格模型
# ernie-3.5 文心大模型(ernie-3.5)
# ernie-3.5-8k 文心大模型(ernie-3.5-8k)
# ernie-lite 文心大模型(ernie-lite)
# ernie-4.0 文心大模型(ernie-4.0)
# ernie-speed 文心大模型(ernie-speed)
# ernie-speed-128k 文心大模型(ernie-speed-128k)
# ernie-tiny-8k 文心大模型(ernie-tiny-8k)
# ernie-char-8k 文心大模型(ernie-char-8k)
# ernie-text-embedding 文心百中语义模型
# ernie-vilg-v2 文心一格模型

# Set authentication params
erniebot.api_type = "aistudio"
Expand Down
Loading