-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.env.example
More file actions
26 lines (21 loc) · 1003 Bytes
/
Copy path.env.example
File metadata and controls
26 lines (21 loc) · 1003 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# this gateway HTTP PORT
GATEWAY_PORT=9100
# This gateway must have its own API key that clients must use to access it
# Use it in http header as "Authorization: Bearer <ThisGatewayApiKey>)""
GATEWAY_API_KEY=<ThisGatewayApiKey>
# Maximum number of log files to keep (older files will be deleted)
LOG_FILE_LIMIT=15
# Enable/disable logging of chat messages to the /logs folder (true/false). Useful to debug
LOG_CHAT_ENABLED=true
# The default fallback provider to use when the model received is not recognized
# by this gateway in the fallback rules.
FALLBACK_PROVIDER=openrouter
# The keys of your providers. It can be here (recomended) or in the providers.json file
# Fill the ones you want to use or add more if you like
APIKEY_OPENROUTER=<your_openrouter_api_key>
APIKEY_REQUESTY=<your_requesty_api_key>
APIKEY_OPENAI=<your_openai_api_key>
APIKEY_NEBIUS=<your_nebius_api_key>
APIKEY_TOGETHER=<your_together_api_key>
APIKEY_KLUSTERAI=<your_klusterai_api_key>
APIKEY_GOOGLE=<your_google_api_key>