Skip to content

Commit 6bffc05

Browse files
committed
chore(release): version packages
1 parent 6aec108 commit 6bffc05

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

examples/dependent-agent/worker-configuration.d.ts

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
/* eslint-disable */
2-
// Generated by Wrangler by running `wrangler types` (hash: 8c164cda8a902beb1409736cd08ba1ac)
2+
// Generated by Wrangler by running `wrangler types` (hash: 09a3a2ff44392b0c191d5bb00ea2f8e3)
33
// Runtime types generated with workerd@1.20250823.0 2025-06-01 nodejs_compat
44
declare namespace Cloudflare {
55
interface Env {
6-
AI_PROVIDER_API_KEY: string;
7-
MODEL_ID: string;
8-
AI_PROVIDER: string;
6+
AI_PROVIDER: "anthropic";
97
AGENT: DurableObjectNamespace<import("./src/index").DependentAgent>;
108
MCP_SERVICE: Fetcher /* mcp */;
119
}
@@ -15,7 +13,7 @@ type StringifyValues<EnvType extends Record<string, unknown>> = {
1513
[Binding in keyof EnvType]: EnvType[Binding] extends string ? EnvType[Binding] : string;
1614
};
1715
declare namespace NodeJS {
18-
interface ProcessEnv extends StringifyValues<Pick<Cloudflare.Env, "AI_PROVIDER_API_KEY" | "MODEL_ID" | "AI_PROVIDER">> {}
16+
interface ProcessEnv extends StringifyValues<Pick<Cloudflare.Env, "AI_PROVIDER">> {}
1917
}
2018

2119
// Begin runtime types

0 commit comments

Comments
 (0)