Add Deploy view in AGS (#4756)

* update version, fix component factory bug

* add basic structure for deploy

* minor fixes, deploy v1

* minor text updated

* format fixes

* formatting fixes .. webby test samples

* update cli command, update views,

* packakge.json and other fixes

* format fixes
This commit is contained in:
Victor Dibia
2024-12-18 18:57:11 -08:00
committed by GitHub
parent c21555290e
commit 4e3a70303d
18 changed files with 1328 additions and 628 deletions

View File

@@ -52,14 +52,14 @@ Have a local model server like Ollama, vLLM or LMStudio that provide an OpenAI c
"component_type": "model",
"model_capabilities": {
"vision": false,
"function_calling": false,
"function_calling": true,
"json_output": false
}
}
```
```{caution}
It is important that you add the `model_capabilities` field to the model client specification for custom models. This is used by the framework instantiate and use the model correctly.
It is important that you add the `model_capabilities` field to the model client specification for custom models. This is used by the framework instantiate and use the model correctly. Also, the `AssistantAgent` and many other agents in AgentChat require the model to have the `function_calling` capability.
```
## Q: The server starts but I can't access the UI