mirror of
https://github.com/FoundationAgents/MetaGPT.git
synced 2026-04-25 08:46:48 +02:00
63 lines
No EOL
1.9 KiB
YAML
63 lines
No EOL
1.9 KiB
YAML
# DO NOT MODIFY THIS FILE, create a new key.yaml, define OPENAI_API_KEY.
|
|
# The configuration of key.yaml has a higher priority and will not enter git
|
|
|
|
#### if OpenAI
|
|
|
|
#OPENAI_API_KEY: "YOUR_API_KEY"
|
|
#OPENAI_API_BASE: "YOUR_API_BASE"
|
|
#OPENAI_PROXY: "http://127.0.0.1:8118"
|
|
OPENAI_API_MODEL: "gpt-4"
|
|
MAX_TOKENS: 1500
|
|
RPM: 10
|
|
|
|
#### if Anthropic
|
|
#Anthropic_API_KEY: "YOUR_API_KEY"
|
|
|
|
#### if AZURE, check https://github.com/openai/openai-cookbook/blob/main/examples/azure/chat.ipynb
|
|
|
|
#OPENAI_API_TYPE: "azure"
|
|
#OPENAI_API_BASE: "YOUR_AZURE_ENDPOINT"
|
|
#OPENAI_API_KEY: "YOUR_AZURE_API_KEY"
|
|
#OPENAI_API_VERSION: "YOUR_AZURE_API_VERSION"
|
|
#DEPLOYMENT_ID: "YOUR_DEPLOYMENT_ID"
|
|
|
|
#### for Search
|
|
|
|
## Visit https://serpapi.com/ to get key.
|
|
#SERPAPI_API_KEY: "YOUR_API_KEY"
|
|
## Visit https://console.cloud.google.com/apis/credentials to get key.
|
|
#GOOGLE_API_KEY: "YOUR_API_KEY"
|
|
## Visit https://programmablesearchengine.google.com/controlpanel/create to get id.
|
|
#GOOGLE_CSE_ID: "YOUR_CSE_ID"
|
|
## Visit https://serper.dev/ to get key.
|
|
#SERPER_API_KEY: "YOUR_API_KEY"
|
|
|
|
#### for web access
|
|
|
|
## Supported values: playwright/selenium
|
|
#WEB_BROWSER_ENGINE: playwright
|
|
|
|
## Supported values: chromium/firefox/webkit, visit https://playwright.dev/python/docs/api/class-browsertype
|
|
##PLAYWRIGHT_BROWSER_TYPE: chromium
|
|
|
|
## Supported values: chrome/firefox/edge/ie, visit https://www.selenium.dev/documentation/webdriver/browsers/
|
|
# SELENIUM_BROWSER_TYPE: chrome
|
|
|
|
#### for TTS
|
|
|
|
#AZURE_TTS_SUBSCRIPTION_KEY: "YOUR_API_KEY"
|
|
#AZURE_TTS_REGION: "eastus"
|
|
|
|
#### for Stable Diffusion
|
|
## Use SD service, based on https://github.com/AUTOMATIC1111/stable-diffusion-webui
|
|
SD_URL: "YOUR_SD_URL"
|
|
SD_T2I_API: "/sdapi/v1/txt2img"
|
|
|
|
#### for Execution
|
|
#LONG_TERM_MEMORY: false
|
|
|
|
#### for Mermaid CLI
|
|
# adds support for installing mmdc (Mermaid CLI) locally on the user's machine.
|
|
# PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true npm install @mermaid-js/mermaid-cli
|
|
#PUPPETEER_CONFIG: "./puppeteer-config.json"
|
|
#MMDC: "./node_modules/.bin/mmdc" |