mirror of
https://github.com/microsoft/autogen.git
synced 2025-11-03 11:20:35 +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)
30 lines
859 B
YAML
30 lines
859 B
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:
|
|
provider: autogen_ext.models.openai.OpenAIChatCompletionClient
|
|
config:
|
|
model: gpt-4o
|
|
|
|
|
|
##############################
|
|
# Ollama model configuration #
|
|
##############################
|
|
#model_config:
|
|
# 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
|