-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
36 lines (29 loc) · 976 Bytes
/
.env.example
File metadata and controls
36 lines (29 loc) · 976 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
27
28
29
30
31
32
33
34
35
36
OPENAI_API_KEY=
ORG_ID=
AGENT_MAX_ITERATIONS=15
DH_ENGINE_TIMEOUT=150
SQL_EXECUTION_TIMEOUT=3
UPPER_LIMIT_QUERY_RETURN_ROWS=50
# Generate with: python -c "from cryptography.fernet import Fernet; print(Fernet.generate_key().decode())"
ENCRYPT_KEY=
EXAMPLE_SQL_COLLECTION=my-example-records
PINECONE_API_KEY=
PINECONE_ENVIRONMENT=
ASTRA_DB_API_ENDPOINT=
ASTRA_DB_APPLICATION_TOKEN=
# Dependency-injection wiring (importable Python paths)
API_SERVER=app.api.nl_to_sql_api.NLToSQLAPI
NL_TO_SQL_DB=app.databases.mongodb.mongo.MongoDB
VECTOR_STORE=app.databases.vector.chroma.Chroma
CONTEXT_STORE=app.services.context_store.context_store.ContextStoreService
DB_SCANNER=app.services.db_scanner.SqlAlchemyScannerService
MONGODB_URI=mongodb://admin:admin@mongodb:27017
MONGODB_DB_NAME=nltosql
MONGODB_DB_USERNAME=admin
MONGODB_DB_PASSWORD=admin
S3_AWS_ACCESS_KEY_ID=
S3_AWS_SECRET_ACCESS_KEY=
ONLY_STORE_CSV_FILES_LOCALLY=True
MINIO_ROOT_USER=
MINIO_ROOT_PASSWORD=
CORE_PORT=80