tb_ce_client.models.AnthropicChatModelConfig
Extends: AiModelConfig
| Name | Type | Description | Notes |
|---|---|---|---|
| provider_config | AnthropicProviderConfig | ||
| model_id | str | ||
| temperature | float | [optional] | |
| top_p | float | [optional] | |
| top_k | int | [optional] | |
| max_output_tokens | int | [optional] | |
| timeout_seconds | int | [optional] | |
| max_retries | int | [optional] | |
| model_type | AiModelType | [optional] [readonly] |
| Name | Type | Description | Notes |
|---|---|---|---|
| provider | str |
| Name | Type | Description | Notes |
|---|---|---|---|
| api_key | str |
CHAT
- Package:
tb_ce_client.models - Attribute access:
obj.provider_config,obj.name, etc. - Serialize:
obj.model_dump()orobj.model_dump(by_alias=True)for camelCase JSON - Deserialize:
AnthropicChatModelConfig.model_validate(data)orAnthropicChatModelConfig.model_validate_json(json_str) - None fields: Optional attributes default to
None; accessing them never raises exceptions