Skip to content

Commit

Permalink
feat: add support for claude-3-5-sonnet-20240620 (langgenius#5452)
Browse files Browse the repository at this point in the history
  • Loading branch information
takatost authored Jun 20, 2024
1 parent b04715d commit ff0f02d
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 2 deletions.
4 changes: 2 additions & 2 deletions api/core/entities/provider_configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,8 +206,8 @@ def custom_credentials_validate(self, credentials: dict) -> tuple[Provider, dict
credentials[key] = encrypter.decrypt_token(self.tenant_id, original_credentials[key])

credentials = model_provider_factory.provider_credentials_validate(
self.provider.provider,
credentials
provider=self.provider.provider,
credentials=credentials
)

for key, value in credentials.items():
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
- claude-3-5-sonnet-20240620
- claude-3-haiku-20240307
- claude-3-opus-20240229
- claude-3-sonnet-20240229
- claude-2.1
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
model: claude-3-5-sonnet-20240620
label:
en_US: claude-3-5-sonnet-20240620
model_type: llm
features:
- agent-thought
- vision
- tool-call
- stream-tool-call
model_properties:
mode: chat
context_size: 200000
parameter_rules:
- name: temperature
use_template: temperature
- name: top_p
use_template: top_p
- name: top_k
label:
zh_Hans: 取样数量
en_US: Top k
type: int
help:
zh_Hans: 仅从每个后续标记的前 K 个选项中采样。
en_US: Only sample from the top K options for each subsequent token.
required: false
- name: max_tokens
use_template: max_tokens
required: true
default: 4096
min: 1
max: 4096
- name: response_format
use_template: response_format
pricing:
input: '3.00'
output: '15.00'
unit: '0.000001'
currency: USD

0 comments on commit ff0f02d

Please sign in to comment.