Skip to content

Commit e2da93a

Browse files
committed
chore: CI fixes
1 parent b3a09cc commit e2da93a

File tree

6 files changed

+8
-4
lines changed

6 files changed

+8
-4
lines changed

apps/sandbox-container/server/context.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ export interface Env {
88
MCP_SERVER_NAME: string
99
MCP_SERVER_VERSION: string
1010
OPENAI_API_KEY: string
11+
ANTHROPIC_KEY: string
1112
MCP_OBJECT: DurableObjectNamespace<ContainerMcpAgent>
1213
CONTAINER_MANAGER: DurableObjectNamespace<ContainerManager>
1314
USER_CONTAINER: DurableObjectNamespace<UserContainer>

apps/sandbox-container/types.d.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
declare module 'cloudflare:test' {
22
interface ProvidedEnv {
3-
OPENAI_API_KEY: 'TODO'
3+
OPENAI_API_KEY: 'TODO',
4+
ANTHROPIC_KEY: 'TODO',
45
AI: Ai
56
}
67
}

apps/workers-bindings/src/context.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,6 @@ export interface Env {
1616
DEV_CLOUDFLARE_EMAIL: string
1717
CLOUDFLARE_API_TOKEN: string
1818
OPENAI_API_KEY: string
19+
ANTHROPIC_KEY: string
1920
AI: Ai
2021
}

packages/eval-tools/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"bin": "bin"
1212
},
1313
"dependencies": {
14-
"@ai-sdk/anthropic": "^1.2.11",
14+
"@ai-sdk/anthropic": "1.2.11",
1515
"@ai-sdk/openai": "1.3.20",
1616
"@cloudflare/vitest-pool-workers": "0.8.14",
1717
"agents": "0.0.67",

packages/eval-tools/wrangler.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
"name": "stub-worker",
33
"compatibility_date": "2025-04-14",
44
"vars": {
5-
"OPENAI_API_KEY": "TODO"
5+
"OPENAI_API_KEY": "TODO",
6+
"ANTHROPIC_KEY": "TODO"
67
},
78
"ai": {
89
"binding": "AI"

pnpm-lock.yaml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)