@talonic/docs 0.8.2 → 0.10.0
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.
- package/dist/index.d.ts +1 -2059
- package/dist/index.js +766 -383
- package/dist/index.js.map +1 -1
- package/dist/seo.d.ts +1 -2058
- package/dist/seo.js +15663 -382
- package/openapi.json +15605 -0
- package/package.json +5 -3
- package/dist/tailwind-preset.d.cts +0 -45
- package/dist/tailwind-preset.d.ts +0 -45
package/dist/index.js
CHANGED
|
@@ -685,6 +685,14 @@ var NAV_SECTIONS = [
|
|
|
685
685
|
{ id: "webhook-retries", label: "Retry Policy" }
|
|
686
686
|
]
|
|
687
687
|
},
|
|
688
|
+
{
|
|
689
|
+
id: "agent",
|
|
690
|
+
label: "Agent",
|
|
691
|
+
children: [
|
|
692
|
+
{ id: "agent-context", label: "Get Workspace Context" },
|
|
693
|
+
{ id: "agent-tools", label: "List Agent Tools" }
|
|
694
|
+
]
|
|
695
|
+
},
|
|
688
696
|
{
|
|
689
697
|
id: "errors-rate-limits",
|
|
690
698
|
label: "Errors & Rate Limits",
|
|
@@ -3306,6 +3314,673 @@ function verifyWebhook(payload, signature, secret) {
|
|
|
3306
3314
|
] })
|
|
3307
3315
|
] }) }),
|
|
3308
3316
|
/* @__PURE__ */ jsx5("p", { className: "text-[14px] text-void-text-muted leading-relaxed", children: "After 4 failed attempts, the delivery is marked as failed. You can check delivery status and replay events from the dashboard." }),
|
|
3317
|
+
/* @__PURE__ */ jsx5(SectionHeading, { id: "resolutions", children: "Resolutions" }),
|
|
3318
|
+
/* @__PURE__ */ jsx5("p", { className: "text-[15px] text-void-text-secondary leading-relaxed mb-6", children: "Resolution runs apply field normalization, lookup cascades, and value transforms to extracted data. Create a resolution from a completed job run to standardise field values against reference data." }),
|
|
3319
|
+
/* @__PURE__ */ jsx5("div", { id: "list-resolutions", className: "scroll-mt-6", children: /* @__PURE__ */ jsx5(
|
|
3320
|
+
EndpointBlock,
|
|
3321
|
+
{
|
|
3322
|
+
method: "GET",
|
|
3323
|
+
path: "/v1/resolutions",
|
|
3324
|
+
summary: "List resolution runs, optionally filtered by status or source run.",
|
|
3325
|
+
description: "Requires read scope.",
|
|
3326
|
+
children: /* @__PURE__ */ jsx5(ParamTable, { params: [
|
|
3327
|
+
{ name: "status", type: "string", required: false, description: "Filter by run status." },
|
|
3328
|
+
{ name: "source_run_id", type: "uuid", required: false, description: "Filter by originating job run." }
|
|
3329
|
+
] })
|
|
3330
|
+
}
|
|
3331
|
+
) }),
|
|
3332
|
+
/* @__PURE__ */ jsx5("div", { id: "create-resolution", className: "scroll-mt-6", children: /* @__PURE__ */ jsx5(
|
|
3333
|
+
EndpointBlock,
|
|
3334
|
+
{
|
|
3335
|
+
method: "POST",
|
|
3336
|
+
path: "/v1/resolutions",
|
|
3337
|
+
summary: "Create a resolution run from a completed job.",
|
|
3338
|
+
description: "Requires write scope. Provide the source_run_id to resolve.",
|
|
3339
|
+
children: /* @__PURE__ */ jsx5(CodeBlock, { title: "Request body", children: `{
|
|
3340
|
+
"source_run_id": "run_abc123"
|
|
3341
|
+
}` })
|
|
3342
|
+
}
|
|
3343
|
+
) }),
|
|
3344
|
+
/* @__PURE__ */ jsx5("div", { id: "get-resolution", className: "scroll-mt-6", children: /* @__PURE__ */ jsx5(
|
|
3345
|
+
EndpointBlock,
|
|
3346
|
+
{
|
|
3347
|
+
method: "GET",
|
|
3348
|
+
path: "/v1/resolutions/{id}",
|
|
3349
|
+
summary: "Get a resolution run with status and summary.",
|
|
3350
|
+
description: "Requires read scope."
|
|
3351
|
+
}
|
|
3352
|
+
) }),
|
|
3353
|
+
/* @__PURE__ */ jsx5("div", { id: "get-resolution-results", className: "scroll-mt-6", children: /* @__PURE__ */ jsx5(
|
|
3354
|
+
EndpointBlock,
|
|
3355
|
+
{
|
|
3356
|
+
method: "GET",
|
|
3357
|
+
path: "/v1/resolutions/{id}/results",
|
|
3358
|
+
summary: "Get per-field resolution results showing original and resolved values.",
|
|
3359
|
+
description: "Requires read scope.",
|
|
3360
|
+
children: /* @__PURE__ */ jsx5(CodeBlock, { title: "Response", children: `{
|
|
3361
|
+
"data": [
|
|
3362
|
+
{
|
|
3363
|
+
"document_id": "doc_abc123",
|
|
3364
|
+
"field_name": "country",
|
|
3365
|
+
"original_value": "Deutschland",
|
|
3366
|
+
"resolved_value": "DE",
|
|
3367
|
+
"resolution_step": "lookup",
|
|
3368
|
+
"confidence": 0.98
|
|
3369
|
+
}
|
|
3370
|
+
]
|
|
3371
|
+
}` })
|
|
3372
|
+
}
|
|
3373
|
+
) }),
|
|
3374
|
+
/* @__PURE__ */ jsx5("div", { id: "execute-resolution", className: "scroll-mt-6", children: /* @__PURE__ */ jsx5(
|
|
3375
|
+
EndpointBlock,
|
|
3376
|
+
{
|
|
3377
|
+
method: "POST",
|
|
3378
|
+
path: "/v1/resolutions/{id}/execute",
|
|
3379
|
+
summary: "Execute the resolution pipeline on all pending fields.",
|
|
3380
|
+
description: "Requires write scope. Returns immediately \u2014 poll the run for progress."
|
|
3381
|
+
}
|
|
3382
|
+
) }),
|
|
3383
|
+
/* @__PURE__ */ jsx5("div", { id: "delete-resolution", className: "scroll-mt-6", children: /* @__PURE__ */ jsx5(
|
|
3384
|
+
EndpointBlock,
|
|
3385
|
+
{
|
|
3386
|
+
method: "DELETE",
|
|
3387
|
+
path: "/v1/resolutions/{id}",
|
|
3388
|
+
summary: "Delete a resolution run and its results.",
|
|
3389
|
+
description: "Requires write scope."
|
|
3390
|
+
}
|
|
3391
|
+
) }),
|
|
3392
|
+
/* @__PURE__ */ jsx5(SectionHeading, { id: "linking", children: "Linking" }),
|
|
3393
|
+
/* @__PURE__ */ jsx5("p", { className: "text-[15px] text-void-text-secondary leading-relaxed mb-6", children: "The linking graph connects documents through shared entity values \u2014 an invoice and a contract sharing the same customer ID are linked. Links are discovered automatically during extraction and can be classified into categories (identity, transaction, reference) via AI." }),
|
|
3394
|
+
/* @__PURE__ */ jsx5("div", { id: "list-link-keys", className: "scroll-mt-6", children: /* @__PURE__ */ jsx5(
|
|
3395
|
+
EndpointBlock,
|
|
3396
|
+
{
|
|
3397
|
+
method: "GET",
|
|
3398
|
+
path: "/v1/linking/link-keys",
|
|
3399
|
+
summary: "List all discovered link keys with their classification category and frequency.",
|
|
3400
|
+
description: "Requires read scope.",
|
|
3401
|
+
children: /* @__PURE__ */ jsx5(CodeBlock, { title: "Response", children: `{
|
|
3402
|
+
"data": [
|
|
3403
|
+
{
|
|
3404
|
+
"field_name": "customer_id",
|
|
3405
|
+
"category": "identity",
|
|
3406
|
+
"auto_classified": true,
|
|
3407
|
+
"frequency": 0.85
|
|
3408
|
+
}
|
|
3409
|
+
]
|
|
3410
|
+
}` })
|
|
3411
|
+
}
|
|
3412
|
+
) }),
|
|
3413
|
+
/* @__PURE__ */ jsx5("div", { id: "get-document-links", className: "scroll-mt-6", children: /* @__PURE__ */ jsx5(
|
|
3414
|
+
EndpointBlock,
|
|
3415
|
+
{
|
|
3416
|
+
method: "GET",
|
|
3417
|
+
path: "/v1/linking/documents/{id}/links",
|
|
3418
|
+
summary: "Get all links for a specific document.",
|
|
3419
|
+
description: "Requires read scope."
|
|
3420
|
+
}
|
|
3421
|
+
) }),
|
|
3422
|
+
/* @__PURE__ */ jsx5("div", { id: "get-linking-graph", className: "scroll-mt-6", children: /* @__PURE__ */ jsx5(
|
|
3423
|
+
EndpointBlock,
|
|
3424
|
+
{
|
|
3425
|
+
method: "GET",
|
|
3426
|
+
path: "/v1/linking/graph",
|
|
3427
|
+
summary: "Get the full document linking graph as nodes and edges.",
|
|
3428
|
+
description: "Requires read scope. Can be large for workspaces with many documents."
|
|
3429
|
+
}
|
|
3430
|
+
) }),
|
|
3431
|
+
/* @__PURE__ */ jsx5("div", { id: "get-document-graph", className: "scroll-mt-6", children: /* @__PURE__ */ jsx5(
|
|
3432
|
+
EndpointBlock,
|
|
3433
|
+
{
|
|
3434
|
+
method: "GET",
|
|
3435
|
+
path: "/v1/linking/graph/documents/{id}",
|
|
3436
|
+
summary: "Get the graph neighbourhood for a single document.",
|
|
3437
|
+
description: "Requires read scope.",
|
|
3438
|
+
children: /* @__PURE__ */ jsx5(ParamTable, { params: [
|
|
3439
|
+
{ name: "depth", type: "integer", required: false, description: "Graph traversal depth (default 2)." }
|
|
3440
|
+
] })
|
|
3441
|
+
}
|
|
3442
|
+
) }),
|
|
3443
|
+
/* @__PURE__ */ jsx5("div", { id: "classify-link-keys", className: "scroll-mt-6", children: /* @__PURE__ */ jsx5(
|
|
3444
|
+
EndpointBlock,
|
|
3445
|
+
{
|
|
3446
|
+
method: "POST",
|
|
3447
|
+
path: "/v1/linking/classify",
|
|
3448
|
+
summary: "Classify link keys into categories using AI.",
|
|
3449
|
+
description: "Requires write scope. Runs asynchronously."
|
|
3450
|
+
}
|
|
3451
|
+
) }),
|
|
3452
|
+
/* @__PURE__ */ jsx5("div", { id: "backfill-linking", className: "scroll-mt-6", children: /* @__PURE__ */ jsx5(
|
|
3453
|
+
EndpointBlock,
|
|
3454
|
+
{
|
|
3455
|
+
method: "POST",
|
|
3456
|
+
path: "/v1/linking/backfill",
|
|
3457
|
+
summary: "Backfill link values across all documents.",
|
|
3458
|
+
description: "Requires write scope. Returns 202 \u2014 poll progress via the backfill progress endpoint."
|
|
3459
|
+
}
|
|
3460
|
+
) }),
|
|
3461
|
+
/* @__PURE__ */ jsx5("div", { id: "backfill-progress", className: "scroll-mt-6", children: /* @__PURE__ */ jsx5(
|
|
3462
|
+
EndpointBlock,
|
|
3463
|
+
{
|
|
3464
|
+
method: "GET",
|
|
3465
|
+
path: "/v1/linking/backfill/progress",
|
|
3466
|
+
summary: "Get backfill progress.",
|
|
3467
|
+
description: "Requires read scope."
|
|
3468
|
+
}
|
|
3469
|
+
) }),
|
|
3470
|
+
/* @__PURE__ */ jsx5("div", { id: "document-case-map", className: "scroll-mt-6", children: /* @__PURE__ */ jsx5(
|
|
3471
|
+
EndpointBlock,
|
|
3472
|
+
{
|
|
3473
|
+
method: "GET",
|
|
3474
|
+
path: "/v1/linking/document-case-map",
|
|
3475
|
+
summary: "Get the mapping of documents to their resolved cases.",
|
|
3476
|
+
description: "Requires read scope."
|
|
3477
|
+
}
|
|
3478
|
+
) }),
|
|
3479
|
+
/* @__PURE__ */ jsx5(SectionHeading, { id: "nshot", children: "N-Shot" }),
|
|
3480
|
+
/* @__PURE__ */ jsx5("p", { className: "text-[15px] text-void-text-secondary leading-relaxed mb-6", children: "N-Shot endpoints provide field-level comparisons between job runs \u2014 useful for evaluating extraction quality across schema versions. Submit judge decisions (human or AI) to record which run produced the better result." }),
|
|
3481
|
+
/* @__PURE__ */ jsx5("div", { id: "nshot-summary", className: "scroll-mt-6", children: /* @__PURE__ */ jsx5(
|
|
3482
|
+
EndpointBlock,
|
|
3483
|
+
{
|
|
3484
|
+
method: "GET",
|
|
3485
|
+
path: "/v1/jobs/runs/{runId}/nshot/summary",
|
|
3486
|
+
summary: "Get an aggregate N-Shot summary for a run.",
|
|
3487
|
+
description: "Requires read scope."
|
|
3488
|
+
}
|
|
3489
|
+
) }),
|
|
3490
|
+
/* @__PURE__ */ jsx5("div", { id: "nshot-comparisons", className: "scroll-mt-6", children: /* @__PURE__ */ jsx5(
|
|
3491
|
+
EndpointBlock,
|
|
3492
|
+
{
|
|
3493
|
+
method: "GET",
|
|
3494
|
+
path: "/v1/jobs/runs/{runId}/nshot/comparisons",
|
|
3495
|
+
summary: "List per-document field comparisons.",
|
|
3496
|
+
description: "Requires read scope."
|
|
3497
|
+
}
|
|
3498
|
+
) }),
|
|
3499
|
+
/* @__PURE__ */ jsx5("div", { id: "nshot-comparison", className: "scroll-mt-6", children: /* @__PURE__ */ jsx5(
|
|
3500
|
+
EndpointBlock,
|
|
3501
|
+
{
|
|
3502
|
+
method: "GET",
|
|
3503
|
+
path: "/v1/jobs/runs/{runId}/nshot/comparison",
|
|
3504
|
+
summary: "Get a specific field comparison.",
|
|
3505
|
+
description: "Requires read scope."
|
|
3506
|
+
}
|
|
3507
|
+
) }),
|
|
3508
|
+
/* @__PURE__ */ jsx5("div", { id: "nshot-override", className: "scroll-mt-6", children: /* @__PURE__ */ jsx5(
|
|
3509
|
+
EndpointBlock,
|
|
3510
|
+
{
|
|
3511
|
+
method: "POST",
|
|
3512
|
+
path: "/v1/jobs/runs/{runId}/nshot/override",
|
|
3513
|
+
summary: "Override an N-Shot value for a specific field.",
|
|
3514
|
+
description: "Requires write scope."
|
|
3515
|
+
}
|
|
3516
|
+
) }),
|
|
3517
|
+
/* @__PURE__ */ jsx5("div", { id: "nshot-judge-decision", className: "scroll-mt-6", children: /* @__PURE__ */ jsx5(
|
|
3518
|
+
EndpointBlock,
|
|
3519
|
+
{
|
|
3520
|
+
method: "POST",
|
|
3521
|
+
path: "/v1/jobs/runs/{runId}/nshot/judge-decision",
|
|
3522
|
+
summary: "Submit a judge decision (human or AI) for an N-Shot comparison.",
|
|
3523
|
+
description: "Requires write scope."
|
|
3524
|
+
}
|
|
3525
|
+
) }),
|
|
3526
|
+
/* @__PURE__ */ jsx5(SectionHeading, { id: "schema-graph", children: "Schema Graph" }),
|
|
3527
|
+
/* @__PURE__ */ jsx5("p", { className: "text-[15px] text-void-text-secondary leading-relaxed mb-6", children: "The schema graph is a versioned ontology of document classes discovered across your workspace. Each class captures a document type's canonical fields. Diffs are generated when the system proposes changes and require approval before they take effect." }),
|
|
3528
|
+
/* @__PURE__ */ jsx5("div", { id: "list-schema-graph-classes", className: "scroll-mt-6", children: /* @__PURE__ */ jsx5(
|
|
3529
|
+
EndpointBlock,
|
|
3530
|
+
{
|
|
3531
|
+
method: "GET",
|
|
3532
|
+
path: "/v1/schema-graph/classes",
|
|
3533
|
+
summary: "List all schema graph classes.",
|
|
3534
|
+
description: "Requires read scope."
|
|
3535
|
+
}
|
|
3536
|
+
) }),
|
|
3537
|
+
/* @__PURE__ */ jsx5("div", { id: "get-schema-graph-class", className: "scroll-mt-6", children: /* @__PURE__ */ jsx5(
|
|
3538
|
+
EndpointBlock,
|
|
3539
|
+
{
|
|
3540
|
+
method: "GET",
|
|
3541
|
+
path: "/v1/schema-graph/classes/{id}",
|
|
3542
|
+
summary: "Get a schema graph class with its current field definitions.",
|
|
3543
|
+
description: "Requires read scope."
|
|
3544
|
+
}
|
|
3545
|
+
) }),
|
|
3546
|
+
/* @__PURE__ */ jsx5("div", { id: "list-class-versions", className: "scroll-mt-6", children: /* @__PURE__ */ jsx5(
|
|
3547
|
+
EndpointBlock,
|
|
3548
|
+
{
|
|
3549
|
+
method: "GET",
|
|
3550
|
+
path: "/v1/schema-graph/classes/{id}/versions",
|
|
3551
|
+
summary: "List all versions of a schema graph class.",
|
|
3552
|
+
description: "Requires read scope."
|
|
3553
|
+
}
|
|
3554
|
+
) }),
|
|
3555
|
+
/* @__PURE__ */ jsx5("div", { id: "get-class-version", className: "scroll-mt-6", children: /* @__PURE__ */ jsx5(
|
|
3556
|
+
EndpointBlock,
|
|
3557
|
+
{
|
|
3558
|
+
method: "GET",
|
|
3559
|
+
path: "/v1/schema-graph/classes/{id}/versions/{version}",
|
|
3560
|
+
summary: "Get a specific version of a schema graph class.",
|
|
3561
|
+
description: "Requires read scope."
|
|
3562
|
+
}
|
|
3563
|
+
) }),
|
|
3564
|
+
/* @__PURE__ */ jsx5("div", { id: "list-schema-graph-diffs", className: "scroll-mt-6", children: /* @__PURE__ */ jsx5(
|
|
3565
|
+
EndpointBlock,
|
|
3566
|
+
{
|
|
3567
|
+
method: "GET",
|
|
3568
|
+
path: "/v1/schema-graph/diffs",
|
|
3569
|
+
summary: "List pending, approved, and rejected diffs.",
|
|
3570
|
+
description: "Requires read scope."
|
|
3571
|
+
}
|
|
3572
|
+
) }),
|
|
3573
|
+
/* @__PURE__ */ jsx5("div", { id: "approve-schema-graph-diff", className: "scroll-mt-6", children: /* @__PURE__ */ jsx5(
|
|
3574
|
+
EndpointBlock,
|
|
3575
|
+
{
|
|
3576
|
+
method: "POST",
|
|
3577
|
+
path: "/v1/schema-graph/diffs/{id}/approve",
|
|
3578
|
+
summary: "Approve a pending diff, promoting it to the next class version.",
|
|
3579
|
+
description: "Requires write scope."
|
|
3580
|
+
}
|
|
3581
|
+
) }),
|
|
3582
|
+
/* @__PURE__ */ jsx5("div", { id: "reject-schema-graph-diff", className: "scroll-mt-6", children: /* @__PURE__ */ jsx5(
|
|
3583
|
+
EndpointBlock,
|
|
3584
|
+
{
|
|
3585
|
+
method: "POST",
|
|
3586
|
+
path: "/v1/schema-graph/diffs/{id}/reject",
|
|
3587
|
+
summary: "Reject a pending diff.",
|
|
3588
|
+
description: "Requires write scope."
|
|
3589
|
+
}
|
|
3590
|
+
) }),
|
|
3591
|
+
/* @__PURE__ */ jsx5("div", { id: "list-schema-graph-edges", className: "scroll-mt-6", children: /* @__PURE__ */ jsx5(
|
|
3592
|
+
EndpointBlock,
|
|
3593
|
+
{
|
|
3594
|
+
method: "GET",
|
|
3595
|
+
path: "/v1/schema-graph/edges",
|
|
3596
|
+
summary: "List inter-class edges in the schema graph.",
|
|
3597
|
+
description: "Requires read scope."
|
|
3598
|
+
}
|
|
3599
|
+
) }),
|
|
3600
|
+
/* @__PURE__ */ jsx5("div", { id: "list-schema-graph-aliases", className: "scroll-mt-6", children: /* @__PURE__ */ jsx5(
|
|
3601
|
+
EndpointBlock,
|
|
3602
|
+
{
|
|
3603
|
+
method: "GET",
|
|
3604
|
+
path: "/v1/schema-graph/aliases",
|
|
3605
|
+
summary: "List schema graph class aliases.",
|
|
3606
|
+
description: "Requires read scope."
|
|
3607
|
+
}
|
|
3608
|
+
) }),
|
|
3609
|
+
/* @__PURE__ */ jsx5("div", { id: "visualize-schema-graph", className: "scroll-mt-6", children: /* @__PURE__ */ jsx5(
|
|
3610
|
+
EndpointBlock,
|
|
3611
|
+
{
|
|
3612
|
+
method: "GET",
|
|
3613
|
+
path: "/v1/schema-graph/visualize",
|
|
3614
|
+
summary: "Get D3-compatible visualization data for the schema graph.",
|
|
3615
|
+
description: "Requires read scope."
|
|
3616
|
+
}
|
|
3617
|
+
) }),
|
|
3618
|
+
/* @__PURE__ */ jsx5(SectionHeading, { id: "structuring", children: "Structuring" }),
|
|
3619
|
+
/* @__PURE__ */ jsx5("p", { className: "text-[15px] text-void-text-secondary leading-relaxed mb-6", children: "The structuring pipeline validates extracted data through configurable checks and approval gates. Checks define validation rules; gates aggregate checks and determine whether records require manual approval before delivery." }),
|
|
3620
|
+
/* @__PURE__ */ jsx5(SubHeading, { id: "structuring-checks", children: "Checks" }),
|
|
3621
|
+
/* @__PURE__ */ jsx5("div", { id: "list-structuring-checks", className: "scroll-mt-6", children: /* @__PURE__ */ jsx5(
|
|
3622
|
+
EndpointBlock,
|
|
3623
|
+
{
|
|
3624
|
+
method: "GET",
|
|
3625
|
+
path: "/v1/structuring/checks",
|
|
3626
|
+
summary: "List validation checks.",
|
|
3627
|
+
description: "Requires read scope."
|
|
3628
|
+
}
|
|
3629
|
+
) }),
|
|
3630
|
+
/* @__PURE__ */ jsx5("div", { id: "create-structuring-check", className: "scroll-mt-6", children: /* @__PURE__ */ jsx5(
|
|
3631
|
+
EndpointBlock,
|
|
3632
|
+
{
|
|
3633
|
+
method: "POST",
|
|
3634
|
+
path: "/v1/structuring/checks",
|
|
3635
|
+
summary: "Create a validation check.",
|
|
3636
|
+
description: "Requires write scope.",
|
|
3637
|
+
children: /* @__PURE__ */ jsx5(CodeBlock, { title: "Request body", children: `{
|
|
3638
|
+
"name": "Amount range check",
|
|
3639
|
+
"type": "value_range",
|
|
3640
|
+
"config": {
|
|
3641
|
+
"field": "total_amount",
|
|
3642
|
+
"min": 0,
|
|
3643
|
+
"max": 1000000
|
|
3644
|
+
}
|
|
3645
|
+
}` })
|
|
3646
|
+
}
|
|
3647
|
+
) }),
|
|
3648
|
+
/* @__PURE__ */ jsx5("div", { id: "get-structuring-check", className: "scroll-mt-6", children: /* @__PURE__ */ jsx5(
|
|
3649
|
+
EndpointBlock,
|
|
3650
|
+
{
|
|
3651
|
+
method: "GET",
|
|
3652
|
+
path: "/v1/structuring/checks/{id}",
|
|
3653
|
+
summary: "Get a validation check.",
|
|
3654
|
+
description: "Requires read scope."
|
|
3655
|
+
}
|
|
3656
|
+
) }),
|
|
3657
|
+
/* @__PURE__ */ jsx5("div", { id: "update-structuring-check", className: "scroll-mt-6", children: /* @__PURE__ */ jsx5(
|
|
3658
|
+
EndpointBlock,
|
|
3659
|
+
{
|
|
3660
|
+
method: "PUT",
|
|
3661
|
+
path: "/v1/structuring/checks/{id}",
|
|
3662
|
+
summary: "Update a validation check.",
|
|
3663
|
+
description: "Requires write scope."
|
|
3664
|
+
}
|
|
3665
|
+
) }),
|
|
3666
|
+
/* @__PURE__ */ jsx5("div", { id: "delete-structuring-check", className: "scroll-mt-6", children: /* @__PURE__ */ jsx5(
|
|
3667
|
+
EndpointBlock,
|
|
3668
|
+
{
|
|
3669
|
+
method: "DELETE",
|
|
3670
|
+
path: "/v1/structuring/checks/{id}",
|
|
3671
|
+
summary: "Delete a validation check.",
|
|
3672
|
+
description: "Requires write scope."
|
|
3673
|
+
}
|
|
3674
|
+
) }),
|
|
3675
|
+
/* @__PURE__ */ jsx5(SubHeading, { id: "structuring-gates", children: "Approval Gates" }),
|
|
3676
|
+
/* @__PURE__ */ jsx5("div", { id: "list-structuring-gates", className: "scroll-mt-6", children: /* @__PURE__ */ jsx5(
|
|
3677
|
+
EndpointBlock,
|
|
3678
|
+
{
|
|
3679
|
+
method: "GET",
|
|
3680
|
+
path: "/v1/structuring/gates",
|
|
3681
|
+
summary: "List approval gates.",
|
|
3682
|
+
description: "Requires read scope."
|
|
3683
|
+
}
|
|
3684
|
+
) }),
|
|
3685
|
+
/* @__PURE__ */ jsx5("div", { id: "create-structuring-gate", className: "scroll-mt-6", children: /* @__PURE__ */ jsx5(
|
|
3686
|
+
EndpointBlock,
|
|
3687
|
+
{
|
|
3688
|
+
method: "POST",
|
|
3689
|
+
path: "/v1/structuring/gates",
|
|
3690
|
+
summary: "Create an approval gate.",
|
|
3691
|
+
description: "Requires write scope."
|
|
3692
|
+
}
|
|
3693
|
+
) }),
|
|
3694
|
+
/* @__PURE__ */ jsx5("div", { id: "get-structuring-gate", className: "scroll-mt-6", children: /* @__PURE__ */ jsx5(
|
|
3695
|
+
EndpointBlock,
|
|
3696
|
+
{
|
|
3697
|
+
method: "GET",
|
|
3698
|
+
path: "/v1/structuring/gates/{id}",
|
|
3699
|
+
summary: "Get an approval gate with its rules.",
|
|
3700
|
+
description: "Requires read scope."
|
|
3701
|
+
}
|
|
3702
|
+
) }),
|
|
3703
|
+
/* @__PURE__ */ jsx5("div", { id: "update-structuring-gate", className: "scroll-mt-6", children: /* @__PURE__ */ jsx5(
|
|
3704
|
+
EndpointBlock,
|
|
3705
|
+
{
|
|
3706
|
+
method: "PUT",
|
|
3707
|
+
path: "/v1/structuring/gates/{id}",
|
|
3708
|
+
summary: "Update an approval gate.",
|
|
3709
|
+
description: "Requires write scope."
|
|
3710
|
+
}
|
|
3711
|
+
) }),
|
|
3712
|
+
/* @__PURE__ */ jsx5("div", { id: "delete-structuring-gate", className: "scroll-mt-6", children: /* @__PURE__ */ jsx5(
|
|
3713
|
+
EndpointBlock,
|
|
3714
|
+
{
|
|
3715
|
+
method: "DELETE",
|
|
3716
|
+
path: "/v1/structuring/gates/{id}",
|
|
3717
|
+
summary: "Delete an approval gate.",
|
|
3718
|
+
description: "Requires write scope."
|
|
3719
|
+
}
|
|
3720
|
+
) }),
|
|
3721
|
+
/* @__PURE__ */ jsx5(SectionHeading, { id: "telemetry", children: "Telemetry" }),
|
|
3722
|
+
/* @__PURE__ */ jsx5("p", { className: "text-[15px] text-void-text-secondary leading-relaxed mb-6", children: "Aggregate structuring metrics \u2014 capture hit rate, synthesize rate, strategy distribution, and tier funnel breakdowns per schema or run." }),
|
|
3723
|
+
/* @__PURE__ */ jsx5("div", { id: "telemetry-schema-summary", className: "scroll-mt-6", children: /* @__PURE__ */ jsx5(
|
|
3724
|
+
EndpointBlock,
|
|
3725
|
+
{
|
|
3726
|
+
method: "GET",
|
|
3727
|
+
path: "/v1/telemetry/schemas/{id}/summary",
|
|
3728
|
+
summary: "Get aggregate metrics for a schema across all runs.",
|
|
3729
|
+
description: "Requires read scope."
|
|
3730
|
+
}
|
|
3731
|
+
) }),
|
|
3732
|
+
/* @__PURE__ */ jsx5("div", { id: "telemetry-schema-trend", className: "scroll-mt-6", children: /* @__PURE__ */ jsx5(
|
|
3733
|
+
EndpointBlock,
|
|
3734
|
+
{
|
|
3735
|
+
method: "GET",
|
|
3736
|
+
path: "/v1/telemetry/schemas/{id}/trend",
|
|
3737
|
+
summary: "Get metric trends over time for a schema.",
|
|
3738
|
+
description: "Requires read scope."
|
|
3739
|
+
}
|
|
3740
|
+
) }),
|
|
3741
|
+
/* @__PURE__ */ jsx5("div", { id: "telemetry-schema-fields", className: "scroll-mt-6", children: /* @__PURE__ */ jsx5(
|
|
3742
|
+
EndpointBlock,
|
|
3743
|
+
{
|
|
3744
|
+
method: "GET",
|
|
3745
|
+
path: "/v1/telemetry/schemas/{id}/fields",
|
|
3746
|
+
summary: "Get per-field structuring metrics for a schema.",
|
|
3747
|
+
description: "Requires read scope."
|
|
3748
|
+
}
|
|
3749
|
+
) }),
|
|
3750
|
+
/* @__PURE__ */ jsx5("div", { id: "telemetry-run-summary", className: "scroll-mt-6", children: /* @__PURE__ */ jsx5(
|
|
3751
|
+
EndpointBlock,
|
|
3752
|
+
{
|
|
3753
|
+
method: "GET",
|
|
3754
|
+
path: "/v1/telemetry/runs/{id}/summary",
|
|
3755
|
+
summary: "Get structuring metrics for a single run.",
|
|
3756
|
+
description: "Requires read scope."
|
|
3757
|
+
}
|
|
3758
|
+
) }),
|
|
3759
|
+
/* @__PURE__ */ jsx5(SectionHeading, { id: "validation", children: "Validation" }),
|
|
3760
|
+
/* @__PURE__ */ jsx5("p", { className: "text-[15px] text-void-text-secondary leading-relaxed mb-6", children: "Golden sample management and validation runs for measuring extraction accuracy against ground truth datasets. Create a golden sample set, then run validations to compare extracted values against expected values." }),
|
|
3761
|
+
/* @__PURE__ */ jsx5(SubHeading, { id: "golden-samples", children: "Golden Samples" }),
|
|
3762
|
+
/* @__PURE__ */ jsx5("div", { id: "list-golden-samples", className: "scroll-mt-6", children: /* @__PURE__ */ jsx5(
|
|
3763
|
+
EndpointBlock,
|
|
3764
|
+
{
|
|
3765
|
+
method: "GET",
|
|
3766
|
+
path: "/v1/validation/ground-truth",
|
|
3767
|
+
summary: "List golden sample sets.",
|
|
3768
|
+
description: "Requires read scope."
|
|
3769
|
+
}
|
|
3770
|
+
) }),
|
|
3771
|
+
/* @__PURE__ */ jsx5("div", { id: "get-golden-sample", className: "scroll-mt-6", children: /* @__PURE__ */ jsx5(
|
|
3772
|
+
EndpointBlock,
|
|
3773
|
+
{
|
|
3774
|
+
method: "GET",
|
|
3775
|
+
path: "/v1/validation/ground-truth/{id}",
|
|
3776
|
+
summary: "Get a golden sample set with its expected values.",
|
|
3777
|
+
description: "Requires read scope."
|
|
3778
|
+
}
|
|
3779
|
+
) }),
|
|
3780
|
+
/* @__PURE__ */ jsx5("div", { id: "delete-golden-sample", className: "scroll-mt-6", children: /* @__PURE__ */ jsx5(
|
|
3781
|
+
EndpointBlock,
|
|
3782
|
+
{
|
|
3783
|
+
method: "DELETE",
|
|
3784
|
+
path: "/v1/validation/ground-truth/{id}",
|
|
3785
|
+
summary: "Delete a golden sample set.",
|
|
3786
|
+
description: "Requires write scope."
|
|
3787
|
+
}
|
|
3788
|
+
) }),
|
|
3789
|
+
/* @__PURE__ */ jsx5(SubHeading, { id: "validation-runs", children: "Validation Runs" }),
|
|
3790
|
+
/* @__PURE__ */ jsx5("div", { id: "list-validation-runs", className: "scroll-mt-6", children: /* @__PURE__ */ jsx5(
|
|
3791
|
+
EndpointBlock,
|
|
3792
|
+
{
|
|
3793
|
+
method: "GET",
|
|
3794
|
+
path: "/v1/validation/runs",
|
|
3795
|
+
summary: "List validation runs.",
|
|
3796
|
+
description: "Requires read scope."
|
|
3797
|
+
}
|
|
3798
|
+
) }),
|
|
3799
|
+
/* @__PURE__ */ jsx5("div", { id: "create-validation-run", className: "scroll-mt-6", children: /* @__PURE__ */ jsx5(
|
|
3800
|
+
EndpointBlock,
|
|
3801
|
+
{
|
|
3802
|
+
method: "POST",
|
|
3803
|
+
path: "/v1/validation/runs",
|
|
3804
|
+
summary: "Create a validation run comparing a job against a golden sample.",
|
|
3805
|
+
description: "Requires write scope.",
|
|
3806
|
+
children: /* @__PURE__ */ jsx5(CodeBlock, { title: "Request body", children: `{
|
|
3807
|
+
"dataspace_run_id": "run_abc123",
|
|
3808
|
+
"golden_sample_id": "gs_xyz789",
|
|
3809
|
+
"name": "Q1 Invoice accuracy check"
|
|
3810
|
+
}` })
|
|
3811
|
+
}
|
|
3812
|
+
) }),
|
|
3813
|
+
/* @__PURE__ */ jsx5("div", { id: "get-validation-run", className: "scroll-mt-6", children: /* @__PURE__ */ jsx5(
|
|
3814
|
+
EndpointBlock,
|
|
3815
|
+
{
|
|
3816
|
+
method: "GET",
|
|
3817
|
+
path: "/v1/validation/runs/{id}",
|
|
3818
|
+
summary: "Get a validation run with accuracy summary.",
|
|
3819
|
+
description: "Requires read scope."
|
|
3820
|
+
}
|
|
3821
|
+
) }),
|
|
3822
|
+
/* @__PURE__ */ jsx5("div", { id: "get-validation-results", className: "scroll-mt-6", children: /* @__PURE__ */ jsxs5(
|
|
3823
|
+
EndpointBlock,
|
|
3824
|
+
{
|
|
3825
|
+
method: "GET",
|
|
3826
|
+
path: "/v1/validation/runs/{id}/results",
|
|
3827
|
+
summary: "Get per-field validation results.",
|
|
3828
|
+
description: "Requires read scope.",
|
|
3829
|
+
children: [
|
|
3830
|
+
/* @__PURE__ */ jsx5(ParamTable, { params: [
|
|
3831
|
+
{ name: "judged_only", type: "string", required: false, description: 'Set to "true" to return only judged results.' }
|
|
3832
|
+
] }),
|
|
3833
|
+
/* @__PURE__ */ jsx5(CodeBlock, { title: "Response", children: `{
|
|
3834
|
+
"data": [
|
|
3835
|
+
{
|
|
3836
|
+
"document_id": "doc_abc123",
|
|
3837
|
+
"field_name": "invoice_number",
|
|
3838
|
+
"expected_value": "INV-2024-0042",
|
|
3839
|
+
"actual_value": "INV-2024-0042",
|
|
3840
|
+
"match_type": "exact",
|
|
3841
|
+
"similarity_score": 1.0,
|
|
3842
|
+
"judge_verdict": "correct"
|
|
3843
|
+
}
|
|
3844
|
+
]
|
|
3845
|
+
}` })
|
|
3846
|
+
]
|
|
3847
|
+
}
|
|
3848
|
+
) }),
|
|
3849
|
+
/* @__PURE__ */ jsx5("div", { id: "delete-validation-run", className: "scroll-mt-6", children: /* @__PURE__ */ jsx5(
|
|
3850
|
+
EndpointBlock,
|
|
3851
|
+
{
|
|
3852
|
+
method: "DELETE",
|
|
3853
|
+
path: "/v1/validation/runs/{id}",
|
|
3854
|
+
summary: "Delete a validation run.",
|
|
3855
|
+
description: "Requires write scope."
|
|
3856
|
+
}
|
|
3857
|
+
) }),
|
|
3858
|
+
/* @__PURE__ */ jsx5(SectionHeading, { id: "credits", children: "Credits" }),
|
|
3859
|
+
/* @__PURE__ */ jsx5("p", { className: "text-[15px] text-void-text-secondary leading-relaxed mb-6", children: "Track credit balance, transaction history, and usage breakdowns by operation type and time period." }),
|
|
3860
|
+
/* @__PURE__ */ jsx5("div", { id: "credits-balance", className: "scroll-mt-6", children: /* @__PURE__ */ jsx5(
|
|
3861
|
+
EndpointBlock,
|
|
3862
|
+
{
|
|
3863
|
+
method: "GET",
|
|
3864
|
+
path: "/v1/credits/balance",
|
|
3865
|
+
summary: "Get current credit balance.",
|
|
3866
|
+
description: "Requires read scope.",
|
|
3867
|
+
children: /* @__PURE__ */ jsx5(CodeBlock, { title: "Response", children: `{
|
|
3868
|
+
"balance": 4250.00,
|
|
3869
|
+
"currency": "USD",
|
|
3870
|
+
"as_of": "2026-04-27T12:00:00Z"
|
|
3871
|
+
}` })
|
|
3872
|
+
}
|
|
3873
|
+
) }),
|
|
3874
|
+
/* @__PURE__ */ jsx5("div", { id: "credits-history", className: "scroll-mt-6", children: /* @__PURE__ */ jsx5(
|
|
3875
|
+
EndpointBlock,
|
|
3876
|
+
{
|
|
3877
|
+
method: "GET",
|
|
3878
|
+
path: "/v1/credits/history",
|
|
3879
|
+
summary: "Get credit transaction history.",
|
|
3880
|
+
description: "Requires read scope.",
|
|
3881
|
+
children: /* @__PURE__ */ jsx5(ParamTable, { params: [
|
|
3882
|
+
{ name: "limit", type: "integer", required: false, description: "Max items to return (default 20)." },
|
|
3883
|
+
{ name: "cursor", type: "string", required: false, description: "Pagination cursor." }
|
|
3884
|
+
] })
|
|
3885
|
+
}
|
|
3886
|
+
) }),
|
|
3887
|
+
/* @__PURE__ */ jsx5("div", { id: "credits-usage-summary", className: "scroll-mt-6", children: /* @__PURE__ */ jsx5(
|
|
3888
|
+
EndpointBlock,
|
|
3889
|
+
{
|
|
3890
|
+
method: "GET",
|
|
3891
|
+
path: "/v1/credits/usage-summary",
|
|
3892
|
+
summary: "Get aggregate usage summary by operation type.",
|
|
3893
|
+
description: "Requires read scope.",
|
|
3894
|
+
children: /* @__PURE__ */ jsx5(ParamTable, { params: [
|
|
3895
|
+
{ name: "from", type: "date-time", required: false, description: "Start of period (default 30 days ago)." },
|
|
3896
|
+
{ name: "to", type: "date-time", required: false, description: "End of period (default now)." }
|
|
3897
|
+
] })
|
|
3898
|
+
}
|
|
3899
|
+
) }),
|
|
3900
|
+
/* @__PURE__ */ jsx5("div", { id: "credits-daily-usage", className: "scroll-mt-6", children: /* @__PURE__ */ jsx5(
|
|
3901
|
+
EndpointBlock,
|
|
3902
|
+
{
|
|
3903
|
+
method: "GET",
|
|
3904
|
+
path: "/v1/credits/daily-usage",
|
|
3905
|
+
summary: "Get daily usage breakdown.",
|
|
3906
|
+
description: "Requires read scope."
|
|
3907
|
+
}
|
|
3908
|
+
) }),
|
|
3909
|
+
/* @__PURE__ */ jsx5("div", { id: "credits-usage-log", className: "scroll-mt-6", children: /* @__PURE__ */ jsx5(
|
|
3910
|
+
EndpointBlock,
|
|
3911
|
+
{
|
|
3912
|
+
method: "GET",
|
|
3913
|
+
path: "/v1/credits/usage-log",
|
|
3914
|
+
summary: "Get per-request usage log with token counts and cost estimates.",
|
|
3915
|
+
description: "Requires read scope.",
|
|
3916
|
+
children: /* @__PURE__ */ jsx5(ParamTable, { params: [
|
|
3917
|
+
{ name: "limit", type: "integer", required: false, description: "Max items to return (default 50)." },
|
|
3918
|
+
{ name: "cursor", type: "string", required: false, description: "Pagination cursor." }
|
|
3919
|
+
] })
|
|
3920
|
+
}
|
|
3921
|
+
) }),
|
|
3922
|
+
/* @__PURE__ */ jsx5(SectionHeading, { id: "agent", children: "Agent" }),
|
|
3923
|
+
/* @__PURE__ */ jsx5("p", { className: "text-[15px] text-void-text-secondary leading-relaxed mb-6", children: "The Agent API provides programmatic access to the same AI assistant capabilities available in the Talonic platform UI. Use the context endpoint to retrieve a comprehensive workspace snapshot, and the tools endpoint to discover all available agent capabilities." }),
|
|
3924
|
+
/* @__PURE__ */ jsx5("div", { id: "agent-context", className: "scroll-mt-6", children: /* @__PURE__ */ jsx5(
|
|
3925
|
+
EndpointBlock,
|
|
3926
|
+
{
|
|
3927
|
+
method: "GET",
|
|
3928
|
+
path: "/v1/agent/context",
|
|
3929
|
+
summary: "Returns a comprehensive workspace overview including document stats, schemas, active runs, field registry summary, and recent activity.",
|
|
3930
|
+
description: "Requires read scope. Use this endpoint to build dashboards or provide context to external AI integrations.",
|
|
3931
|
+
children: /* @__PURE__ */ jsx5(CodeBlock, { title: "Response", children: `{
|
|
3932
|
+
"organizationName": "Phoenix",
|
|
3933
|
+
"documents": {
|
|
3934
|
+
"total": 810,
|
|
3935
|
+
"completedThisWeek": 155,
|
|
3936
|
+
"completedLast24h": 42,
|
|
3937
|
+
"processing": 3
|
|
3938
|
+
},
|
|
3939
|
+
"documentTypes": [
|
|
3940
|
+
{ "id": "uuid", "name": "Invoice", "documentCount": 320 }
|
|
3941
|
+
],
|
|
3942
|
+
"schemas": [
|
|
3943
|
+
{ "id": "uuid", "name": "Invoice Header", "fieldCount": 12, "version": 3 }
|
|
3944
|
+
],
|
|
3945
|
+
"activeRuns": [
|
|
3946
|
+
{ "id": "uuid", "name": "Schema_V13", "status": "extraction", "documentCount": 142 }
|
|
3947
|
+
],
|
|
3948
|
+
"fieldRegistry": {
|
|
3949
|
+
"totalFields": 245,
|
|
3950
|
+
"tier1": 80,
|
|
3951
|
+
"tier2": 120,
|
|
3952
|
+
"tier3": 45
|
|
3953
|
+
},
|
|
3954
|
+
"recentActivity": [
|
|
3955
|
+
{
|
|
3956
|
+
"type": "user_uploaded",
|
|
3957
|
+
"message": "42 documents uploaded",
|
|
3958
|
+
"timestamp": "2026-04-25T09:30:00Z",
|
|
3959
|
+
"actor": "Avi"
|
|
3960
|
+
}
|
|
3961
|
+
]
|
|
3962
|
+
}` })
|
|
3963
|
+
}
|
|
3964
|
+
) }),
|
|
3965
|
+
/* @__PURE__ */ jsx5("div", { id: "agent-tools", className: "scroll-mt-6", children: /* @__PURE__ */ jsx5(
|
|
3966
|
+
EndpointBlock,
|
|
3967
|
+
{
|
|
3968
|
+
method: "GET",
|
|
3969
|
+
path: "/v1/agent/tools",
|
|
3970
|
+
summary: "Lists all tools available to the embedded agent, including their impact level and description.",
|
|
3971
|
+
description: "Requires read scope. Each tool declares whether it performs a read or write operation.",
|
|
3972
|
+
children: /* @__PURE__ */ jsx5(CodeBlock, { title: "Response", children: `{
|
|
3973
|
+
"tools": [
|
|
3974
|
+
{
|
|
3975
|
+
"name": "list_schemas",
|
|
3976
|
+
"impact": "read",
|
|
3977
|
+
"description": "Lists all user-defined schemas."
|
|
3978
|
+
}
|
|
3979
|
+
],
|
|
3980
|
+
"totalCount": 35
|
|
3981
|
+
}` })
|
|
3982
|
+
}
|
|
3983
|
+
) }),
|
|
3309
3984
|
/* @__PURE__ */ jsx5(SectionHeading, { id: "errors-rate-limits", children: "Errors & Rate Limits" }),
|
|
3310
3985
|
/* @__PURE__ */ jsx5(SubHeading, { id: "error-format", children: "Error Format" }),
|
|
3311
3986
|
/* @__PURE__ */ jsx5("p", { className: "text-[15px] text-void-text-secondary leading-relaxed mb-4", children: "All errors return a consistent JSON structure with a machine-readable code and a human-readable message." }),
|
|
@@ -3425,6 +4100,15 @@ var NAV_SECTIONS2 = [
|
|
|
3425
4100
|
{ id: "getting-started", label: "Getting Started" }
|
|
3426
4101
|
]
|
|
3427
4102
|
},
|
|
4103
|
+
{
|
|
4104
|
+
id: "agent",
|
|
4105
|
+
label: "AI Agent",
|
|
4106
|
+
children: [
|
|
4107
|
+
{ id: "agent-capabilities", label: "Capabilities" },
|
|
4108
|
+
{ id: "agent-impact", label: "Impact Levels" },
|
|
4109
|
+
{ id: "agent-dashboard", label: "Dashboard" }
|
|
4110
|
+
]
|
|
4111
|
+
},
|
|
3428
4112
|
{
|
|
3429
4113
|
id: "sources-docs",
|
|
3430
4114
|
label: "Inputs & Documents",
|
|
@@ -3695,6 +4379,51 @@ function PlatformGuide({ LinkComponent }) {
|
|
|
3695
4379
|
/* @__PURE__ */ jsx6("strong", { children: "Structuring \u2192 Runs \u2192 New" }),
|
|
3696
4380
|
" to create your first extraction job."
|
|
3697
4381
|
] }),
|
|
4382
|
+
/* @__PURE__ */ jsx6(SectionHeading, { id: "agent", children: "AI Agent" }),
|
|
4383
|
+
/* @__PURE__ */ jsxs6(P, { children: [
|
|
4384
|
+
"Talonic includes an embedded AI agent accessible from every page via",
|
|
4385
|
+
" ",
|
|
4386
|
+
/* @__PURE__ */ jsx6("kbd", { className: "px-1.5 py-0.5 text-[11px] font-mono bg-void-surface-2 border border-void-border rounded", children: "\u2318I" }),
|
|
4387
|
+
" ",
|
|
4388
|
+
"(",
|
|
4389
|
+
/* @__PURE__ */ jsx6("kbd", { className: "px-1.5 py-0.5 text-[11px] font-mono bg-void-surface-2 border border-void-border rounded", children: "Ctrl+I" }),
|
|
4390
|
+
" on Windows). The agent understands your workspace context and can inspect schemas, search documents, analyze extraction quality, explore cases, and build schemas \u2014 all through natural language."
|
|
4391
|
+
] }),
|
|
4392
|
+
/* @__PURE__ */ jsx6(SubHeading, { id: "agent-capabilities", children: "What the Agent Can Do" }),
|
|
4393
|
+
/* @__PURE__ */ jsx6(P, { children: "The agent has deep access to your workspace and can help with:" }),
|
|
4394
|
+
/* @__PURE__ */ jsx6(
|
|
4395
|
+
ParamTable,
|
|
4396
|
+
{
|
|
4397
|
+
title: "Agent capabilities",
|
|
4398
|
+
params: [
|
|
4399
|
+
{ name: "Workspace overview", type: "read", description: "Document stats, recent activity, and schema health at a glance." },
|
|
4400
|
+
{ name: "Schema management", type: "read / draft", description: "List, inspect, create drafts, add fields, and publish schemas." },
|
|
4401
|
+
{ name: "Document exploration", type: "read", description: "Search documents, view extracted fields, and read OCR markdown." },
|
|
4402
|
+
{ name: "Extraction analysis", type: "read", description: "Run status, telemetry (capture/resolve/synthesize rates), and grid stats." },
|
|
4403
|
+
{ name: "Field registry", type: "read", description: "Browse discovered fields, check promotion candidates, and view semantic clusters." },
|
|
4404
|
+
{ name: "Cases & linking", type: "read", description: "List cases, explore document connections, and view anomalies." },
|
|
4405
|
+
{ name: "Quality", type: "read", description: "Benchmark results and regression detection between runs." },
|
|
4406
|
+
{ name: "Delivery", type: "read", description: "Check delivery status and preview binding output." }
|
|
4407
|
+
]
|
|
4408
|
+
}
|
|
4409
|
+
),
|
|
4410
|
+
/* @__PURE__ */ jsx6(SubHeading, { id: "agent-impact", children: "Impact Levels" }),
|
|
4411
|
+
/* @__PURE__ */ jsx6(P, { children: "Every agent action is classified into an impact level that determines how it executes. Higher-impact operations require progressively more explicit confirmation." }),
|
|
4412
|
+
/* @__PURE__ */ jsx6(
|
|
4413
|
+
ParamTable,
|
|
4414
|
+
{
|
|
4415
|
+
title: "Impact levels",
|
|
4416
|
+
params: [
|
|
4417
|
+
{ name: "read", type: "impact", description: "Executed immediately with no side effects. Queries, searches, and inspections." },
|
|
4418
|
+
{ name: "draft_mutation", type: "impact", description: "Creates or modifies drafts. Workshop-first \u2014 nothing is published without confirmation." },
|
|
4419
|
+
{ name: "live_mutation", type: "impact", description: "Requires explicit user confirmation before executing. Affects live data." },
|
|
4420
|
+
{ name: "irreversible", type: "impact", description: 'Requires keyword confirmation (e.g., typing "DELETE"). Cannot be undone.' }
|
|
4421
|
+
]
|
|
4422
|
+
}
|
|
4423
|
+
),
|
|
4424
|
+
/* @__PURE__ */ jsx6(Callout, { children: "The agent always operates workshop-first: schema changes create drafts, not live versions. You review and publish when ready." }),
|
|
4425
|
+
/* @__PURE__ */ jsx6(SubHeading, { id: "agent-dashboard", children: "Dashboard Integration" }),
|
|
4426
|
+
/* @__PURE__ */ jsx6(P, { children: "The home page (click the Talonic logo) shows smart suggested prompts based on your workspace state. Prompts adapt to what is happening: active runs, schema creation opportunities, document types waiting for extraction. The agent input field lets you type any question directly from the dashboard." }),
|
|
3698
4427
|
/* @__PURE__ */ jsx6(SectionHeading, { id: "sources-docs", children: "Inputs & Documents" }),
|
|
3699
4428
|
/* @__PURE__ */ jsx6(P, { children: "Sources are the entry point for all data. Every document belongs to a source \u2014 whether uploaded manually, synced from Google Drive, or ingested via API." }),
|
|
3700
4429
|
/* @__PURE__ */ jsx6(SubHeading, { id: "uploading", children: "Uploading Documents" }),
|
|
@@ -4756,46 +5485,55 @@ var API_NAV_SECTIONS = [
|
|
|
4756
5485
|
{ id: "list-class-versions", label: "List Versions" },
|
|
4757
5486
|
{ id: "get-class-version", label: "Get Version" },
|
|
4758
5487
|
{ id: "list-schema-graph-diffs", label: "List Diffs" },
|
|
4759
|
-
{ id: "approve-diff", label: "Approve Diff" },
|
|
4760
|
-
{ id: "reject-diff", label: "Reject Diff" },
|
|
5488
|
+
{ id: "approve-schema-graph-diff", label: "Approve Diff" },
|
|
5489
|
+
{ id: "reject-schema-graph-diff", label: "Reject Diff" },
|
|
4761
5490
|
{ id: "list-schema-graph-edges", label: "Edges" },
|
|
4762
5491
|
{ id: "list-schema-graph-aliases", label: "Aliases" },
|
|
4763
5492
|
{ id: "visualize-schema-graph", label: "Visualize" }
|
|
4764
5493
|
] },
|
|
4765
5494
|
{ id: "structuring", label: "Structuring", children: [
|
|
5495
|
+
{ id: "structuring-checks", label: "Checks" },
|
|
4766
5496
|
{ id: "list-structuring-checks", label: "List Checks" },
|
|
4767
5497
|
{ id: "create-structuring-check", label: "Create Check" },
|
|
4768
|
-
{ id: "get-structuring-check", label: "Get
|
|
5498
|
+
{ id: "get-structuring-check", label: "Get Check" },
|
|
5499
|
+
{ id: "update-structuring-check", label: "Update Check" },
|
|
5500
|
+
{ id: "delete-structuring-check", label: "Delete Check" },
|
|
5501
|
+
{ id: "structuring-gates", label: "Approval Gates" },
|
|
4769
5502
|
{ id: "list-structuring-gates", label: "List Gates" },
|
|
4770
5503
|
{ id: "create-structuring-gate", label: "Create Gate" },
|
|
4771
|
-
{ id: "get-structuring-gate", label: "Get
|
|
4772
|
-
{ id: "gate
|
|
4773
|
-
{ id: "
|
|
4774
|
-
{ id: "pending-approvals", label: "Pending Approvals" },
|
|
4775
|
-
{ id: "approve-reject-result", label: "Approve / Reject Result" },
|
|
4776
|
-
{ id: "trigger-delivery", label: "Trigger Delivery" }
|
|
5504
|
+
{ id: "get-structuring-gate", label: "Get Gate" },
|
|
5505
|
+
{ id: "update-structuring-gate", label: "Update Gate" },
|
|
5506
|
+
{ id: "delete-structuring-gate", label: "Delete Gate" }
|
|
4777
5507
|
] },
|
|
4778
5508
|
{ id: "telemetry", label: "Telemetry", children: [
|
|
4779
|
-
{ id: "schema-
|
|
4780
|
-
{ id: "schema-
|
|
4781
|
-
{ id: "schema-
|
|
4782
|
-
{ id: "run-
|
|
5509
|
+
{ id: "telemetry-schema-summary", label: "Schema Summary" },
|
|
5510
|
+
{ id: "telemetry-schema-trend", label: "Schema Trend" },
|
|
5511
|
+
{ id: "telemetry-schema-fields", label: "Schema Fields" },
|
|
5512
|
+
{ id: "telemetry-run-summary", label: "Run Summary" }
|
|
4783
5513
|
] },
|
|
4784
5514
|
{ id: "validation", label: "Validation", children: [
|
|
4785
|
-
{ id: "
|
|
4786
|
-
{ id: "
|
|
4787
|
-
{ id: "
|
|
4788
|
-
{ id: "
|
|
4789
|
-
{ id: "
|
|
4790
|
-
{ id: "
|
|
5515
|
+
{ id: "golden-samples", label: "Golden Samples" },
|
|
5516
|
+
{ id: "list-golden-samples", label: "List Golden Samples" },
|
|
5517
|
+
{ id: "get-golden-sample", label: "Get Golden Sample" },
|
|
5518
|
+
{ id: "delete-golden-sample", label: "Delete Golden Sample" },
|
|
5519
|
+
{ id: "validation-runs", label: "Validation Runs" },
|
|
5520
|
+
{ id: "list-validation-runs", label: "List Runs" },
|
|
5521
|
+
{ id: "create-validation-run", label: "Create Run" },
|
|
5522
|
+
{ id: "get-validation-run", label: "Get Run" },
|
|
5523
|
+
{ id: "get-validation-results", label: "Results" },
|
|
5524
|
+
{ id: "delete-validation-run", label: "Delete Run" }
|
|
4791
5525
|
] },
|
|
4792
5526
|
{ id: "credits", label: "Credits", children: [
|
|
4793
5527
|
{ id: "credits-balance", label: "Balance" },
|
|
4794
5528
|
{ id: "credits-history", label: "History" },
|
|
4795
|
-
{ id: "credits-usage", label: "Usage Summary" },
|
|
4796
|
-
{ id: "credits-usage
|
|
5529
|
+
{ id: "credits-usage-summary", label: "Usage Summary" },
|
|
5530
|
+
{ id: "credits-daily-usage", label: "Daily Usage" },
|
|
4797
5531
|
{ id: "credits-usage-log", label: "Usage Log" }
|
|
4798
5532
|
] },
|
|
5533
|
+
{ id: "agent", label: "Agent", children: [
|
|
5534
|
+
{ id: "agent-context", label: "Get Workspace Context" },
|
|
5535
|
+
{ id: "agent-tools", label: "List Agent Tools" }
|
|
5536
|
+
] },
|
|
4799
5537
|
{ id: "errors-rate-limits", label: "Errors & Rate Limits", children: [
|
|
4800
5538
|
{ id: "error-format", label: "Error Format" },
|
|
4801
5539
|
{ id: "error-codes", label: "Error Codes" },
|
|
@@ -4809,6 +5547,11 @@ var PLATFORM_NAV_SECTIONS = [
|
|
|
4809
5547
|
{ id: "platform-flow", label: "Platform Flow" },
|
|
4810
5548
|
{ id: "getting-started", label: "Getting Started" }
|
|
4811
5549
|
] },
|
|
5550
|
+
{ id: "agent", label: "AI Agent", children: [
|
|
5551
|
+
{ id: "agent-capabilities", label: "Capabilities" },
|
|
5552
|
+
{ id: "agent-impact", label: "Impact Levels" },
|
|
5553
|
+
{ id: "agent-dashboard", label: "Dashboard" }
|
|
5554
|
+
] },
|
|
4812
5555
|
{ id: "sources-docs", label: "Inputs & Documents", children: [
|
|
4813
5556
|
{ id: "uploading", label: "Uploading Documents" },
|
|
4814
5557
|
{ id: "supported-formats", label: "Supported Formats" },
|
|
@@ -4902,10 +5645,12 @@ var API_SECTION_META = [
|
|
|
4902
5645
|
{ id: "structuring", title: "Structuring API", description: "Validation checks CRUD, approval gates with configurable rules, result check outcomes, pending approvals queue, and delivery triggers." },
|
|
4903
5646
|
{ id: "validation", title: "Validation API", description: "Golden sample management and validation runs for measuring extraction accuracy against ground truth datasets." },
|
|
4904
5647
|
{ id: "credits", title: "Credits API", description: "Credit balance, transaction history, aggregate usage summaries, daily usage breakdown, and per-request usage log." },
|
|
5648
|
+
{ id: "agent", title: "Agent API", description: "Workspace context snapshot and agent tool discovery endpoints for programmatic access to embedded AI assistant capabilities." },
|
|
4905
5649
|
{ id: "errors-rate-limits", title: "Errors & Rate Limits", description: "Error response format, error codes, rate limit tiers by plan, and rate limit headers." }
|
|
4906
5650
|
];
|
|
4907
5651
|
var PLATFORM_SECTION_META = [
|
|
4908
5652
|
{ id: "overview", title: "Platform Overview", description: "Core concepts, platform flow, and getting started guide for the Talonic document structuring platform." },
|
|
5653
|
+
{ id: "agent", title: "AI Agent", description: "Embedded AI assistant accessible via Cmd+I from any page. Inspects schemas, searches documents, analyzes extraction quality, explores cases, and builds schemas through natural language." },
|
|
4909
5654
|
{ id: "sources-docs", title: "Inputs & Documents", description: "Upload documents via drag-and-drop, API, or connectors. 25+ formats supported with automatic OCR and classification." },
|
|
4910
5655
|
{ id: "field-intelligence", title: "Field Intelligence", description: "Unified field registry with tier system, semantic clustering, and AI-synthesized master extraction instructions." },
|
|
4911
5656
|
{ id: "schemas-templates", title: "Schemas & Templates", description: "AI-generated schemas per document type and user-defined templates with field matching, reference tables, and versioning." },
|
|
@@ -4919,367 +5664,6 @@ var PLATFORM_SECTION_META = [
|
|
|
4919
5664
|
{ id: "api-webhooks", title: "API & Webhooks", description: "API key management, public REST API overview, and webhook configuration for event-driven integrations." },
|
|
4920
5665
|
{ id: "team-admin", title: "Team & Admin", description: "Role-based access control, credit usage tracking, admin panel, and keyboard shortcuts." }
|
|
4921
5666
|
];
|
|
4922
|
-
var OPENAPI_SPEC = {
|
|
4923
|
-
openapi: "3.1.0",
|
|
4924
|
-
info: {
|
|
4925
|
-
title: "Talonic API",
|
|
4926
|
-
version: "1.0.0",
|
|
4927
|
-
description: "Extract any document into schema-validated data with a single API call.",
|
|
4928
|
-
contact: { url: "https://talonic.com" }
|
|
4929
|
-
},
|
|
4930
|
-
servers: [{ url: "https://api.talonic.com", description: "Production" }],
|
|
4931
|
-
security: [{ bearerAuth: [] }],
|
|
4932
|
-
components: {
|
|
4933
|
-
securitySchemes: {
|
|
4934
|
-
bearerAuth: { type: "http", scheme: "bearer", description: "API key with tlnc_ prefix" }
|
|
4935
|
-
}
|
|
4936
|
-
},
|
|
4937
|
-
paths: {
|
|
4938
|
-
"/v1/extract": {
|
|
4939
|
-
post: {
|
|
4940
|
-
operationId: "extract",
|
|
4941
|
-
summary: "Extract structured data from a document",
|
|
4942
|
-
description: "Accepts the document as a file upload or URL, along with a schema definition. Returns structured data matching your schema with per-field confidence scores.",
|
|
4943
|
-
tags: ["Extract"],
|
|
4944
|
-
requestBody: { content: { "multipart/form-data": { schema: { type: "object", properties: {
|
|
4945
|
-
file: { type: "string", format: "binary", description: "The document file (PDF, DOCX, PNG, JPG, XLSX, CSV, TXT, MD)" },
|
|
4946
|
-
file_url: { type: "string", description: "URL to fetch the document from" },
|
|
4947
|
-
document_id: { type: "string", description: "Re-extract an existing document by ID" },
|
|
4948
|
-
schema: { type: "object", description: "Target schema definition (JSON Schema, simplified fields, or flat key-type map)" },
|
|
4949
|
-
schema_id: { type: "string", description: "Use a previously saved schema by ID" },
|
|
4950
|
-
instructions: { type: "string", description: "Natural language extraction instructions" },
|
|
4951
|
-
include_markdown: { type: "string", description: 'Set to "true" to include OCR markdown in response' }
|
|
4952
|
-
} } } } },
|
|
4953
|
-
responses: { "200": { description: "Extraction result with data, confidence, and metadata" }, "202": { description: "Async job accepted (when async=true)" } }
|
|
4954
|
-
}
|
|
4955
|
-
},
|
|
4956
|
-
"/v1/documents": {
|
|
4957
|
-
get: {
|
|
4958
|
-
operationId: "listDocuments",
|
|
4959
|
-
summary: "List all documents",
|
|
4960
|
-
tags: ["Documents"],
|
|
4961
|
-
parameters: [
|
|
4962
|
-
{ name: "source_id", in: "query", schema: { type: "string" } },
|
|
4963
|
-
{ name: "status", in: "query", schema: { type: "string", enum: ["pending", "processing", "completed", "error"] } },
|
|
4964
|
-
{ name: "page", in: "query", schema: { type: "integer", default: 1 } },
|
|
4965
|
-
{ name: "per_page", in: "query", schema: { type: "integer", default: 50 } }
|
|
4966
|
-
],
|
|
4967
|
-
responses: { "200": { description: "Paginated list of documents" } }
|
|
4968
|
-
}
|
|
4969
|
-
},
|
|
4970
|
-
"/v1/documents/{id}": {
|
|
4971
|
-
get: { operationId: "getDocument", summary: "Get a document", tags: ["Documents"], parameters: [{ name: "id", in: "path", required: true, schema: { type: "string" } }], responses: { "200": { description: "Document with full metadata" } } },
|
|
4972
|
-
delete: { operationId: "deleteDocument", summary: "Delete a document and all extractions", tags: ["Documents"], parameters: [{ name: "id", in: "path", required: true, schema: { type: "string" } }], responses: { "200": { description: "Deletion confirmation" } } }
|
|
4973
|
-
},
|
|
4974
|
-
"/v1/documents/{id}/markdown": {
|
|
4975
|
-
get: { operationId: "getDocumentMarkdown", summary: "Get OCR markdown of a document", tags: ["Documents"], parameters: [{ name: "id", in: "path", required: true, schema: { type: "string" } }], responses: { "200": { description: "Document markdown content" } } }
|
|
4976
|
-
},
|
|
4977
|
-
"/v1/extractions": {
|
|
4978
|
-
get: { operationId: "listExtractions", summary: "List extractions", tags: ["Extractions"], parameters: [
|
|
4979
|
-
{ name: "document_id", in: "query", schema: { type: "string" } },
|
|
4980
|
-
{ name: "schema_id", in: "query", schema: { type: "string" } },
|
|
4981
|
-
{ name: "page", in: "query", schema: { type: "integer", default: 1 } }
|
|
4982
|
-
], responses: { "200": { description: "Paginated list of extractions" } } }
|
|
4983
|
-
},
|
|
4984
|
-
"/v1/extractions/{id}": {
|
|
4985
|
-
get: { operationId: "getExtraction", summary: "Get extraction result", tags: ["Extractions"], parameters: [{ name: "id", in: "path", required: true, schema: { type: "string" } }], responses: { "200": { description: "Full extraction with data, confidence, metadata" } } }
|
|
4986
|
-
},
|
|
4987
|
-
"/v1/extractions/{id}/data": {
|
|
4988
|
-
get: { operationId: "getExtractionData", summary: "Get extracted data (JSON or CSV)", tags: ["Extractions"], parameters: [{ name: "id", in: "path", required: true, schema: { type: "string" } }, { name: "format", in: "query", schema: { type: "string", default: "json" } }], responses: { "200": { description: "Extracted data" } } },
|
|
4989
|
-
patch: { operationId: "correctFields", summary: "Correct extraction fields", tags: ["Extractions"], parameters: [{ name: "id", in: "path", required: true, schema: { type: "string" } }], responses: { "200": { description: "Updated extraction" } } }
|
|
4990
|
-
},
|
|
4991
|
-
"/v1/schemas": {
|
|
4992
|
-
get: { operationId: "listSchemas", summary: "List all schemas", tags: ["Schemas"], responses: { "200": { description: "List of schemas" } } },
|
|
4993
|
-
post: { operationId: "createSchema", summary: "Create a new schema", tags: ["Schemas"], responses: { "201": { description: "Created schema" } } }
|
|
4994
|
-
},
|
|
4995
|
-
"/v1/schemas/{id}": {
|
|
4996
|
-
get: { operationId: "getSchema", summary: "Get a schema", tags: ["Schemas"], parameters: [{ name: "id", in: "path", required: true, schema: { type: "string" } }], responses: { "200": { description: "Schema with definition" } } },
|
|
4997
|
-
put: { operationId: "updateSchema", summary: "Update a schema", tags: ["Schemas"], parameters: [{ name: "id", in: "path", required: true, schema: { type: "string" } }], responses: { "200": { description: "Updated schema" } } },
|
|
4998
|
-
delete: { operationId: "deleteSchema", summary: "Delete a schema", tags: ["Schemas"], parameters: [{ name: "id", in: "path", required: true, schema: { type: "string" } }], responses: { "200": { description: "Deletion confirmation" } } }
|
|
4999
|
-
},
|
|
5000
|
-
"/v1/jobs": {
|
|
5001
|
-
get: { operationId: "listJobs", summary: "List all jobs", tags: ["Jobs"], responses: { "200": { description: "Paginated list of jobs" } } }
|
|
5002
|
-
},
|
|
5003
|
-
"/v1/jobs/{id}": {
|
|
5004
|
-
get: { operationId: "getJob", summary: "Get job status and progress", tags: ["Jobs"], parameters: [{ name: "id", in: "path", required: true, schema: { type: "string" } }], responses: { "200": { description: "Job with progress and grid stats" } } }
|
|
5005
|
-
},
|
|
5006
|
-
"/v1/jobs/{id}/cancel": {
|
|
5007
|
-
post: { operationId: "cancelJob", summary: "Cancel a running job", tags: ["Jobs"], parameters: [{ name: "id", in: "path", required: true, schema: { type: "string" } }], responses: { "200": { description: "Cancelled job" } } }
|
|
5008
|
-
},
|
|
5009
|
-
"/v1/sources": {
|
|
5010
|
-
get: { operationId: "listSources", summary: "List all sources", tags: ["Sources"], responses: { "200": { description: "List of sources" } } },
|
|
5011
|
-
post: { operationId: "createSource", summary: "Create a new source (returns API key)", tags: ["Sources"], responses: { "201": { description: "Created source with API key" } } }
|
|
5012
|
-
},
|
|
5013
|
-
"/v1/sources/{id}": {
|
|
5014
|
-
get: { operationId: "getSource", summary: "Get source details", tags: ["Sources"], parameters: [{ name: "id", in: "path", required: true, schema: { type: "string" } }], responses: { "200": { description: "Source details" } } },
|
|
5015
|
-
patch: { operationId: "updateSource", summary: "Update a source", tags: ["Sources"], parameters: [{ name: "id", in: "path", required: true, schema: { type: "string" } }], responses: { "200": { description: "Updated source" } } },
|
|
5016
|
-
delete: { operationId: "deleteSource", summary: "Delete a source", tags: ["Sources"], parameters: [{ name: "id", in: "path", required: true, schema: { type: "string" } }], responses: { "200": { description: "Deletion confirmation" } } }
|
|
5017
|
-
},
|
|
5018
|
-
"/v1/sources/{id}/documents": {
|
|
5019
|
-
get: { operationId: "listSourceDocuments", summary: "List documents in a source", tags: ["Sources"], parameters: [{ name: "id", in: "path", required: true, schema: { type: "string" } }], responses: { "200": { description: "Paginated documents" } } },
|
|
5020
|
-
post: { operationId: "ingestDocument", summary: "Ingest a document into a source", tags: ["Sources"], parameters: [{ name: "id", in: "path", required: true, schema: { type: "string" } }], responses: { "200": { description: "Ingested document" } } }
|
|
5021
|
-
},
|
|
5022
|
-
// Resolutions
|
|
5023
|
-
"/v1/resolutions": {
|
|
5024
|
-
get: { operationId: "listResolutions", summary: "List resolution runs", tags: ["Resolutions"], responses: { "200": { description: "Paginated list of resolution runs" } } },
|
|
5025
|
-
post: { operationId: "createResolution", summary: "Create a resolution run", tags: ["Resolutions"], responses: { "201": { description: "Resolution run created" } } }
|
|
5026
|
-
},
|
|
5027
|
-
"/v1/resolutions/{id}": {
|
|
5028
|
-
get: { operationId: "getResolution", summary: "Get a resolution run", tags: ["Resolutions"], parameters: [{ name: "id", in: "path", required: true, schema: { type: "string" } }], responses: { "200": { description: "Resolution run detail" } } },
|
|
5029
|
-
delete: { operationId: "deleteResolution", summary: "Delete a resolution run", tags: ["Resolutions"], parameters: [{ name: "id", in: "path", required: true, schema: { type: "string" } }], responses: { "200": { description: "Resolution run deleted" } } }
|
|
5030
|
-
},
|
|
5031
|
-
"/v1/resolutions/{id}/results": {
|
|
5032
|
-
get: { operationId: "getResolutionResults", summary: "Get resolution run results", tags: ["Resolutions"], parameters: [{ name: "id", in: "path", required: true, schema: { type: "string" } }], responses: { "200": { description: "Resolution results" } } }
|
|
5033
|
-
},
|
|
5034
|
-
"/v1/resolutions/{id}/execute": {
|
|
5035
|
-
post: { operationId: "executeResolution", summary: "Execute a resolution run", tags: ["Resolutions"], parameters: [{ name: "id", in: "path", required: true, schema: { type: "string" } }], responses: { "200": { description: "Resolution execution started" } } }
|
|
5036
|
-
},
|
|
5037
|
-
// Linking
|
|
5038
|
-
"/v1/linking/link-keys": {
|
|
5039
|
-
get: { operationId: "listLinkKeys", summary: "List link keys", tags: ["Linking"], responses: { "200": { description: "List of link keys" } } }
|
|
5040
|
-
},
|
|
5041
|
-
"/v1/linking/documents/{id}/links": {
|
|
5042
|
-
get: { operationId: "getDocumentLinks", summary: "Get links for a document", tags: ["Linking"], parameters: [{ name: "id", in: "path", required: true, schema: { type: "string" } }], responses: { "200": { description: "Document links" } } }
|
|
5043
|
-
},
|
|
5044
|
-
"/v1/linking/graph": {
|
|
5045
|
-
get: { operationId: "getLinkingGraph", summary: "Get the full linking graph", tags: ["Linking"], responses: { "200": { description: "Full linking graph" } } }
|
|
5046
|
-
},
|
|
5047
|
-
"/v1/linking/graph/documents/{id}": {
|
|
5048
|
-
get: { operationId: "getDocumentGraph", summary: "Get graph neighbourhood for a document", tags: ["Linking"], parameters: [{ name: "id", in: "path", required: true, schema: { type: "string" } }], responses: { "200": { description: "Document-centric subgraph" } } }
|
|
5049
|
-
},
|
|
5050
|
-
"/v1/linking/classify": {
|
|
5051
|
-
post: { operationId: "classifyLinkKeys", summary: "Classify link keys", tags: ["Linking"], responses: { "200": { description: "Classification results" } } }
|
|
5052
|
-
},
|
|
5053
|
-
"/v1/linking/backfill": {
|
|
5054
|
-
post: { operationId: "backfillLinking", summary: "Backfill linking data", tags: ["Linking"], responses: { "202": { description: "Backfill started" } } }
|
|
5055
|
-
},
|
|
5056
|
-
"/v1/linking/backfill/progress": {
|
|
5057
|
-
get: { operationId: "getBackfillProgress", summary: "Get backfill progress", tags: ["Linking"], responses: { "200": { description: "Backfill progress" } } }
|
|
5058
|
-
},
|
|
5059
|
-
"/v1/linking/document-case-map": {
|
|
5060
|
-
get: { operationId: "getDocumentCaseMap", summary: "Get document-to-case mapping", tags: ["Linking"], responses: { "200": { description: "Document-case mapping" } } }
|
|
5061
|
-
},
|
|
5062
|
-
// N-Shot
|
|
5063
|
-
"/v1/jobs/runs/{runId}/nshot/summary": {
|
|
5064
|
-
get: { operationId: "getNshotSummary", summary: "Get N-Shot summary for a run", tags: ["N-Shot"], parameters: [{ name: "runId", in: "path", required: true, schema: { type: "string" } }], responses: { "200": { description: "N-Shot summary" } } }
|
|
5065
|
-
},
|
|
5066
|
-
"/v1/jobs/runs/{runId}/nshot/comparisons": {
|
|
5067
|
-
get: { operationId: "listNshotComparisons", summary: "List N-Shot comparisons", tags: ["N-Shot"], parameters: [{ name: "runId", in: "path", required: true, schema: { type: "string" } }], responses: { "200": { description: "List of comparisons" } } }
|
|
5068
|
-
},
|
|
5069
|
-
"/v1/jobs/runs/{runId}/nshot/comparison": {
|
|
5070
|
-
get: { operationId: "getNshotComparison", summary: "Get a specific N-Shot comparison", tags: ["N-Shot"], parameters: [{ name: "runId", in: "path", required: true, schema: { type: "string" } }], responses: { "200": { description: "Single comparison result" } } }
|
|
5071
|
-
},
|
|
5072
|
-
"/v1/jobs/runs/{runId}/nshot/override": {
|
|
5073
|
-
post: { operationId: "nshotOverride", summary: "Override an N-Shot value", tags: ["N-Shot"], parameters: [{ name: "runId", in: "path", required: true, schema: { type: "string" } }], responses: { "200": { description: "Override applied" } } }
|
|
5074
|
-
},
|
|
5075
|
-
"/v1/jobs/runs/{runId}/nshot/judge-decision": {
|
|
5076
|
-
post: { operationId: "nshotJudgeDecision", summary: "Submit a judge decision for N-Shot", tags: ["N-Shot"], parameters: [{ name: "runId", in: "path", required: true, schema: { type: "string" } }], responses: { "200": { description: "Judge decision recorded" } } }
|
|
5077
|
-
},
|
|
5078
|
-
// Schema Graph
|
|
5079
|
-
"/v1/schema-graph/classes": {
|
|
5080
|
-
get: { operationId: "listSchemaGraphClasses", summary: "List schema graph classes", tags: ["Schema Graph"], responses: { "200": { description: "List of schema graph classes" } } }
|
|
5081
|
-
},
|
|
5082
|
-
"/v1/schema-graph/classes/{id}": {
|
|
5083
|
-
get: { operationId: "getSchemaGraphClass", summary: "Get a schema graph class", tags: ["Schema Graph"], parameters: [{ name: "id", in: "path", required: true, schema: { type: "string" } }], responses: { "200": { description: "Schema graph class detail" } } }
|
|
5084
|
-
},
|
|
5085
|
-
"/v1/schema-graph/classes/{id}/versions": {
|
|
5086
|
-
get: { operationId: "listSchemaGraphClassVersions", summary: "List versions of a schema graph class", tags: ["Schema Graph"], parameters: [{ name: "id", in: "path", required: true, schema: { type: "string" } }], responses: { "200": { description: "List of class versions" } } }
|
|
5087
|
-
},
|
|
5088
|
-
"/v1/schema-graph/classes/{id}/versions/{version}": {
|
|
5089
|
-
get: { operationId: "getSchemaGraphClassVersion", summary: "Get a specific class version", tags: ["Schema Graph"], parameters: [{ name: "id", in: "path", required: true, schema: { type: "string" } }, { name: "version", in: "path", required: true, schema: { type: "integer" } }], responses: { "200": { description: "Class version detail" } } }
|
|
5090
|
-
},
|
|
5091
|
-
"/v1/schema-graph/diffs": {
|
|
5092
|
-
get: { operationId: "listSchemaGraphDiffs", summary: "List schema graph diffs", tags: ["Schema Graph"], responses: { "200": { description: "List of diffs" } } }
|
|
5093
|
-
},
|
|
5094
|
-
"/v1/schema-graph/diffs/{id}/approve": {
|
|
5095
|
-
post: { operationId: "approveSchemaGraphDiff", summary: "Approve a schema graph diff", tags: ["Schema Graph"], parameters: [{ name: "id", in: "path", required: true, schema: { type: "string" } }], responses: { "200": { description: "Diff approved" } } }
|
|
5096
|
-
},
|
|
5097
|
-
"/v1/schema-graph/diffs/{id}/reject": {
|
|
5098
|
-
post: { operationId: "rejectSchemaGraphDiff", summary: "Reject a schema graph diff", tags: ["Schema Graph"], parameters: [{ name: "id", in: "path", required: true, schema: { type: "string" } }], responses: { "200": { description: "Diff rejected" } } }
|
|
5099
|
-
},
|
|
5100
|
-
"/v1/schema-graph/edges": {
|
|
5101
|
-
get: { operationId: "listSchemaGraphEdges", summary: "List schema graph edges", tags: ["Schema Graph"], responses: { "200": { description: "List of edges" } } }
|
|
5102
|
-
},
|
|
5103
|
-
"/v1/schema-graph/aliases": {
|
|
5104
|
-
get: { operationId: "listSchemaGraphAliases", summary: "List schema graph aliases", tags: ["Schema Graph"], responses: { "200": { description: "List of aliases" } } }
|
|
5105
|
-
},
|
|
5106
|
-
"/v1/schema-graph/visualize": {
|
|
5107
|
-
get: { operationId: "visualizeSchemaGraph", summary: "Get schema graph visualization data", tags: ["Schema Graph"], responses: { "200": { description: "Visualization data" } } }
|
|
5108
|
-
},
|
|
5109
|
-
// Structuring
|
|
5110
|
-
"/v1/structuring/checks": {
|
|
5111
|
-
get: { operationId: "listStructuringChecks", summary: "List structuring checks", tags: ["Structuring"], responses: { "200": { description: "Paginated list of structuring checks" } } },
|
|
5112
|
-
post: { operationId: "createStructuringCheck", summary: "Create a structuring check", tags: ["Structuring"], responses: { "201": { description: "Structuring check created" } } }
|
|
5113
|
-
},
|
|
5114
|
-
"/v1/structuring/checks/{id}": {
|
|
5115
|
-
get: { operationId: "getStructuringCheck", summary: "Get a structuring check", tags: ["Structuring"], parameters: [{ name: "id", in: "path", required: true, schema: { type: "string" } }], responses: { "200": { description: "Structuring check detail" } } },
|
|
5116
|
-
put: { operationId: "updateStructuringCheck", summary: "Update a structuring check", tags: ["Structuring"], parameters: [{ name: "id", in: "path", required: true, schema: { type: "string" } }], responses: { "200": { description: "Structuring check updated" } } },
|
|
5117
|
-
delete: { operationId: "deleteStructuringCheck", summary: "Delete a structuring check", tags: ["Structuring"], parameters: [{ name: "id", in: "path", required: true, schema: { type: "string" } }], responses: { "200": { description: "Structuring check deleted" } } }
|
|
5118
|
-
},
|
|
5119
|
-
"/v1/structuring/gates": {
|
|
5120
|
-
get: { operationId: "listStructuringGates", summary: "List approval gates", tags: ["Structuring"], responses: { "200": { description: "Paginated list of approval gates" } } },
|
|
5121
|
-
post: { operationId: "createStructuringGate", summary: "Create an approval gate", tags: ["Structuring"], responses: { "201": { description: "Approval gate created" } } }
|
|
5122
|
-
},
|
|
5123
|
-
"/v1/structuring/gates/{id}": {
|
|
5124
|
-
get: { operationId: "getStructuringGate", summary: "Get an approval gate", tags: ["Structuring"], parameters: [{ name: "id", in: "path", required: true, schema: { type: "string" } }], responses: { "200": { description: "Approval gate detail" } } },
|
|
5125
|
-
put: { operationId: "updateStructuringGate", summary: "Update an approval gate", tags: ["Structuring"], parameters: [{ name: "id", in: "path", required: true, schema: { type: "string" } }], responses: { "200": { description: "Approval gate updated" } } },
|
|
5126
|
-
delete: { operationId: "deleteStructuringGate", summary: "Delete an approval gate", tags: ["Structuring"], parameters: [{ name: "id", in: "path", required: true, schema: { type: "string" } }], responses: { "200": { description: "Approval gate deleted" } } }
|
|
5127
|
-
},
|
|
5128
|
-
"/v1/structuring/gates/{id}/rules": {
|
|
5129
|
-
post: { operationId: "addStructuringGateRule", summary: "Add a rule to an approval gate", tags: ["Structuring"], parameters: [{ name: "id", in: "path", required: true, schema: { type: "string" } }], responses: { "201": { description: "Rule added" } } },
|
|
5130
|
-
delete: { operationId: "deleteStructuringGateRule", summary: "Remove a rule from an approval gate", tags: ["Structuring"], parameters: [{ name: "id", in: "path", required: true, schema: { type: "string" } }], responses: { "200": { description: "Rule removed" } } }
|
|
5131
|
-
},
|
|
5132
|
-
"/v1/structuring/results/{id}/checks": {
|
|
5133
|
-
get: { operationId: "getStructuringResultChecks", summary: "Get check results for a structuring result", tags: ["Structuring"], parameters: [{ name: "id", in: "path", required: true, schema: { type: "string" } }], responses: { "200": { description: "Check results" } } }
|
|
5134
|
-
},
|
|
5135
|
-
"/v1/structuring/approvals/pending": {
|
|
5136
|
-
get: { operationId: "listPendingApprovals", summary: "List pending approvals", tags: ["Structuring"], responses: { "200": { description: "Paginated list of pending approvals" } } }
|
|
5137
|
-
},
|
|
5138
|
-
"/v1/structuring/approvals/{id}/approve": {
|
|
5139
|
-
post: { operationId: "approveStructuringResult", summary: "Approve a structuring result", tags: ["Structuring"], parameters: [{ name: "id", in: "path", required: true, schema: { type: "string" } }], responses: { "200": { description: "Result approved" } } }
|
|
5140
|
-
},
|
|
5141
|
-
"/v1/structuring/approvals/{id}/reject": {
|
|
5142
|
-
post: { operationId: "rejectStructuringResult", summary: "Reject a structuring result", tags: ["Structuring"], parameters: [{ name: "id", in: "path", required: true, schema: { type: "string" } }], responses: { "200": { description: "Result rejected" } } }
|
|
5143
|
-
},
|
|
5144
|
-
"/v1/structuring/delivery/{runId}": {
|
|
5145
|
-
post: { operationId: "triggerStructuringDelivery", summary: "Trigger delivery for a structuring run", tags: ["Structuring"], parameters: [{ name: "runId", in: "path", required: true, schema: { type: "string" } }], responses: { "200": { description: "Delivery triggered" } } }
|
|
5146
|
-
},
|
|
5147
|
-
// Telemetry
|
|
5148
|
-
"/v1/telemetry/schemas/{id}/summary": {
|
|
5149
|
-
get: { operationId: "getTelemetrySchemaSummary", summary: "Get telemetry summary for a schema", tags: ["Telemetry"], parameters: [{ name: "id", in: "path", required: true, schema: { type: "string" } }], responses: { "200": { description: "Schema telemetry summary" } } }
|
|
5150
|
-
},
|
|
5151
|
-
"/v1/telemetry/schemas/{id}/trend": {
|
|
5152
|
-
get: { operationId: "getTelemetrySchemaTrend", summary: "Get telemetry trend for a schema", tags: ["Telemetry"], parameters: [{ name: "id", in: "path", required: true, schema: { type: "string" } }], responses: { "200": { description: "Schema telemetry trend" } } }
|
|
5153
|
-
},
|
|
5154
|
-
"/v1/telemetry/schemas/{id}/fields": {
|
|
5155
|
-
get: { operationId: "getTelemetrySchemaFields", summary: "Get per-field telemetry for a schema", tags: ["Telemetry"], parameters: [{ name: "id", in: "path", required: true, schema: { type: "string" } }], responses: { "200": { description: "Per-field telemetry" } } }
|
|
5156
|
-
},
|
|
5157
|
-
"/v1/telemetry/runs/{id}/summary": {
|
|
5158
|
-
get: { operationId: "getTelemetryRunSummary", summary: "Get telemetry summary for a run", tags: ["Telemetry"], parameters: [{ name: "id", in: "path", required: true, schema: { type: "string" } }], responses: { "200": { description: "Run telemetry summary" } } }
|
|
5159
|
-
},
|
|
5160
|
-
// Validation
|
|
5161
|
-
"/v1/validation/ground-truth": {
|
|
5162
|
-
get: { operationId: "listGroundTruths", summary: "List golden samples", tags: ["Validation"], responses: { "200": { description: "Paginated list of golden samples" } } }
|
|
5163
|
-
},
|
|
5164
|
-
"/v1/validation/ground-truth/{id}": {
|
|
5165
|
-
get: { operationId: "getGroundTruth", summary: "Get a golden sample", tags: ["Validation"], parameters: [{ name: "id", in: "path", required: true, schema: { type: "string" } }], responses: { "200": { description: "Golden sample detail" } } },
|
|
5166
|
-
delete: { operationId: "deleteGroundTruth", summary: "Delete a golden sample", tags: ["Validation"], parameters: [{ name: "id", in: "path", required: true, schema: { type: "string" } }], responses: { "200": { description: "Golden sample deleted" } } }
|
|
5167
|
-
},
|
|
5168
|
-
"/v1/validation/runs": {
|
|
5169
|
-
get: { operationId: "listValidationRuns", summary: "List validation runs", tags: ["Validation"], responses: { "200": { description: "Paginated list of validation runs" } } },
|
|
5170
|
-
post: { operationId: "createValidationRun", summary: "Create a validation run", tags: ["Validation"], responses: { "201": { description: "Validation run created" } } }
|
|
5171
|
-
},
|
|
5172
|
-
"/v1/validation/runs/{id}": {
|
|
5173
|
-
get: { operationId: "getValidationRun", summary: "Get a validation run", tags: ["Validation"], parameters: [{ name: "id", in: "path", required: true, schema: { type: "string" } }], responses: { "200": { description: "Validation run detail" } } },
|
|
5174
|
-
delete: { operationId: "deleteValidationRun", summary: "Delete a validation run", tags: ["Validation"], parameters: [{ name: "id", in: "path", required: true, schema: { type: "string" } }], responses: { "200": { description: "Validation run deleted" } } }
|
|
5175
|
-
},
|
|
5176
|
-
"/v1/validation/runs/{id}/results": {
|
|
5177
|
-
get: { operationId: "getValidationRunResults", summary: "Get validation run results", tags: ["Validation"], parameters: [{ name: "id", in: "path", required: true, schema: { type: "string" } }], responses: { "200": { description: "Validation run results" } } }
|
|
5178
|
-
},
|
|
5179
|
-
// Credits
|
|
5180
|
-
"/v1/credits/balance": {
|
|
5181
|
-
get: { operationId: "getCreditsBalance", summary: "Get credit balance", tags: ["Credits"], responses: { "200": { description: "Credit balance" } } }
|
|
5182
|
-
},
|
|
5183
|
-
"/v1/credits/history": {
|
|
5184
|
-
get: { operationId: "getCreditsHistory", summary: "Get credit history", tags: ["Credits"], responses: { "200": { description: "Paginated credit history" } } }
|
|
5185
|
-
},
|
|
5186
|
-
"/v1/credits/usage": {
|
|
5187
|
-
get: { operationId: "getCreditsUsage", summary: "Get credit usage summary", tags: ["Credits"], responses: { "200": { description: "Credit usage summary" } } }
|
|
5188
|
-
},
|
|
5189
|
-
"/v1/credits/usage/daily": {
|
|
5190
|
-
get: { operationId: "getCreditsUsageDaily", summary: "Get daily credit usage", tags: ["Credits"], responses: { "200": { description: "Daily credit usage" } } }
|
|
5191
|
-
},
|
|
5192
|
-
"/v1/credits/usage/log": {
|
|
5193
|
-
get: { operationId: "getCreditsUsageLog", summary: "Get credit usage log", tags: ["Credits"], responses: { "200": { description: "Paginated usage log" } } }
|
|
5194
|
-
},
|
|
5195
|
-
// Expanded: Cases
|
|
5196
|
-
"/v1/cases/{key}/status": {
|
|
5197
|
-
patch: { operationId: "updateCaseStatus", summary: "Update case status", tags: ["Cases"], parameters: [{ name: "key", in: "path", required: true, schema: { type: "string" } }], responses: { "200": { description: "Case status updated" } } }
|
|
5198
|
-
},
|
|
5199
|
-
"/v1/cases/{key}/edges": {
|
|
5200
|
-
get: { operationId: "getCaseEdges", summary: "Get case edges", tags: ["Cases"], parameters: [{ name: "key", in: "path", required: true, schema: { type: "string" } }], responses: { "200": { description: "Case edges" } } }
|
|
5201
|
-
},
|
|
5202
|
-
"/v1/cases/edges/confirm": {
|
|
5203
|
-
post: { operationId: "confirmCaseEdge", summary: "Confirm a case edge", tags: ["Cases"], responses: { "200": { description: "Edge confirmed" } } }
|
|
5204
|
-
},
|
|
5205
|
-
"/v1/cases/edges/reject": {
|
|
5206
|
-
post: { operationId: "rejectCaseEdge", summary: "Reject a case edge", tags: ["Cases"], responses: { "200": { description: "Edge rejected" } } }
|
|
5207
|
-
},
|
|
5208
|
-
"/v1/cases/{key}/split": {
|
|
5209
|
-
post: { operationId: "splitCase", summary: "Split a case", tags: ["Cases"], parameters: [{ name: "key", in: "path", required: true, schema: { type: "string" } }], responses: { "200": { description: "Case split" } } }
|
|
5210
|
-
},
|
|
5211
|
-
"/v1/cases/{key}/merge": {
|
|
5212
|
-
post: { operationId: "mergeCases", summary: "Merge cases", tags: ["Cases"], parameters: [{ name: "key", in: "path", required: true, schema: { type: "string" } }], responses: { "200": { description: "Cases merged" } } }
|
|
5213
|
-
},
|
|
5214
|
-
"/v1/cases/{key}/completeness": {
|
|
5215
|
-
get: { operationId: "getCaseCompleteness", summary: "Get case completeness", tags: ["Cases"], parameters: [{ name: "key", in: "path", required: true, schema: { type: "string" } }], responses: { "200": { description: "Completeness assessment" } } }
|
|
5216
|
-
},
|
|
5217
|
-
"/v1/cases/{key}/pin": {
|
|
5218
|
-
post: { operationId: "pinCaseDocuments", summary: "Pin documents to a case", tags: ["Cases"], parameters: [{ name: "key", in: "path", required: true, schema: { type: "string" } }], responses: { "200": { description: "Documents pinned" } } }
|
|
5219
|
-
},
|
|
5220
|
-
"/v1/cases/{key}/documents": {
|
|
5221
|
-
delete: { operationId: "removeCaseDocuments", summary: "Remove documents from a case", tags: ["Cases"], parameters: [{ name: "key", in: "path", required: true, schema: { type: "string" } }], responses: { "200": { description: "Documents removed" } } }
|
|
5222
|
-
},
|
|
5223
|
-
// Expanded: Batches
|
|
5224
|
-
"/v1/batches/{id}/sync": {
|
|
5225
|
-
post: { operationId: "syncBatch", summary: "Sync batch status with provider", tags: ["Batches"], parameters: [{ name: "id", in: "path", required: true, schema: { type: "string" } }], responses: { "200": { description: "Batch synced" } } }
|
|
5226
|
-
},
|
|
5227
|
-
"/v1/batches/{id}/cancel": {
|
|
5228
|
-
post: { operationId: "cancelBatch", summary: "Cancel a batch inference run", tags: ["Batches"], parameters: [{ name: "id", in: "path", required: true, schema: { type: "string" } }], responses: { "200": { description: "Batch cancelled" } } }
|
|
5229
|
-
},
|
|
5230
|
-
// Expanded: Matching
|
|
5231
|
-
"/v1/matching/smart-run": {
|
|
5232
|
-
post: { operationId: "triggerSmartMatchingRun", summary: "Trigger a smart matching run", tags: ["Matching"], responses: { "201": { description: "Smart matching run queued" } } }
|
|
5233
|
-
},
|
|
5234
|
-
"/v1/matching/ai-resolve": {
|
|
5235
|
-
post: { operationId: "aiResolveMatching", summary: "AI-resolve ambiguous matches", tags: ["Matching"], responses: { "200": { description: "AI resolution results" } } }
|
|
5236
|
-
},
|
|
5237
|
-
"/v1/matching/strategies": {
|
|
5238
|
-
get: { operationId: "listMatchingStrategies", summary: "List matching strategies", tags: ["Matching"], responses: { "200": { description: "List of matching strategies" } } },
|
|
5239
|
-
post: { operationId: "createMatchingStrategy", summary: "Create a matching strategy", tags: ["Matching"], responses: { "201": { description: "Matching strategy created" } } }
|
|
5240
|
-
},
|
|
5241
|
-
"/v1/matching/strategies/{id}": {
|
|
5242
|
-
get: { operationId: "getMatchingStrategy", summary: "Get a matching strategy", tags: ["Matching"], parameters: [{ name: "id", in: "path", required: true, schema: { type: "string" } }], responses: { "200": { description: "Matching strategy detail" } } },
|
|
5243
|
-
put: { operationId: "updateMatchingStrategy", summary: "Update a matching strategy", tags: ["Matching"], parameters: [{ name: "id", in: "path", required: true, schema: { type: "string" } }], responses: { "200": { description: "Matching strategy updated" } } },
|
|
5244
|
-
delete: { operationId: "deleteMatchingStrategy", summary: "Delete a matching strategy", tags: ["Matching"], parameters: [{ name: "id", in: "path", required: true, schema: { type: "string" } }], responses: { "200": { description: "Matching strategy deleted" } } }
|
|
5245
|
-
},
|
|
5246
|
-
"/v1/matching/runs/{id}/results": {
|
|
5247
|
-
get: { operationId: "getMatchingRunResults", summary: "Get matching run results", tags: ["Matching"], parameters: [{ name: "id", in: "path", required: true, schema: { type: "string" } }], responses: { "200": { description: "Matching run results" } } }
|
|
5248
|
-
},
|
|
5249
|
-
"/v1/matching/runs/{id}/progress": {
|
|
5250
|
-
get: { operationId: "getMatchingRunProgress", summary: "Get matching run progress", tags: ["Matching"], parameters: [{ name: "id", in: "path", required: true, schema: { type: "string" } }], responses: { "200": { description: "Matching run progress" } } }
|
|
5251
|
-
},
|
|
5252
|
-
"/v1/matching/review": {
|
|
5253
|
-
post: { operationId: "submitMatchingReview", summary: "Submit matching review decisions", tags: ["Matching"], responses: { "200": { description: "Review decisions applied" } } }
|
|
5254
|
-
},
|
|
5255
|
-
// Expanded: Review
|
|
5256
|
-
"/v1/review/assign": {
|
|
5257
|
-
post: { operationId: "assignReview", summary: "Assign review records", tags: ["Review"], responses: { "200": { description: "Records assigned" } } }
|
|
5258
|
-
},
|
|
5259
|
-
"/v1/review/stats": {
|
|
5260
|
-
get: { operationId: "getReviewStats", summary: "Get review queue statistics", tags: ["Review"], responses: { "200": { description: "Review statistics" } } }
|
|
5261
|
-
},
|
|
5262
|
-
// Expanded: Quality
|
|
5263
|
-
"/v1/quality/ground-truth/{id}/entries": {
|
|
5264
|
-
get: { operationId: "listGroundTruthEntries", summary: "List ground truth entries", tags: ["Quality"], parameters: [{ name: "id", in: "path", required: true, schema: { type: "string" } }], responses: { "200": { description: "Paginated list of entries" } } },
|
|
5265
|
-
post: { operationId: "createGroundTruthEntry", summary: "Add a ground truth entry", tags: ["Quality"], parameters: [{ name: "id", in: "path", required: true, schema: { type: "string" } }], responses: { "201": { description: "Entry created" } } }
|
|
5266
|
-
},
|
|
5267
|
-
"/v1/quality/ground-truth/{id}/entries/{entryId}": {
|
|
5268
|
-
put: { operationId: "updateGroundTruthEntry", summary: "Update a ground truth entry", tags: ["Quality"], parameters: [{ name: "id", in: "path", required: true, schema: { type: "string" } }, { name: "entryId", in: "path", required: true, schema: { type: "string" } }], responses: { "200": { description: "Entry updated" } } },
|
|
5269
|
-
delete: { operationId: "deleteGroundTruthEntry", summary: "Delete a ground truth entry", tags: ["Quality"], parameters: [{ name: "id", in: "path", required: true, schema: { type: "string" } }, { name: "entryId", in: "path", required: true, schema: { type: "string" } }], responses: { "200": { description: "Entry deleted" } } }
|
|
5270
|
-
},
|
|
5271
|
-
"/v1/quality/benchmarks/{id}/results": {
|
|
5272
|
-
get: { operationId: "getBenchmarkResults", summary: "Get benchmark results", tags: ["Quality"], parameters: [{ name: "id", in: "path", required: true, schema: { type: "string" } }], responses: { "200": { description: "Benchmark results" } } }
|
|
5273
|
-
},
|
|
5274
|
-
"/v1/quality/benchmarks/{id}/compare": {
|
|
5275
|
-
get: { operationId: "compareBenchmarks", summary: "Compare two benchmark runs", tags: ["Quality"], parameters: [{ name: "id", in: "path", required: true, schema: { type: "string" } }], responses: { "200": { description: "Benchmark comparison" } } }
|
|
5276
|
-
},
|
|
5277
|
-
// Expanded: Reference Data
|
|
5278
|
-
"/v1/reference-data/create": {
|
|
5279
|
-
post: { operationId: "createReferenceDataJson", summary: "Create reference data from JSON", tags: ["Reference Data"], responses: { "201": { description: "Reference dataset created" } } }
|
|
5280
|
-
}
|
|
5281
|
-
}
|
|
5282
|
-
};
|
|
5283
5667
|
var API_FAQ = [
|
|
5284
5668
|
{ question: "What file formats does the Talonic API support?", answer: "PDF, DOCX, DOC, PPTX, PPT, XLSX, XLS, XLSM, PNG, JPG, JPEG, GIF, WEBP, TXT, MD, HTML, XML, JSON, EML, CSV, MSG, BMP, and ZIP archives." },
|
|
5285
5669
|
{ question: "How does authentication work?", answer: "All API requests require a Bearer token in the Authorization header. API keys carry the tlnc_ prefix and are scoped to a source. Create and manage keys from Settings \u2192 API Keys." },
|
|
@@ -5460,7 +5844,6 @@ export {
|
|
|
5460
5844
|
LLMS_TXT,
|
|
5461
5845
|
MethodBadge,
|
|
5462
5846
|
MockNavItem,
|
|
5463
|
-
OPENAPI_SPEC,
|
|
5464
5847
|
P,
|
|
5465
5848
|
PLATFORM_FAQ,
|
|
5466
5849
|
PLATFORM_NAV_SECTIONS,
|