Skip to content
This repository was archived by the owner on May 24, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion checksums.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ b451b0c05cb77f7ad66906f351b560400447de136c1ad2ce27c63fc3bcaf0d9a schemas/v1.0.0
ccb7f20562d2e34dff73a17794aabcf98f25f659e83a790e42cf9a31e97460b3 schemas/v1.0.0/commons/summarize/receipts/summarize.receipt.schema.json
be565b5a72dc03a1517a9c2ea0a0842c86def2e58e8471f81e3cac6262bffb68 schemas/v1.0.0/commons/summarize/requests/summarize.request.schema.json
4760c15bc2985b35be8a333859e0b2e97617735be0d0222722b162de47caf940 schemas/v1.1.0/commons/analyze/analyze.receipt.schema.json
28571a5750590c256b9318ecb1cfb60e39614df82cee0b3b2a921980100e447c schemas/v1.1.0/commons/analyze/analyze.request.schema.json
7f3c2254410e5a552905810a5a4e564af97b82bd7122d92af7d5ca9c43438caa schemas/v1.1.0/commons/analyze/analyze.request.schema.json
6aeb33050633f712dfcaabc8e57ba058275e44653407bb766f0417cb5bfd8c2b schemas/v1.1.0/commons/classify/classify.receipt.schema.json
476253e821ff4e7dfa441e5604c6efc29d12729bcb50e8a02db86fbd121240ab schemas/v1.1.0/commons/classify/classify.request.schema.json
13a2f4d9083e1e5ed6bd6b98e05736e7791bfd62b109b4090ab4abff75572ad5 schemas/v1.1.0/commons/clean/clean.receipt.schema.json
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// VALID analyze.request #1 — aligned with schemas/v1.1.0/commons/analyze/analyze.request.schema.json

export type AnalyzeMode = "classify" | "extract" | "score" | "summarize";
export type AnalyzeMode = "classify" | "extract" | "score" | "synthesize";

export interface AnalyzeRequest {
verb: "analyze";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

import type { AnalyzeRequest, AnalyzeMode } from "./analyze.request.valid.1";

const mode: AnalyzeMode = "score";
const mode: AnalyzeMode = "synthesize";

export const analyzeRequestValid2: AnalyzeRequest = {
"verb": "analyze",
"version": "1.1.0",
"input": "Assess the following roadmap update and score operational risk based on stated blockers and dependencies.",
"mode": "score"
"input": "Compare these incident reports and synthesize the shared failure patterns that matter for remediation planning.",
"mode": "synthesize"
};
3 changes: 2 additions & 1 deletion schemas/v1.1.0/commons/analyze/analyze.request.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,13 @@
"minLength": 1
},
"mode": {
"description": "Optional analysis-native mode selector. Use `summarize` as its own verb when the primary action is summary generation.",
"type": "string",
"enum": [
"classify",
"extract",
"score",
"summarize"
"synthesize"
]
}
},
Expand Down
Loading