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.

ENV.yaml 971 B

123456789101112131415161718192021222324252627282930
  1. # ENV.yaml
  2. #
  3. # This file specifies environment variables to be passed to the Docker task
  4. # instances or virtual environments. These values are ephemeral, and are
  5. # discarded when the task concludes. This is useful for passing API keys, etc.
  6. # since they will not be saved in logs or to any task output.
  7. #
  8. # String values can reference environment variable on the host machine.
  9. # For example:
  10. #
  11. # OPENAI_API_KEY: ${OPENAI_API_KEY}
  12. #
  13. # Will copy the host's OPENAI_API_KEY environment variable to the corresponding
  14. # variable in the task environment.
  15. #
  16. # Complex values will be converte to JSON, and then passed as a string to the
  17. # task environment. For example:
  18. #
  19. # MODEL_CONFIG:
  20. # provider: autogen_ext.models.openai.OpenAIChatCompletionClient
  21. # config:
  22. # model: gpt-4o
  23. #
  24. # Will be converted to:
  25. #
  26. # MODEL_CONFIG: >-
  27. # {"provider": "autogen_ext.models.openai.OpenAIChatCompletionClient", "config": {"model": "gpt-4o"}}
  28. #
  29. OPENAI_API_KEY: ${OPENAI_API_KEY}