-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathapp.toml
64 lines (54 loc) · 1.28 KB
/
app.toml
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
63
64
[App]
Name = "ai.h2o.wave.sql-sidekick"
Title = "SQL-Sidekick"
Description = "QnA with tabular data using NLQ"
LongDescription = "about.md"
InstanceLifecycle = "MANAGED"
Tags = ["DATA_SCIENCE", "MACHINE_LEARNING", "NLP", "GENERATIVE_AI"]
Version = "0.2.4"
[Runtime]
MemoryLimit = "64Gi"
MemoryReservation = "64Gi"
module = "start"
VolumeMount = "/meta_data"
VolumeSize = "100Gi"
ResourceVolumeSize = "64Gi"
GPUCount = 2
RuntimeVersion = "ub2004_cuda114_cudnn8_py38_wlatest_a10g"
RoutingMode = "BASE_URL"
EnableOIDC = true
[[Env]]
Name = "H2O_WAVE_MAX_REQUEST_SIZE"
Value = "20M"
[[Env]]
Name = "HEAP_ID"
Secret = "heap-analytics"
SecretKey = "id"
[[Env]]
Name = "OPENAI_API_KEY"
Secret = "h2o-internal-keys"
SecretKey = "open_ai_key"
[[Env]]
Name = "H2OGPT_URL"
Secret = "h2ogpt-sql-oss-sqlsidekick"
SecretKey = "h2ogpt-url"
[[Env]]
Name = "H2OGPT_API_TOKEN"
Secret = "h2ogpt-sql-oss-sqlsidekick"
SecretKey = "h2ogpt-key"
[[Env]]
Name = "H2OGPTE_URL"
Secret = "h2ogpte-sqlsidekick"
SecretKey = "h2ogpte-url"
[[Env]]
Name = "H2OGPTE_API_TOKEN"
Secret = "h2ogpte-sqlsidekick"
SecretKey = "h2ogpte-key"
[[Env]]
Name = "H2OGPT_BASE_URL"
Secret = "h2ogpt-base-sqlsidekick"
SecretKey = "h2ogpt-base-url"
[[Env]]
Name = "H2OGPT_BASE_API_TOKEN"
Secret = "h2ogpt-base-sqlsidekick"
SecretKey = "h2ogpt-sql-key"