Skip to content

Commit 5846a35

Browse files
committed
fix package naming
1 parent 0d549a5 commit 5846a35

File tree

13 files changed

+14
-12
lines changed

13 files changed

+14
-12
lines changed

apps/sandbox-container/evals/exec.eval.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,5 +52,6 @@ eachModel('$modelName', ({ model }) => {
5252
},
5353
scorers: [checkFactuality],
5454
threshold: 1,
55+
timeout: 60000,
5556
})
5657
})

apps/sandbox-container/evals/files.eval.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ eachModel('$modelName', ({ model }) => {
5151
},
5252
scorers: [checkFactuality],
5353
threshold: 1,
54+
timeout: 60000,
5455
})
5556

5657
describeEval('Runs container file delete', {
@@ -102,5 +103,6 @@ eachModel('$modelName', ({ model }) => {
102103
},
103104
scorers: [checkFactuality],
104105
threshold: 1,
106+
timeout: 60000,
105107
})
106108
})

apps/sandbox-container/evals/initialize.eval.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,6 @@ eachModel('$modelName', ({ model }) => {
2121
},
2222
scorers: [checkFactuality],
2323
threshold: 1,
24+
timeout: 60000,
2425
})
2526
})

apps/workers-observability/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ import {
99
import { CloudflareMCPServer } from '@repo/mcp-common/src/server'
1010
import { registerAccountTools } from '@repo/mcp-common/src/tools/account'
1111
import { registerWorkersTools } from '@repo/mcp-common/src/tools/worker'
12-
import { MetricsTracker } from '@repo/mcp-observability'
1312

13+
import { MetricsTracker } from '../../../packages/mcp-observability/src'
1414
import { registerLogsTools } from './tools/logs'
1515

1616
import type { AccountSchema, UserSchema } from '@repo/mcp-common/src/cloudflare-oauth-handler'

packages/mcp-common/src/cloudflare-oauth-handler.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@ import { zValidator } from '@hono/zod-validator'
22
import { Hono } from 'hono'
33
import { z } from 'zod'
44

5-
import { AuthUser } from '@repo/mcp-observability'
6-
5+
import { AuthUser } from '../../mcp-observability/src'
76
import { getAuthorizationURL, getAuthToken, refreshAuthToken } from './cloudflare-auth'
87
import { McpError } from './mcp-error'
98

@@ -13,7 +12,7 @@ import type {
1312
TokenExchangeCallbackResult,
1413
} from '@cloudflare/workers-oauth-provider'
1514
import type { Context } from 'hono'
16-
import type { MetricsTracker } from '@repo/mcp-observability'
15+
import type { MetricsTracker } from '../../mcp-observability/src'
1716

1817
type AuthContext = {
1918
Bindings: {

packages/mcp-common/src/server.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@ import { type ServerOptions } from '@modelcontextprotocol/sdk/server/index.js'
33
import { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js'
44
import { type ZodRawShape } from 'zod'
55

6-
import { MetricsTracker, SessionStart, ToolCall } from '@repo/mcp-observability'
7-
6+
import { MetricsTracker, SessionStart, ToolCall } from '../../mcp-observability/src'
87
import { McpError } from './mcp-error'
98

109
import type { ToolCallback } from '@modelcontextprotocol/sdk/server/mcp.js'
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)