wip: gateway

This commit is contained in:
Frank
2025-08-04 21:08:28 -04:00
parent 2970ba6416
commit 40036abb9d
10 changed files with 616 additions and 8 deletions

20
sst-env.d.ts vendored
View File

@@ -5,6 +5,10 @@
declare module "sst" {
export interface Resource {
"ANTHROPIC_API_KEY": {
"type": "sst.sst.Secret"
"value": string
}
"Api": {
"type": "sst.cloudflare.Worker"
"url": string
@@ -20,10 +24,26 @@ declare module "sst" {
"type": "sst.sst.Secret"
"value": string
}
"GatewayApi": {
"type": "sst.cloudflare.Worker"
"url": string
}
"OPENAI_API_KEY": {
"type": "sst.sst.Secret"
"value": string
}
"OPENCODE_API_KEY": {
"type": "sst.sst.Secret"
"value": string
}
"Web": {
"type": "sst.cloudflare.Astro"
"url": string
}
"ZHIPU_API_KEY": {
"type": "sst.sst.Secret"
"value": string
}
}
}
/// <reference path="sst-env.d.ts" />