mirror of
https://github.com/microsoft/autogen.git
synced 2025-07-19 06:53:17 +00:00

* fix bug for windows * fix bug for windows * more clear example * link to example * add test * format * comment * fix assertion error * fix test error and links --------- Co-authored-by: Chi Wang (MSR) <chiw@microsoft.com>
22 lines
660 B
Plaintext
22 lines
660 B
Plaintext
// Please modify the content, remove this comment and rename this file to OAI_CONFIG_LIST to run the sample code.
|
|
[
|
|
{
|
|
"model": "gpt-4",
|
|
"api_key": "<your OpenAI API key here>"
|
|
},
|
|
{
|
|
"model": "gpt-4",
|
|
"api_key": "<your Azure OpenAI API key here>",
|
|
"api_base": "<your Azure OpenAI API base here>",
|
|
"api_type": "azure",
|
|
"api_version": "2023-07-01-preview"
|
|
},
|
|
{
|
|
"model": "gpt-3.5-turbo",
|
|
"api_key": "<your Azure OpenAI API key here>",
|
|
"api_base": "<your Azure OpenAI API base here>",
|
|
"api_type": "azure",
|
|
"api_version": "2023-07-01-preview"
|
|
}
|
|
]
|