-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwrangler.toml
More file actions
43 lines (34 loc) · 965 Bytes
/
Copy pathwrangler.toml
File metadata and controls
43 lines (34 loc) · 965 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
43
#:schema node_modules/wrangler/config-schema.json
name = "study-dojo"
main = "src/worker/index.ts"
compatibility_date = "2026-03-10"
compatibility_flags = ["nodejs_compat"]
[[d1_databases]]
binding = "DB"
database_name = "ai-playground-db"
database_id = "a4e119fc-1852-4e94-841a-fa58246fd817"
[[vectorize]]
binding = "VECTORIZE"
index_name = "knowledge-index"
[[r2_buckets]]
binding = "R2"
bucket_name = "ai-playground-papers"
[placement]
mode = "smart"
[assets]
directory = "./dist"
binding = "ASSETS"
not_found_handling = "single-page-application"
[triggers]
crons = ["*/10 * * * *"]
[observability]
enabled = true
head_sampling_rate = 1
[vars]
LLM_BASE_URL = "https://openrouter.ai/api/v1"
LLM_MODEL = "xiaomi/mimo-v2-pro"
DIALOGUE_BASE_URL = "https://openrouter.ai/api/v1"
DIALOGUE_MODEL = "google/gemma-4-26b-a4b-it"
EMBEDDING_BASE_URL = "https://openrouter.ai/api/v1"
EMBEDDING_MODEL = "qwen/qwen3-embedding-4b"
RERANK_MODEL = "cohere/rerank-4-fast"