-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlod_config.example.yml
More file actions
26 lines (25 loc) · 879 Bytes
/
lod_config.example.yml
File metadata and controls
26 lines (25 loc) · 879 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
app:
stopIfInvalidatedDocument: false
maxExecutorsThreads: 16
maxETLProcessors: 3
validateLLMResultsWithLLM: true
llmType: "GENERIC"
llmConfig:
genericAi:
apiKey: "test"
customUrl: "http://localhost:8000/v1"
modelName: "dolphin-2.9"
# llmType: "OPENAI"
# llmConfig:
# openai:
# apiKey: "your-api-key"
# customUrl: "https://api.openai.com/v1"
# modelName: "GPT_4O"
database:
host: "localhost" # -> Defines the host to be used in the database connection (URL or IP)
port: 3306 # -> Defines the port to be used
user: "root" # -> Defines the user to be used
password: "" # -> Defines the password to be used
databaseName: "db" # -> Defines the database name to be used
databaseType: "MYSQL" # MYSQL, POSTGRESQL -> Defines the database type to be used
truncateTableBeforeInsert: true