-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsecrets.toml.example
More file actions
42 lines (35 loc) · 999 Bytes
/
secrets.toml.example
File metadata and controls
42 lines (35 loc) · 999 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
37
38
39
40
41
42
#
# LLM Configuration
#
# Current implementation uses OpenRouter as LLM api gateway
# Use the OpenRouter model's syntax to select the desired LLM model to use
LLM_MODEL = "anthropic/claude-3.5-sonnet"
# OpenRouter API key
LLM_API_KEY = "YOUR_API_KEY"
# The temperature effects the quality of the generated query
# Use temperature 0 to constrain the LLM query generation
LLM_TEMPERATURE=0
#
# InfluxDB Configuration
#
INFLUXDB_URL = "http://localhost:8086"
INFLUXDB_TOKEN = "INFLUX_API_KEY"
INFLUXDB_ORG = "BIMIoT"
INFLUXDB_DATASET_SOURCE = "dataset/OSH_Measurements"
#
# GraphDB Configuration
#
GRAPHDB_URL="http://localhost:7200/repositories/smartHome"
#
# Neo4j Database Configuration
#
NEO4J_URI = "bolt://localhost:7687"
NEO4J_USERNAME = "neo4j user"
NEO4J_PASSWORD = "neo4j user's password"
#
TTL_FILE_PATH = "dataset/openSmartHome_Donkers.ttl"
# Here you can specify which database backend you want to use.
# Possible values are:
# graphdb (default)
# neo4j
BACKEND_TYPE = "graphdb"