Skip to content

Commit b200fb5

Browse files
committed
fix package naming
1 parent 0d549a5 commit b200fb5

File tree

13 files changed

+14
-10
lines changed

13 files changed

+14
-10
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,7 +9,7 @@ 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'
12+
import { MetricsTracker } from '../../../packages/mcp-observability/src'
1313

1414
import { registerLogsTools } from './tools/logs'
1515

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +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'
5+
import { AuthUser } from '../../mcp-observability/src'
66

77
import { getAuthorizationURL, getAuthToken, refreshAuthToken } from './cloudflare-auth'
88
import { McpError } from './mcp-error'
@@ -13,7 +13,7 @@ import type {
1313
TokenExchangeCallbackResult,
1414
} from '@cloudflare/workers-oauth-provider'
1515
import type { Context } from 'hono'
16-
import type { MetricsTracker } from '@repo/mcp-observability'
16+
import type { MetricsTracker } from '../../mcp-observability/src'
1717

1818
type AuthContext = {
1919
Bindings: {

packages/mcp-common/src/server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +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'
6+
import { MetricsTracker, SessionStart, ToolCall } from '../../mcp-observability/src'
77

88
import { McpError } from './mcp-error'
99

File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)