mirror of
https://github.com/FuQuan233/nonebot-plugin-llmchat.git
synced 2025-09-06 19:40:44 +00:00
✨ support vision models
This commit is contained in:
parent
db9794a18a
commit
f2d1521158
2 changed files with 37 additions and 0 deletions
1
nonebot_plugin_llmchat/config.py
Normal file → Executable file
1
nonebot_plugin_llmchat/config.py
Normal file → Executable file
|
@ -12,6 +12,7 @@ class PresetConfig(BaseModel):
|
|||
temperature: float = Field(0.7, description="生成温度(0-2]")
|
||||
proxy: str = Field("", description="HTTP代理服务器")
|
||||
support_mcp: bool = Field(False, description="是否支持MCP")
|
||||
support_image: bool = Field(False, description="是否支持图片输入")
|
||||
|
||||
class MCPServerConfig(BaseModel):
|
||||
"""MCP服务器配置"""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue