mirror of
https://github.com/microsoft/autogen.git
synced 2025-12-26 14:38:50 +00:00
- Updated HumanEval template to use AgentChat - Update templates to use config.yaml for model and other configuration - Read environment from ENV.yaml (ENV.json still supported but deprecated) - Temporarily removed WebArena and AssistantBench. Neither had viable Templates after `autogen_magentic_one` was removed. Templates need to be update to AgentChat (in a future PR, but this PR is getting big enough already)
39 lines
1.0 KiB
YAML
39 lines
1.0 KiB
YAML
# config.yaml
|
|
#
|
|
# The contents of this file will be copied into the 'config.yaml' file of
|
|
# every expanded Task, just prior to running the scenario. This provides a
|
|
# good place to store model or other configurations important for the scenario.
|
|
|
|
###############################
|
|
# Open AI model configuration #
|
|
###############################
|
|
model_config: &client
|
|
provider: autogen_ext.models.openai.OpenAIChatCompletionClient
|
|
config:
|
|
model: gpt-4o
|
|
|
|
|
|
##############################
|
|
# Ollama model configuration #
|
|
##############################
|
|
#model_config: &client
|
|
# provider: autogen_ext.models.openai.OpenAIChatCompletionClient
|
|
# config:
|
|
# model: deepseek-r1:7b
|
|
# base_url: http://localhost:11434/v1/
|
|
# api_key: ollama
|
|
# model_info:
|
|
# function_calling: false
|
|
# json_output: false
|
|
# vision: false
|
|
# family: r1
|
|
#
|
|
|
|
#######################
|
|
# Used by MagenticOne #
|
|
#######################
|
|
orchestrator_client: *client
|
|
coder_client: *client
|
|
web_surfer_client: *client
|
|
file_surfer_client: *client
|