feat!: breaking change - OpenRouter models are now read from conf/openrouter_models.json while Custom / Self-hosted models are read from conf/custom_models.json
feat: Azure OpenAI / Azure AI Foundry support. Models should be defined in conf/azure_models.json (or a custom path). See .env.example for environment variables or see readme. https://github.com/BeehiveInnovations/zen-mcp-server/issues/265 feat: OpenRouter / Custom Models / Azure can separately also use custom config paths now (see .env.example ) refactor: Model registry class made abstract, OpenRouter / Custom Provider / Azure OpenAI now subclass these refactor: breaking change: `is_custom` property has been removed from model_capabilities.py (and thus custom_models.json) given each models are now read from separate configuration files
This commit is contained in:
@@ -21,7 +21,7 @@ py-modules = ["server", "config"]
|
||||
"*" = ["conf/*.json"]
|
||||
|
||||
[tool.setuptools.data-files]
|
||||
"conf" = ["conf/custom_models.json"]
|
||||
"conf" = ["conf/custom_models.json", "conf/openrouter_models.json", "conf/azure_models.json"]
|
||||
|
||||
[project.scripts]
|
||||
zen-mcp-server = "server:run"
|
||||
|
||||
Reference in New Issue
Block a user