2026-01-14 07:15:58 +08:00
|
|
|
from pydantic import BaseModel, ConfigDict, Field
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class ModelConfig(BaseModel):
|
|
|
|
|
"""Config section for a model"""
|
|
|
|
|
|
|
|
|
|
name: str = Field(..., description="Unique name for the model")
|
2026-01-14 09:21:19 +08:00
|
|
|
display_name: str | None = Field(..., default_factory=lambda: None, description="Display name for the model")
|
|
|
|
|
description: str | None = Field(..., default_factory=lambda: None, description="Description for the model")
|
2026-01-14 07:15:58 +08:00
|
|
|
use: str = Field(
|
|
|
|
|
...,
|
|
|
|
|
description="Class path of the model provider(e.g. langchain_openai.ChatOpenAI)",
|
|
|
|
|
)
|
|
|
|
|
model: str = Field(..., description="Model name")
|
|
|
|
|
model_config = ConfigDict(extra="allow")
|
2026-01-14 09:21:19 +08:00
|
|
|
supports_thinking: bool = Field(default_factory=lambda: False, description="Whether the model supports thinking")
|
2026-03-02 20:49:41 +08:00
|
|
|
supports_reasoning_effort: bool = Field(default_factory=lambda: False, description="Whether the model supports reasoning effort")
|
2026-01-14 07:15:58 +08:00
|
|
|
when_thinking_enabled: dict | None = Field(
|
|
|
|
|
default_factory=lambda: None,
|
|
|
|
|
description="Extra settings to be passed to the model when thinking is enabled",
|
|
|
|
|
)
|
2026-01-29 13:44:04 +08:00
|
|
|
supports_vision: bool = Field(default_factory=lambda: False, description="Whether the model supports vision/image inputs")
|
2026-03-08 20:18:21 +08:00
|
|
|
thinking: dict | None = Field(
|
|
|
|
|
default_factory=lambda: None,
|
|
|
|
|
description=(
|
|
|
|
|
"Thinking settings for the model. If provided, these settings will be passed to the model when thinking is enabled. "
|
|
|
|
|
"This is a shortcut for `when_thinking_enabled` and will be merged with `when_thinking_enabled` if both are provided."
|
|
|
|
|
),
|
|
|
|
|
)
|