You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

model_config_template.yaml 1.3 kB

12345678910111213141516171819202122232425262728293031323334353637
  1. # Use Open AI with key
  2. provider: autogen_ext.models.openai.OpenAIChatCompletionClient
  3. config:
  4. model: gpt-4o
  5. api_key: REPLACE_WITH_YOUR_API_KEY
  6. # Use a locally hosted model using Ollama.
  7. # provider: autogen_ext.models.openai.OpenAIChatCompletionClient
  8. # config:
  9. # model: deepseek-r1:8b
  10. # base_url: http://localhost:11434/v1
  11. # api_key: ollama
  12. # model_info:
  13. # function_calling: false
  14. # json_output: false
  15. # vision: false
  16. # family: r1
  17. # Use Azure Open AI with key
  18. # provider: autogen_ext.models.openai.AzureOpenAIChatCompletionClient
  19. # config:
  20. # model: gpt-4o
  21. # azure_endpoint: https://{your-custom-endpoint}.openai.azure.com/
  22. # azure_deployment: {your-azure-deployment}
  23. # api_version: {your-api-version}
  24. # api_key: REPLACE_WITH_YOUR_API_KEY
  25. # Use Azure OpenAI with AD token provider.
  26. # provider: autogen_ext.models.openai.AzureOpenAIChatCompletionClient
  27. # config:
  28. # model: gpt-4o
  29. # azure_endpoint: https://{your-custom-endpoint}.openai.azure.com/
  30. # azure_deployment: {your-azure-deployment}
  31. # api_version: {your-api-version}
  32. # azure_ad_token_provider:
  33. # provider: autogen_ext.auth.azure.AzureTokenProvider
  34. # config:
  35. # provider_kind: DefaultAzureCredential
  36. # scopes:
  37. # - https://cognitiveservices.azure.com/.default