@dalmia/calibrate-mcp 0.0.15 → 0.0.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (34) hide show
  1. package/bin/mcp-server.js +11 -14
  2. package/bin/mcp-server.js.map +10 -10
  3. package/esm/landing-page.js +1 -1
  4. package/esm/lib/config.d.ts +2 -2
  5. package/esm/lib/config.js +2 -2
  6. package/esm/mcp-server/mcp-server.js +1 -1
  7. package/esm/mcp-server/server.js +1 -1
  8. package/esm/models/annotationitempayload.js +1 -1
  9. package/esm/models/annotationitempayload.js.map +1 -1
  10. package/esm/models/annotationtaskcreate.d.ts +0 -4
  11. package/esm/models/annotationtaskcreate.d.ts.map +1 -1
  12. package/esm/models/annotationtaskcreate.js +2 -5
  13. package/esm/models/annotationtaskcreate.js.map +1 -1
  14. package/esm/models/annotationtaskresponse.d.ts +0 -4
  15. package/esm/models/annotationtaskresponse.d.ts.map +1 -1
  16. package/esm/models/annotationtaskresponse.js +2 -5
  17. package/esm/models/annotationtaskresponse.js.map +1 -1
  18. package/esm/models/evaluatorcreate.d.ts +1 -1
  19. package/esm/models/evaluatordetailresponse.d.ts +1 -1
  20. package/esm/models/listevaluatorsevaluatorsgetop.d.ts +1 -1
  21. package/esm/models/routersevaluatorsevaluatorresponse.d.ts +1 -1
  22. package/esm/models/tasksummaryresponse.d.ts +0 -2
  23. package/esm/models/tasksummaryresponse.d.ts.map +1 -1
  24. package/esm/models/tasksummaryresponse.js +0 -2
  25. package/esm/models/tasksummaryresponse.js.map +1 -1
  26. package/package.json +1 -1
  27. package/src/landing-page.ts +1 -1
  28. package/src/lib/config.ts +2 -2
  29. package/src/mcp-server/mcp-server.ts +1 -1
  30. package/src/mcp-server/server.ts +1 -1
  31. package/src/models/annotationitempayload.ts +1 -1
  32. package/src/models/annotationtaskcreate.ts +2 -6
  33. package/src/models/annotationtaskresponse.ts +2 -6
  34. package/src/models/tasksummaryresponse.ts +0 -2
package/bin/mcp-server.js CHANGED
@@ -51392,9 +51392,9 @@ var init_config = __esm(() => {
51392
51392
  SDK_METADATA = {
51393
51393
  language: "typescript",
51394
51394
  openapiDocVersion: "0.1.0",
51395
- sdkVersion: "0.0.15",
51395
+ sdkVersion: "0.0.16",
51396
51396
  genVersion: "2.915.1",
51397
- userAgent: "speakeasy-sdk/mcp-typescript 0.0.15 2.915.1 0.1.0 @dalmia/calibrate-mcp"
51397
+ userAgent: "speakeasy-sdk/mcp-typescript 0.0.16 2.915.1 0.1.0 @dalmia/calibrate-mcp"
51398
51398
  };
51399
51399
  });
51400
51400
 
@@ -55202,7 +55202,7 @@ var init_annotationitempayload = __esm(() => {
55202
55202
  init_zod();
55203
55203
  AnnotationItemPayload$zodSchema = object({
55204
55204
  annotations: record(string2(), any()).nullable().optional().describe("Human annotations to seed, keyed by evaluator ID. Each evaluator ID must be linked to the task. Put the judgement in `value`, a bool for binary or a number for rating, with optional `reasoning`. Requires `annotator_id`"),
55205
- payload: any().optional().describe("The item's payload. Its shape depends on the task `type`. `payload['name']` is **required** for every type and must be unique within the task")
55205
+ payload: any().optional().describe("The item's payload. `name` is required and unique within the task for every type. The other fields depend on the task `type`:\n\n- `stt`: `name`, `reference_transcript`, `predicted_transcript`\n- `llm`: `name`, `chat_history` (list of `{role, content}` turns ending at the user turn), `agent_response` (the reply to judge), optional `evaluator_variables`\n- `llm-general`: `name`, `input`, `output`, optional `evaluator_variables`\n- `conversation`: `name`, `transcript` (list of `{role, content}` turns), optional `evaluator_variables`\n\n`evaluator_variables` maps an evaluator ID to that evaluator's `{{\"{{\"}}variable}}` values for this item")
55206
55206
  });
55207
55207
  });
