-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwrangler.jsonc
More file actions
38 lines (38 loc) · 796 Bytes
/
Copy pathwrangler.jsonc
File metadata and controls
38 lines (38 loc) · 796 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
{
"$schema": "node_modules/wrangler/config-schema.json",
"name": "path-finder",
"main": "src/worker.ts",
"compatibility_date": "2026-05-17",
"assets": {
"directory": "./dist",
"binding": "ASSETS",
"not_found_handling": "single-page-application"
},
"vectorize": [
{
"binding": "VECTORIZE",
"index_name": "path-finder-sample-embeddings"
},
{
"binding": "VECTORIZE_DINOV2",
"index_name": "path-finder-dinov2-small"
},
{
"binding": "VECTORIZE_MOBILECLIP2",
"index_name": "path-finder-mobileclip2-s0"
}
],
"r2_buckets": [
{
"binding": "MODEL_BUCKET",
"bucket_name": "path-finder-models"
}
],
"d1_databases": [
{
"binding": "DB",
"database_name": "path-finder-metadata",
"database_id": "fa1db0d9-34de-4b10-a04b-9461bac3d8c9"
}
]
}