-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy path.env.example
66 lines (47 loc) · 1.52 KB
/
.env.example
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
OPENAI_API_KEY=your_openai_api_key_here
USER_USERNAME=Username
USER_PASSWORD=Password
GOOGLE_API_KEY=your_google_ai_key_here
MISTRAL_API_KEY=your_mistral_ai_key_here
CLAUDE_API_KEY=your_anthropic_ai_key_here
QROQ_API_KEY=your_qroq_ai_key_here
OPENROUTER_API_KEY=your_openrouter_ai_key_here
CODESTRAL_API_KEY=your_codestral_ai_key_here
###
# Uncomment (remove the '#') from the following lines
# to customize the below specified settings!
###
# Set a Default Model
# DEFAULT_MODEL=your_preferred_model
### EXAMPLE:
#DEFAULT_MODEL=claude-3-5-sonnet-latest
DEFAULT_MODEL='gpt-4o'
# If you'd like to reuse an existing assistant or thread:
###
# ASSISTANT_ID=your_assistant_id_here
# THREAD_ID=your_thread_id_here
###
# Please uncomment TEMPERATURE and
# Set the value if you'd like to
# Customize model temperature
# TEMPERATURE=number_value_here
# Example:
#TEMPERATURE=1
###
# Settings for server &
# client configuration:
PORT_SERVER=3000
HOST_SERVER='0.0.0.0'
PORT_CLIENT=3000
HOST_CLIENT=localhost
###
# Remember to either rename this file to `.env`
# or create a new `.env` file with these variables.
# An OpenAI Key is required for GPT; if unchanged,
# you can sign in with "Username" and "Password".
# The port will default to 3000 for `http://localhost:3000/portal`.
# Feel free to change the port if it's busy!
# You can specify your IP via the HOST var.
# The Google API Key is only required if using Gemini.
# The Gemini models will simply fail to respond if left blank.
# The same applies for the Mistral and Claude APIs.