diff --git a/.dev.vars.example b/.dev.vars.example index c72178a..5b703aa 100644 --- a/.dev.vars.example +++ b/.dev.vars.example @@ -1,8 +1,5 @@ OPENAI_API_KEY="OPENAI API KEY" -SESSION_STORE=cloudflare-kv -SESSION_STORE_NAMESPACE=Session - #auth0 AUTH0_DOMAIN="YOUR-ACCOUNT.us.auth0.com" diff --git a/worker-configuration.d.ts b/worker-configuration.d.ts index aa14e46..9d45d8c 100644 --- a/worker-configuration.d.ts +++ b/worker-configuration.d.ts @@ -10,8 +10,6 @@ declare namespace Cloudflare { ChatList: KVNamespace; Session: KVNamespace; OPENAI_API_KEY: string; - SESSION_STORE: string; - SESSION_STORE_NAMESPACE: string; AUTH0_DOMAIN: string; AUTH0_CLIENT_ID: string; AUTH0_CLIENT_SECRET: string; @@ -27,7 +25,7 @@ type StringifyValues> = { [Binding in keyof EnvType]: EnvType[Binding] extends string ? EnvType[Binding] : string; }; declare namespace NodeJS { - interface ProcessEnv extends StringifyValues> {} + interface ProcessEnv extends StringifyValues> {} } // Begin runtime types