55208
55208
 
@@ -55359,16 +55359,15 @@ var init_annotationtaskcreate = __esm(() => {
55359
55359
  init_zod();
55360
55360
  AnnotationTaskCreateType$zodSchema = _enum([
55361
55361
  "stt",
55362
- "tts",
55363
55362
  "llm",
55364
55363
  "llm-general",
55365
55364
  "conversation"
55366
- ]).describe("Task type. Determines the shape of each item's payload.\n- `stt`: judge a transcript on its own\n- `tts`: judge synthesized speech output\n- `llm`: judge one response with its conversation history\n- `llm-general`: judge a standalone `input -> output` pair\n- `conversation`: judge a full conversation");
55365
+ ]).describe("Task type. Determines the shape of each item's payload.\n- `stt`: judge a transcript on its own\n- `llm`: judge one response with its conversation history\n- `llm-general`: judge a standalone `input -> output` pair\n- `conversation`: judge a full conversation");
55367
55366
  AnnotationTaskCreate$zodSchema = object({
55368
55367
  description: string2().nullable().optional().describe("A description for the task. Omit for none"),
55369
55368
  evaluator_ids: array(string2()).nullable().optional().describe("IDs of evaluators to link when the task is created, in order. Each must be one you created or a built-in default. Omit to create with no linked evaluators"),
55370
55369
  name: string2().describe("Task name, unique within your workspace"),
55371
- type: AnnotationTaskCreateType$zodSchema.describe("Task type. Determines the shape of each item's payload.\n- `stt`: judge a transcript on its own\n- `tts`: judge synthesized speech output\n- `llm`: judge one response with its conversation history\n- `llm-general`: judge a standalone `input -> output` pair\n- `conversation`: judge a full conversation")
55370
+ type: AnnotationTaskCreateType$zodSchema.describe("Task type. Determines the shape of each item's payload.\n- `stt`: judge a transcript on its own\n- `llm`: judge one response with its conversation history\n- `llm-general`: judge a standalone `input -> output` pair\n- `conversation`: judge a full conversation")
55372
55371
  });
55373
55372
  });
55374
55373
 
