forked from ScottLogic/InferLLM
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.env.example
62 lines (50 loc) · 1.71 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
# neo4j authentication
NEO4J_USERNAME=neo4j
NEO4J_PASSWORD=change-me!
# neo4j graph database URI used by the backend to connect to neo4j
# use "bolt://localhost" when the backend and neo4j are both running locally outside Docker
# use "bolt://host.docker.internal" when the backend is running within Docker but neo4j is running locally (outside Docker)
# URI will be set to the neo4j container's host if using Docker Compose
NEO4J_URI=bolt://localhost:7687
# port configuration is optional
# used with Docker Compose to expose neo4j on non-default ports
NEO4J_HTTP_PORT=7474
NEO4J_BOLT_PORT=7687
# files location
FILES_DIRECTORY=files
# redis cache configuration
REDIS_HOST="localhost"
# backend LLM properties
MISTRAL_KEY=my-api-key
# OpenAI LLM properties
OPENAI_KEY=my-openai-api-key
# frontend host - used to configure backend CORS
FRONTEND_URL=http://localhost:8650
# what backend URL should be used by frontend API requests
BACKEND_URL=http://localhost:8250
# websockets url to conect to backend websocket endpoint
WS_URL=ws://localhost:8250/ws
# llm
ANSWER_AGENT_LLM="mistral"
INTENT_AGENT_LLM="openai"
REPORT_AGENT_LLM="openai"
MATERIALITY_AGENT_LLM="openai"
VALIDATOR_AGENT_LLM="openai"
DATASTORE_AGENT_LLM="openai"
WEB_AGENT_LLM="openai"
CHART_GENERATOR_LLM="openai"
ROUTER_LLM="openai"
SUGGESTIONS_LLM="openai"
DYNAMIC_KNOWLEDGE_GRAPH_LLM="openai"
# model
ANSWER_AGENT_MODEL="mistral-large-latest"
INTENT_AGENT_MODEL="gpt-4o-mini"
REPORT_AGENT_MODEL="gpt-4o"
MATERIALITY_AGENT_MODEL="gpt-4o"
VALIDATOR_AGENT_MODEL="gpt-4o-mini"
DATASTORE_AGENT_MODEL="gpt-4o-mini"
WEB_AGENT_MODEL="gpt-4o-mini"
CHART_GENERATOR_MODEL="gpt-4o-mini"
ROUTER_MODEL="gpt-4o-mini"
SUGGESTIONS_MODEL="gpt-4o-mini"
DYNAMIC_KNOWLEDGE_GRAPH_MODEL="gpt-4o"