forked from WaitThatShouldntWork/Infer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env.example
40 lines (32 loc) · 1.24 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
# 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
# backend LLM properties
MODEL=mistral-small-latest
MISTRAL_KEY=my-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
# Azure
AZURE_STORAGE_CONNECTION_STRING="my-connection-string"
AZURE_STORAGE_CONTAINER_NAME=my-container-name
AZURE_INITIAL_DATA_FILENAME=test-data.json
# llm config
ANSWER_AGENT_LLM="mistral"
INTENT_AGENT_LLM="mistral"
VALIDATOR_AGENT_LLM="mistral"
DATASTORE_AGENT_LLM="mistral"
MATHS_AGENT_LLM="mistral"
ROUTER_LLM="mistral"