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.

OAI_CONFIG_LIST_sample 660 B

123456789101112131415161718192021
  1. // Please modify the content, remove this comment and rename this file to OAI_CONFIG_LIST to run the sample code.
  2. [
  3. {
  4. "model": "gpt-4",
  5. "api_key": "<your OpenAI API key here>"
  6. },
  7. {
  8. "model": "gpt-4",
  9. "api_key": "<your Azure OpenAI API key here>",
  10. "api_base": "<your Azure OpenAI API base here>",
  11. "api_type": "azure",
  12. "api_version": "2023-07-01-preview"
  13. },
  14. {
  15. "model": "gpt-3.5-turbo",
  16. "api_key": "<your Azure OpenAI API key here>",
  17. "api_base": "<your Azure OpenAI API base here>",
  18. "api_type": "azure",
  19. "api_version": "2023-07-01-preview"
  20. }
  21. ]