@@ -55692,11 +55691,10 @@ var init_annotationtaskresponse = __esm(() => {
55692
55691
  init_zod();
55693
55692
  AnnotationTaskResponseType$zodSchema = _enum([
55694
55693
  "stt",
55695
- "tts",
55696
55694
  "llm",
55697
55695
  "llm-general",
55698
55696
  "conversation"
55699
- ]).describe("Task type. Determines the shape of each item's payload.\n- `stt`: judge a transcript on its own\n- `tts`: judge synthesized speech output\n- `llm`: judge one response with its conversation history\n- `llm-general`: judge a standalone `input -> output` pair\n- `conversation`: judge a full conversation");
55697
+ ]).describe("Task type. Determines the shape of each item's payload.\n- `stt`: judge a transcript on its own\n- `llm`: judge one response with its conversation history\n- `llm-general`: judge a standalone `input -> output` pair\n- `conversation`: judge a full conversation");
55700
55698
  AnnotationTaskResponse$zodSchema = object({
55701
55699
  created_at: string2().describe("When the task was created (ISO 8601 UTC)"),
55702
55700
  description: string2().nullable().optional().describe("The task's description"),
@@ -55705,7 +55703,7 @@ var init_annotationtaskresponse = __esm(() => {
55705
55703
  items: array(record(string2(), any())).optional().describe("The task's items, each with its agreement stats. You get these when you fetch one task by ID, not when you list tasks"),
55706
55704
  jobs: array(record(string2(), any())).optional().describe("The task's labelling jobs. You get these when you fetch one task by ID, not when you list tasks"),
55707
55705
  name: string2().describe("Name of the task"),
55708
- type: AnnotationTaskResponseType$zodSchema.describe("Task type. Determines the shape of each item's payload.\n- `stt`: judge a transcript on its own\n- `tts`: judge synthesized speech output\n- `llm`: judge one response with its conversation history\n- `llm-general`: judge a standalone `input -> output` pair\n- `conversation`: judge a full conversation"),
55706
+ type: AnnotationTaskResponseType$zodSchema.describe("Task type. Determines the shape of each item's payload.\n- `stt`: judge a transcript on its own\n- `llm`: judge one response with its conversation history\n- `llm-general`: judge a standalone `input -> output` pair\n- `conversation`: judge a full conversation"),
55709
55707
  updated_at: string2().describe("When the task was last updated (ISO 8601 UTC)"),
55710
55708
  uuid: string2().describe("Unique ID for the task")
55711
55709
  });
@@ -56245,7 +56243,6 @@ var init_tasksummaryresponse = __esm(() => {
56245
56243
  init_paginationmeta();
56246
56244
  TaskType$zodSchema = _enum([
56247
56245
  "stt",
56248
- "tts",
56249
56246
  "llm",
56250
56247
  "llm-general",
56251
56248
  "conversation"
@@ -58459,7 +58456,7 @@ fields to change (name, config). Returns the updated test. Fails with
58459
58456
  function createMCPServer(deps) {
58460
58457
  const server = new McpServer({
58461
58458
  name: "CalibrateMcp",
58462
- version: "0.0.15"
58459
+ version: "0.0.16"
58463
58460
  });
58464
58461
  const getClient = deps.getSDK || (() => new CalibrateMcpCore({
58465
58462
  security: deps.security,
@@ -59665,7 +59662,7 @@ http_headers = { "api-key-auth" = "YOUR_API_KEY_AUTH" }`;
59665
59662
  <h1>Instructions</h1>
59666
59663
  <p>One-click installation for Claude Desktop users</p>
59667
59664
  <div class="instruction-item">
59668
- <a href="https://github.com/dalmia/calibrate-mcp/releases/download/v0.0.15/mcp-server.mcpb" download="mcp-server.mcpb" class="action-button header-action" style="display: inline-flex; margin-bottom: 16px;">
59665
+ <a href="https://github.com/dalmia/calibrate-mcp/releases/download/v0.0.16/mcp-server.mcpb" download="mcp-server.mcpb" class="action-button header-action" style="display: inline-flex; margin-bottom: 16px;">
59669
59666
  \uD83D\uDCE5 Download MCP Bundle
59670
59667
  </a>
59671
59668
  </div>
@@ -62317,7 +62314,7 @@ var routes = buildRouteMap({
62317
62314
  var app = buildApplication(routes, {
62318
62315
  name: "mcp",
62319
62316
  versionInfo: {
62320
- currentVersion: "0.0.15"
62317
+ currentVersion: "0.0.16"
62321
62318
  }
62322
62319
  });
62323
62320
  run(app, process4.argv.slice(2), buildContext(process4));
@@ -62325,5 +62322,5 @@ export {
62325
62322
  app
62326
62323
  };
62327
62324
 
62328
- //# debugId=95D5AEF339D84AE864756E2164756E21
62325
+ //# debugId=2A3531F2223C640064756E2164756E21
62329
62326
  //# sourceMappingURL=mcp-server.js.map