-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwrangler.toml
37 lines (31 loc) · 938 Bytes
/
wrangler.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
name = "text-to-coda"
main = "src/index.js"
compatibility_date = "2022-06-22"
node_compat = true
[vars]
CLOUDFLARE_ACCOUNT_ID = "25f5a92f890aa03cb9b24a887d76ef7e"
AI_GATEWAY_ID = "openai-gateway"
DOC_ID = "sjaB3PxyeS"
# Table IDs
TASK_TABLE_ID = "grid-3l8w7D_AVl"
TYPES_TABLE_ID = "grid-57eD53TLPI"
STATUS_TABLE_ID = "grid-jNfiLW1qmf"
SUB_CATEGORIES_TABLE_ID = "grid-iKGqZreh-U"
# Column IDs
TASK_NAME_COLUMN_ID = "c-70z9tdOF3c"
TASK_STATUS_COLUMN_ID = "c-84_fOWBZLB"
SUB_CATEGORY_COLUMN_ID = "c-cjbFAIHJPU"
PREDICTED_DURATION_COLUMN_ID = "c-L4lltHxi-h"
STATUS_ORDER_COLUMN_ID = "c-8GSqS1pH-a"
DUE_DATE_COLUMN_ID = "c-_2-uurwp_b"
# AI Config Params
AI_MODEL_NAME = "gpt-4o-mini"
# The necessary secrets are:
# - CODA_API_KEY
# - OUTBOUND_PHONE
# - TWILIO_AUTH_TOKEN
# - OPENAI_API_KEY
# Run `wrangler secret put <NAME>` for each of these
kv_namespaces = [
{ binding = "text_to_coda", id = "434769b48eae45cf8d0afa45735e49e9" }
]