@arbidocs/client 0.3.10 → 0.3.13

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 (3) hide show
  1. package/dist/index.d.cts +848 -121
  2. package/dist/index.d.ts +848 -121
  3. package/package.json +1 -1
package/dist/index.d.cts CHANGED
@@ -580,6 +580,7 @@ interface paths {
580
580
  * - parent_ext_id: Links new document as child of parent (version chain)
581
581
  * - wp_type: Document type (source, skill, memory, artifact). Defaults to 'source'.
582
582
  * - tag_ext_id: Links document to a tag
583
+ * - folder: Logical folder path for grouping (URL safe, e.g., 'skills/weather')
583
584
  *
584
585
  * Requires active subscription (paid/trial/dev) if Stripe is configured.
585
586
  */
@@ -889,10 +890,7 @@ interface paths {
889
890
  put?: never;
890
891
  /**
891
892
  * Submit human input to an active agent workflow
892
- * @description Send a user message to an active agent workflow.
893
- *
894
- * Works for both ask_user responses (agent is paused) and interjections
895
- * (agent is actively working). Both use the same unified message queue.
893
+ * @description Send a user response to an active agent workflow (ask_user tool).
896
894
  */
897
895
  post: operations['respond_to_agent'];
898
896
  delete?: never;
@@ -1336,13 +1334,40 @@ interface paths {
1336
1334
  get?: never;
1337
1335
  put?: never;
1338
1336
  /**
1339
- * Query
1340
- * @description Process a user query against documents in a workspace.
1341
- * Performs retrieval augmented generation with streaming response.
1337
+ * Create Response
1338
+ * @description Create a model response (OpenAI Responses API).
1342
1339
  *
1343
- * Requires active subscription (paid/trial/dev) if Stripe is configured.
1340
+ * Supports all combinations of ``stream`` and ``background``:
1341
+ * - ``stream=false, background=false``: blocks, returns completed JSON
1342
+ * - ``stream=true, background=false``: SSE stream (resilient to disconnect)
1343
+ * - ``background=true``: 202 immediately, task runs to completion
1344
+ */
1345
+ post: operations['create_response'];
1346
+ delete?: never;
1347
+ options?: never;
1348
+ head?: never;
1349
+ patch?: never;
1350
+ trace?: never;
1351
+ };
1352
+ '/v1/responses/{response_id}': {
1353
+ parameters: {
1354
+ query?: never;
1355
+ header?: never;
1356
+ path?: never;
1357
+ cookie?: never;
1358
+ };
1359
+ /**
1360
+ * Get Response
1361
+ * @description Retrieve a response by ID.
1362
+ *
1363
+ * Returns the current state with progressive event accumulation:
1364
+ * - ``in_progress`` with accumulated events if the task is still active
1365
+ * - ``completed`` with output and persisted events if in the database
1366
+ * - 404 if not found
1344
1367
  */
1345
- post: operations['query_v1_responses_post'];
1368
+ get: operations['get_response'];
1369
+ put?: never;
1370
+ post?: never;
1346
1371
  delete?: never;
1347
1372
  options?: never;
1348
1373
  head?: never;
@@ -1388,7 +1413,7 @@ interface components {
1388
1413
  * "focus": "Searching for force majeure clauses across the selected contracts.",
1389
1414
  * "detail": [
1390
1415
  * {"tool": "search_documents", "query": "force majeure", "search_mode": "hybrid"},
1391
- * {"tool": "get_table_of_contents", "doc_count": 2}
1416
+ * {"tool": "get_table_of_contents", "doc_count": 2, "doc_ext_ids": ["doc-abc12345", "doc-def67890"]}
1392
1417
  * ]}
1393
1418
  * {"type": "arbi.agent_step", "index": 3,
1394
1419
  * "focus": "Comparing the provisions found in Contract A with Contract B.",
@@ -1401,6 +1426,9 @@ interface components {
1401
1426
  * {"type": "arbi.agent_step", "index": 3, "detail": [
1402
1427
  * {"tool": "personal_agent", "task": "Execute Python code to compute the SHA256 hash..."}
1403
1428
  * ]}
1429
+ * {"type": "arbi.agent_step", "index": 3, "detail": [
1430
+ * {"tool": "read_url", "url": "https://example.com/article"}
1431
+ * ]}
1404
1432
  * {"type": "arbi.agent_step", "index": 4, "step": "evaluation", "detail": [
1405
1433
  * {"statement": "Newton prosecuted 28 coiners", "chunk_ids": ["chunk-abc"]},
1406
1434
  * {"statement": "Counterfeiting was high treason", "chunk_ids": ["chunk-def"]}
@@ -1467,11 +1495,13 @@ interface components {
1467
1495
  /**
1468
1496
  * Human In The Loop
1469
1497
  * @description Enable the ask_user tool, allowing the agent to pause and ask the user a question with options.
1470
- * @default true
1498
+ * @default false
1471
1499
  */
1472
1500
  HUMAN_IN_THE_LOOP: boolean;
1473
1501
  /** @description Web search tool configuration. */
1474
1502
  WEB_SEARCH?: components['schemas']['WebSearchConfig'];
1503
+ /** @description Configuration for the run_code tool (Docker sandbox code execution). */
1504
+ RUN_CODE?: components['schemas']['RunCodeConfig'];
1475
1505
  /**
1476
1506
  * Mcp Tools
1477
1507
  * @description MCP tool names to enable from LiteLLM (e.g. ['read_wiki_contents', 'ask_question']).
@@ -1502,12 +1532,42 @@ interface components {
1502
1532
  * @default false
1503
1533
  */
1504
1534
  VISION_ENABLED: boolean;
1535
+ /**
1536
+ * Doc Index Compact Threshold
1537
+ * @description When the workspace has more documents than this, omit the Subject column from the document index to save tokens.
1538
+ * @default 20
1539
+ */
1540
+ DOC_INDEX_COMPACT_THRESHOLD: number;
1541
+ /**
1542
+ * Doc Index Skip Threshold
1543
+ * @description When the workspace has more documents than this, omit the document index entirely. The agent discovers documents via search_documents instead.
1544
+ * @default 200
1545
+ */
1546
+ DOC_INDEX_SKIP_THRESHOLD: number;
1505
1547
  /**
1506
1548
  * Personal Agent
1507
1549
  * @description Enable the personal_agent tool for delegating tasks to an external agent via OpenClaw.
1508
1550
  * @default false
1509
1551
  */
1510
1552
  PERSONAL_AGENT: boolean;
1553
+ /**
1554
+ * Memory Enabled
1555
+ * @description Run memory synthesis (skills, memories) after agent queries.
1556
+ * @default false
1557
+ */
1558
+ MEMORY_ENABLED: boolean;
1559
+ /**
1560
+ * Skills Enabled
1561
+ * @description Enable the skills system: /skill (create) and /<skill-name> (invoke) commands.
1562
+ * @default false
1563
+ */
1564
+ SKILLS_ENABLED: boolean;
1565
+ /**
1566
+ * Skill Creation
1567
+ * @description Transient flag set by /skill command to enable the save_skill agent tool.
1568
+ * @default false
1569
+ */
1570
+ SKILL_CREATION: boolean;
1511
1571
  /**
1512
1572
  * Review Enabled
1513
1573
  * @description Enable ReviewLLM to review agent draft answers against source material before sending to the user. Uses the reasoning model for higher quality.
@@ -1517,15 +1577,13 @@ interface components {
1517
1577
  /**
1518
1578
  * Persona
1519
1579
  * @description Agent persona prepended to the system prompt. Customise to change the agent's identity and tone.
1520
- * @default You are ARBI, an AI assistant created by ARBI CITY.
1521
- *
1522
- * You maintain formal, objective tone appropriate for professional/legal contexts. If any part of the answer is based on general knowledge instead of the supplied sources, you must state so clearly and recognise that it may not be accurate.
1580
+ * @default You are ARBI, an AI assistant created by ARBI CITY. Be proactive, helpful and professional.
1523
1581
  */
1524
1582
  PERSONA: string;
1525
1583
  /**
1526
1584
  * Agent Model Name
1527
1585
  * @description The name of the model to be used for the agent decision-making.
1528
- * @default Q3VL@ARBICITY
1586
+ * @default Fast
1529
1587
  */
1530
1588
  AGENT_MODEL_NAME: string;
1531
1589
  /**
@@ -1538,19 +1596,19 @@ interface components {
1538
1596
  /**
1539
1597
  * Llm Agent Temperature
1540
1598
  * @description Temperature value for agent LLM.
1541
- * @default 0.7
1599
+ * @default 1
1542
1600
  */
1543
1601
  LLM_AGENT_TEMPERATURE: number;
1544
1602
  /**
1545
1603
  * Agent Max Tokens
1546
1604
  * @description Maximum tokens for the agent LLM response.
1547
- * @default 20000
1605
+ * @default 10000
1548
1606
  */
1549
1607
  AGENT_MAX_TOKENS: number;
1550
1608
  /**
1551
1609
  * Agent Max Iterations
1552
1610
  * @description Maximum number of tool call iterations before forcing an answer.
1553
- * @default 10
1611
+ * @default 20
1554
1612
  */
1555
1613
  AGENT_MAX_ITERATIONS: number;
1556
1614
  /**
@@ -1568,41 +1626,31 @@ interface components {
1568
1626
  /**
1569
1627
  * Agent System Prompt
1570
1628
  * @description System prompt for the agent. Dynamic context is appended automatically.
1571
- * @default YOU ARE:
1572
- * ARBI — an AI assistant made by Arbitration City Ltd (https://arbicity.com), capable of helping with a wide variety of tasks using workspace documents, web search, and general knowledge.
1573
- * Always respond in first person. Be helpful and natural, not overly formal.
1629
+ * @default Answer any question the user asks. You have access to workspace documents — use them when relevant. When no documents are relevant, answer from your own knowledge. Always provide a helpful answer.
1574
1630
  *
1575
- * YOUR TASK:
1576
- * Answer the user's query. Use workspace documents when relevant. If appropriate, you may use available tools to perform external research.
1631
+ * IMPORTANT: Never say "I don't have information in the available documents" or refuse to answer. If documents are not relevant, just answer the question directly from your own knowledge.
1577
1632
  *
1578
- * ANSWERING GUIDELINES:
1579
- * - If the answer comes from workspace documents, cite them normally.
1580
- * - If the answer comes from external research, say so.
1581
- * - If the answer is based on general knowledge (no tool results), state that
1582
- * it is based on general knowledge and may not be fully accurate.
1583
- * - You are allowed to answer questions that are not about the documents.
1633
+ * When using documents, retrieve actual document content — do not rely on metadata or headings alone. Cross-check information across sources. Not all assertions in sources are factual — some are arguments by a party. Attribute claims to their source where parties disagree.
1584
1634
  *
1585
- * EFFICIENCY GUIDELINES:
1586
- * 1. PARALLEL CALLS: When a query has multiple aspects, call multiple tools in parallel (e.g., search different keywords simultaneously)
1587
- * 2. AVOID DUPLICATION: Before searching, review learnings from previous results. Do not repeat searches for information you already have
1588
- * 3. TARGETED SEARCHES: Use specific, focused queries rather than broad ones
1589
- * 4. NARROW RETRIEVALS: When retrieving document passages, use sub-page references (e.g. 5.3-8.1) where available from search results or table of contents. Request narrow ranges per call and fetch additional ranges in subsequent iterations if needed — avoid fetching entire documents at once
1590
- * 5. STOP WHEN READY: Provide your answer when you have sufficient evidence. Signs you have enough:
1591
- * - Multiple sources confirm the same facts
1592
- * - Key questions from the query are addressed
1593
- * - Additional searches return redundant information
1635
+ * DOCUMENT STRATEGY:
1636
+ * - For overview/summary requests: use get_table_of_contents first, then read key sections with get_document_passages.
1637
+ * - For specific questions: use search_documents to find relevant sections, then read those sections.
1638
+ * - Never search for meta-queries like "summary" or "overview" search for the actual subject matter.
1594
1639
  *
1595
- * WORKFLOW:
1596
- * 1. For complex multi-document queries, plan your approach before executing searches
1597
- * 2. Choose the right tool for each need — documents for uploaded content, web for external/current info
1598
- * 3. Execute parallel searches for different aspects when appropriate
1599
- * 4. Evaluate results - extract learnings, note gaps
1600
- * 5. Only search again if specific gaps remain unfilled
1601
- * 6. Answer when confident (no tool call) - do not over-research
1640
+ * FORMATTING:
1641
+ * - Start your answer directly with the content — never open with a description of what you searched for or read (e.g. never write "Searching for X", "Reading Y", "I found Z documents" as the first lines of an answer).
1642
+ * - Use markdown: headings, bold, bullet points, numbered lists
1643
+ * - Main conclusion first, followed by supporting points
1644
+ * - Bullet points for lists of discrete items
1645
+ * - Numbering for sequential steps or prioritized items
1646
+ * - Bold text for critical conclusions or decision points
1602
1647
  *
1603
- * IMPORTANT:
1604
- * - The document index contains metadata only - you must retrieve actual content
1605
- * - Do not add inline citation markers - the system handles citations automatically
1648
+ * EFFICIENCY:
1649
+ * 1. Before each step, review the results of prior steps. Adapt your approach based on what you learned if a call was rejected or returned poor results, adjust your strategy.
1650
+ * 2. Call multiple tools in parallel when a query has several aspects.
1651
+ * 3. NEVER repeat a tool call with the same arguments.
1652
+ * 4. Use targeted queries and narrow page ranges per retrieval call.
1653
+ * 5. Stop when you have sufficient evidence — do not over-research.
1606
1654
  */
1607
1655
  AGENT_SYSTEM_PROMPT: string;
1608
1656
  };
@@ -1611,35 +1659,47 @@ interface components {
1611
1659
  /**
1612
1660
  * @default {
1613
1661
  * "ENABLED": true,
1614
- * "HUMAN_IN_THE_LOOP": true,
1662
+ * "HUMAN_IN_THE_LOOP": false,
1615
1663
  * "WEB_SEARCH": {
1616
1664
  * "ENABLED": false,
1617
1665
  * "SAVE_SOURCES": true
1618
1666
  * },
1667
+ * "RUN_CODE": {
1668
+ * "ENABLED": false,
1669
+ * "IMAGE": "arbi-sandbox:bookworm-slim",
1670
+ * "MEMORY_LIMIT": "512m",
1671
+ * "NETWORK": "bridge",
1672
+ * "TIMEOUT_SECONDS": 60
1673
+ * },
1619
1674
  * "MCP_TOOLS": [],
1620
1675
  * "PLANNING_ENABLED": false,
1621
1676
  * "SUGGESTED_QUERIES": false,
1622
1677
  * "ARTIFACTS_ENABLED": false,
1623
1678
  * "VISION_ENABLED": false,
1679
+ * "DOC_INDEX_COMPACT_THRESHOLD": 20,
1680
+ * "DOC_INDEX_SKIP_THRESHOLD": 200,
1624
1681
  * "PERSONAL_AGENT": false,
1682
+ * "MEMORY_ENABLED": false,
1683
+ * "SKILLS_ENABLED": false,
1684
+ * "SKILL_CREATION": false,
1625
1685
  * "REVIEW_ENABLED": false,
1626
- * "PERSONA": "You are ARBI, an AI assistant created by ARBI CITY.\n\nYou maintain formal, objective tone appropriate for professional/legal contexts. If any part of the answer is based on general knowledge instead of the supplied sources, you must state so clearly and recognise that it may not be accurate.",
1627
- * "AGENT_MODEL_NAME": "Q3VL@ARBICITY",
1686
+ * "PERSONA": "You are ARBI, an AI assistant created by ARBI CITY. Be proactive, helpful and professional.",
1687
+ * "AGENT_MODEL_NAME": "Fast",
1628
1688
  * "AGENT_API_TYPE": "remote",
1629
- * "LLM_AGENT_TEMPERATURE": 0.7,
1630
- * "AGENT_MAX_TOKENS": 20000,
1631
- * "AGENT_MAX_ITERATIONS": 10,
1689
+ * "LLM_AGENT_TEMPERATURE": 1,
1690
+ * "AGENT_MAX_TOKENS": 10000,
1691
+ * "AGENT_MAX_ITERATIONS": 20,
1632
1692
  * "MAX_PASSAGE_PAGES": 10,
1633
1693
  * "AGENT_HISTORY_CHAR_THRESHOLD": 8000,
1634
- * "AGENT_SYSTEM_PROMPT": "YOU ARE:\nARBI an AI assistant made by Arbitration City Ltd (https://arbicity.com), capable of helping with a wide variety of tasks using workspace documents, web search, and general knowledge.\nAlways respond in first person. Be helpful and natural, not overly formal.\n\nYOUR TASK:\nAnswer the user's query. Use workspace documents when relevant. If appropriate, you may use available tools to perform external research.\n\nANSWERING GUIDELINES:\n- If the answer comes from workspace documents, cite them normally.\n- If the answer comes from external research, say so.\n- If the answer is based on general knowledge (no tool results), state that\n it is based on general knowledge and may not be fully accurate.\n- You are allowed to answer questions that are not about the documents.\n\nEFFICIENCY GUIDELINES:\n1. PARALLEL CALLS: When a query has multiple aspects, call multiple tools in parallel (e.g., search different keywords simultaneously)\n2. AVOID DUPLICATION: Before searching, review learnings from previous results. Do not repeat searches for information you already have\n3. TARGETED SEARCHES: Use specific, focused queries rather than broad ones\n4. NARROW RETRIEVALS: When retrieving document passages, use sub-page references (e.g. 5.3-8.1) where available from search results or table of contents. Request narrow ranges per call and fetch additional ranges in subsequent iterations if needed avoid fetching entire documents at once\n5. STOP WHEN READY: Provide your answer when you have sufficient evidence. Signs you have enough:\n - Multiple sources confirm the same facts\n - Key questions from the query are addressed\n - Additional searches return redundant information\n\nWORKFLOW:\n1. For complex multi-document queries, plan your approach before executing searches\n2. Choose the right tool for each needdocuments for uploaded content, web for external/current info\n3. Execute parallel searches for different aspects when appropriate\n4. Evaluate results - extract learnings, note gaps\n5. Only search again if specific gaps remain unfilled\n6. Answer when confident (no tool call) - do not over-research\n\nIMPORTANT:\n- The document index contains metadata only - you must retrieve actual content\n- Do not add inline citation markers - the system handles citations automatically"
1694
+ * "AGENT_SYSTEM_PROMPT": "Answer any question the user asks. You have access to workspace documents use them when relevant. When no documents are relevant, answer from your own knowledge. Always provide a helpful answer.\n\nIMPORTANT: Never say \"I don't have information in the available documents\" or refuse to answer. If documents are not relevant, just answer the question directly from your own knowledge.\n\nWhen using documents, retrieve actual document content do not rely on metadata or headings alone. Cross-check information across sources. Not all assertions in sources are factual some are arguments by a party. Attribute claims to their source where parties disagree.\n\nDOCUMENT STRATEGY:\n- For overview/summary requests: use get_table_of_contents first, then read key sections with get_document_passages.\n- For specific questions: use search_documents to find relevant sections, then read those sections.\n- Never search for meta-queries like \"summary\" or \"overview\" search for the actual subject matter.\n\nFORMATTING:\n- Start your answer directly with the content never open with a description of what you searched for or read (e.g. never write \"Searching for X\", \"Reading Y\", \"I found Z documents\" as the first lines of an answer).\n- Use markdown: headings, bold, bullet points, numbered lists\n- Main conclusion first, followed by supporting points\n- Bullet points for lists of discrete items\n- Numbering for sequential steps or prioritized items\n- Bold text for critical conclusions or decision points\n\nEFFICIENCY:\n1. Before each step, review the results of prior steps. Adapt your approach based on what you learned if a call was rejected or returned poor results, adjust your strategy.\n2. Call multiple tools in parallel when a query has several aspects.\n3. NEVER repeat a tool call with the same arguments.\n4. Use targeted queries and narrow page ranges per retrieval call.\n5. Stop when you have sufficient evidence do not over-research."
1635
1695
  * }
1636
1696
  */
1637
1697
  Agents: components['schemas']['AgentsConfig'];
1638
1698
  /**
1639
1699
  * @default {
1640
1700
  * "API_TYPE": "remote",
1641
- * "MODEL_NAME": "Q3VL@ARBICITY",
1642
- * "SYSTEM_INSTRUCTION": "You are ARBI, an AI assistant created by ARBI CITY.\n\nYou maintain formal, objective tone appropriate for professional/legal contexts. If any part of the answer is based on general knowledge instead of the supplied sources, you must state so clearly and recognise that it may not be accurate.You can ask a follow-up question instead of answering immediately if you are confused by the question and unable to intuit the user's intent.\n\nStructure responses with clear headings and logical organization:\n- Use hierarchical organization: main conclusion first, followed by supporting points\n- Bullet points for lists of discrete items\n- Numbering for sequential steps or prioritized items\n- Bold text for critical conclusions or decision points\n\nYou should recognise that not all assertions in the sources are factual. Some are mere assertions/arguments by the author, particularly in a legal context where different parties may express different opinions or even contradict each other's factual narrative. The best way to handle this is usually to attribute where the information comes from. I.e. according to xx document, or xx party.\n\nYou should avoid generalisations and provide exact quotations where possible. Never make up citations, facts or other information. Acknowledge uncertainty where source materials are insufficient or ambiguous.",
1701
+ * "MODEL_NAME": "Fast",
1702
+ * "SYSTEM_INSTRUCTION": "You are ARBI, an AI assistant created by ARBI CITY. Be proactive, helpful and professional.Be concise. Use markdown where it helps readability. Cross-check information across sources before answering. Never fabricate facts. Not all assertions in the sources are factual some are arguments by a party. Attribute claims to their source, especially where parties disagree.",
1643
1703
  * "MAX_CHAR_SIZE_TO_ANSWER": 200000,
1644
1704
  * "TEMPERATURE": 0.1,
1645
1705
  * "MAX_TOKENS": 5000
@@ -1649,7 +1709,7 @@ interface components {
1649
1709
  /**
1650
1710
  * @default {
1651
1711
  * "API_TYPE": "remote",
1652
- * "MODEL_NAME": "GPTOSS120@ARBICITY",
1712
+ * "MODEL_NAME": "Wise",
1653
1713
  * "SYSTEM_INSTRUCTION": "You are reviewing a draft answer prepared by a research agent. The draft was written based on summaries, but you now have access to the full source material.\n\nYour task:\n1. Review the draft answer against the source material provided\n2. Verify claims are supported by the sources\n3. Correct any inaccuracies or unsupported statements\n4. Add any important details from the sources that were missed\n5. Maintain formal, objective tone appropriate for professional contexts\n\nIf information is not found in the sources but the draft answer is based on web search results or general knowledge, preserve it and ensure it is clearly labelled as such. Only flag missing source support for claims that purport to come from the documents.\nDo not add inline citation markers - the system handles citations automatically.",
1654
1714
  * "TEMPERATURE": 0.1,
1655
1715
  * "MAX_TOKENS": 5000,
@@ -1660,7 +1720,7 @@ interface components {
1660
1720
  /**
1661
1721
  * @default {
1662
1722
  * "API_TYPE": "remote",
1663
- * "MODEL_NAME": "Q3VL@ARBICITY",
1723
+ * "MODEL_NAME": "Fast",
1664
1724
  * "SYSTEM_INSTRUCTION": "You are a chunk evaluator. Analyze retrieved chunks to determine which are relevant to the user's query and extract key learnings from the RELEVANT chunks only. You must return your response as valid JSON matching the provided schema.",
1665
1725
  * "TEMPERATURE": 0.1,
1666
1726
  * "MAX_TOKENS": 20000,
@@ -1671,7 +1731,7 @@ interface components {
1671
1731
  /**
1672
1732
  * @default {
1673
1733
  * "API_TYPE": "remote",
1674
- * "MODEL_NAME": "Q3VL@ARBICITY",
1734
+ * "MODEL_NAME": "Fast",
1675
1735
  * "SYSTEM_INSTRUCTION": "You are a title generator that creates concise, descriptive titles.",
1676
1736
  * "MAX_CHAR_SIZE_TO_ANSWER": 50,
1677
1737
  * "TEMPERATURE": 0.3,
@@ -1682,7 +1742,7 @@ interface components {
1682
1742
  /**
1683
1743
  * @default {
1684
1744
  * "API_TYPE": "remote",
1685
- * "MODEL_NAME": "GPTOSS120@ARBICITY",
1745
+ * "MODEL_NAME": "Wise",
1686
1746
  * "SYSTEM_INSTRUCTION": "You are a conversation summariser. Condense the conversation history into a concise summary that preserves:\n- Key decisions and conclusions reached\n- Specific names, dates, numbers, and document references\n- Open questions and unresolved items\n- The user's goals and constraints\n\nWrite in past tense, third person. Be specific, not vague. Do not omit important details in favour of brevity.",
1687
1747
  * "TEMPERATURE": 0.1,
1688
1748
  * "MAX_TOKENS": 2000,
@@ -1695,7 +1755,7 @@ interface components {
1695
1755
  /**
1696
1756
  * @default {
1697
1757
  * "API_TYPE": "remote",
1698
- * "MODEL_NAME": "Q3VL@ARBICITY",
1758
+ * "MODEL_NAME": "Fast",
1699
1759
  * "SYSTEM_INSTRUCTION": "You are a document analysis assistant. Answer questions based strictly on document content.\n\nGuidelines:\n- Only use information explicitly stated in the document\n- Do not infer or assume information not present\n- If information is not found, respond with \"Information not found in document.\"\n- Follow format instructions exactly for each answer\n- Be concise and precise",
1700
1760
  * "MAX_CHAR_CONTEXT_TO_ANSWER": 100000,
1701
1761
  * "TEMPERATURE": 0.1,
@@ -1753,8 +1813,7 @@ interface components {
1753
1813
  /**
1754
1814
  * @default {
1755
1815
  * "API_TYPE": "remote",
1756
- * "MODEL_NAME": "GPTOSS120@ARBICITY",
1757
- * "ENABLED": true,
1816
+ * "MODEL_NAME": "Wise",
1758
1817
  * "SYSTEM_INSTRUCTION": "You are a knowledge synthesizer. You receive the full agent scratchpad from a completed conversation and decide what, if anything, is worth saving.\n\n## Work Product Types\n- **\"memory\"**: Facts, findings, reference data — for *looking up* information.\n- **\"skill\"**: Procedures, workflows, step-by-step instructions — for *doing* something.\n\nWhen ambiguous, default to memory.\n\n## Rules\n- Return an empty work_products array if the conversation is trivial or produced nothing substantive.\n- Each work product must cover ONE coherent topic. Never combine disparate subjects into a single document — create separate documents for each distinct topic.\n- Ground everything in the provided context. Do not invent information.\n- Be concise. These are reference documents, not essays.\n\n## Output Format\nJSON with a `work_products` array. Each item has `wp_type`, `title`, and `content` (markdown).\n\nMemory content: `# Title`, date, source, key findings as bullets, source documents.\nSkill content: `# Title`, prerequisites, numbered steps, when to apply.",
1759
1818
  * "TEMPERATURE": 0.3,
1760
1819
  * "MAX_TOKENS": 8000,
@@ -1766,7 +1825,7 @@ interface components {
1766
1825
  /**
1767
1826
  * @default {
1768
1827
  * "API_TYPE": "remote",
1769
- * "MODEL_NAME": "GPTOSS120@ARBICITY",
1828
+ * "MODEL_NAME": "Wise",
1770
1829
  * "SYSTEM_INSTRUCTION": "You are a research planning assistant. Your job is to analyze a user query and produce a concise, numbered research plan.\n\nYou have access to a workspace of documents. The available tools for executing the plan are:\n- search_documents: Search workspace documents for relevant passages (semantic, keyword, or hybrid)\n- get_document_passages: Read a specific page range from a document\n- get_table_of_contents: Get document headings with page references\n\nConsider:\n- What information is needed to answer the query\n- Which documents are likely relevant based on the document index\n- What search queries and document passages to examine\n- What order of operations will be most efficient\n- Whether parallel searches can be used for different aspects\n\nRespond with ONLY the plan (numbered steps). Do not execute any steps.",
1771
1830
  * "TEMPERATURE": 0.3,
1772
1831
  * "MAX_TOKENS": 4000,
@@ -1778,7 +1837,7 @@ interface components {
1778
1837
  /**
1779
1838
  * @default {
1780
1839
  * "API_TYPE": "remote",
1781
- * "MODEL_NAME": "Q3VL@ARBICITY",
1840
+ * "MODEL_NAME": "Fast",
1782
1841
  * "TEMPERATURE": 0.1,
1783
1842
  * "MAX_TOKENS": 4000,
1784
1843
  * "MAX_PAGES_PER_CALL": 5,
@@ -1788,7 +1847,18 @@ interface components {
1788
1847
  VisionLLM: components['schemas']['VisionLLMConfig'];
1789
1848
  /**
1790
1849
  * @default {
1791
- * "SIM_THREASHOLD": 0.1,
1850
+ * "API_TYPE": "remote",
1851
+ * "MODEL_NAME": "Premium",
1852
+ * "SYSTEM_INSTRUCTION": "You are a code execution agent. You write and run code to accomplish tasks.\n\nYou have access to an execute_code tool that runs code in a sandboxed Docker container.\n\nThe sandbox has:\n- Python 3.12 with numpy, pandas, matplotlib, requests, beautifulsoup4,\n httpx, pillow, sympy, pyyaml (plus uv for installing more)\n- Node.js 22 with TypeScript (ts-node) and npm\n- Bash with git, curl, wget, jq, sqlite3, build-essential\n- Network access (can pip/npm install additional packages)\n\nInstructions:\n1. Write clean, correct code to accomplish the user's task\n2. Always call execute_code to run your code — never guess the output\n3. If execution errors, analyze the traceback, fix the code, and retry\n4. Once you have the correct output, respond with ONLY the final result\n\nKeep code simple and direct. Prefer Python unless the task specifically requires another language.",
1853
+ * "TEMPERATURE": 0.2,
1854
+ * "MAX_TOKENS": 8000,
1855
+ * "MAX_ITERATIONS": 3
1856
+ * }
1857
+ */
1858
+ CodeAgent: components['schemas']['CodeAgentConfig'];
1859
+ /**
1860
+ * @default {
1861
+ * "SIM_THREASHOLD": 0.5,
1792
1862
  * "MIN_CHAR_SIZE_TO_ANSWER": 30,
1793
1863
  * "MAX_NUMB_CITATIONS": 5
1794
1864
  * }
@@ -1809,19 +1879,25 @@ interface components {
1809
1879
  Retriever: components['schemas']['RetrieverConfig'];
1810
1880
  /**
1811
1881
  * @default {
1882
+ * "MIN_SCORE": 0.01,
1812
1883
  * "MAX_NUMB_OF_CHUNKS": 30,
1813
1884
  * "MAX_CONCURRENT_REQUESTS": 64,
1814
1885
  * "MODEL_NAME": "Qwen/Qwen3-Reranker-0.6B",
1815
- * "API_TYPE": "remote",
1816
- * "QUERY_INSTRUCTION": "Given a user query, retrieve relevant passages from documents that answer the query"
1886
+ * "API_TYPE": "remote"
1817
1887
  * }
1818
1888
  */
1819
1889
  Reranker: components['schemas']['RerankerConfig'];
1820
- /** @default {} */
1890
+ /**
1891
+ * @default {
1892
+ * "SKIP_DUPLICATES": false
1893
+ * }
1894
+ */
1821
1895
  Parser: components['schemas']['ParserConfig'];
1822
1896
  /**
1823
1897
  * @default {
1824
- * "MAX_CHUNK_TOKENS": 8000
1898
+ * "MAX_CHUNK_TOKENS": 1200,
1899
+ * "TOKENIZER_TYPE": "huggingface",
1900
+ * "TOKENIZER_NAME": "Qwen/Qwen3-Embedding-0.6B"
1825
1901
  * }
1826
1902
  */
1827
1903
  Chunker: components['schemas']['ChunkerConfig'];
@@ -1918,6 +1994,23 @@ interface components {
1918
1994
  */
1919
1995
  message_ext_id?: string | null;
1920
1996
  };
1997
+ /**
1998
+ * AskUserDetail
1999
+ * @description Detail for an ask_user tool call.
2000
+ */
2001
+ AskUserDetail: {
2002
+ /**
2003
+ * Tool
2004
+ * @default ask_user
2005
+ * @constant
2006
+ */
2007
+ tool: 'ask_user';
2008
+ /**
2009
+ * Question
2010
+ * @description Question for the user (truncated to 80 chars)
2011
+ */
2012
+ question: string;
2013
+ };
1921
2014
  /**
1922
2015
  * AuthMessage
1923
2016
  * @description Client authentication message.
@@ -2116,10 +2209,23 @@ interface components {
2116
2209
  ChunkerConfig: {
2117
2210
  /**
2118
2211
  * Max Chunk Tokens
2119
- * @description Maximum tokens per chunk. Chunks exceeding this are force-split at token boundaries.
2120
- * @default 8000
2212
+ * @description Maximum tokens per chunk. The tokenizer used depends on TOKENIZER_TYPE.
2213
+ * @default 1200
2121
2214
  */
2122
2215
  MAX_CHUNK_TOKENS: number;
2216
+ /**
2217
+ * Tokenizer Type
2218
+ * @description Tokenizer backend: 'tiktoken' for OpenAI models (cl100k_base, etc.) or 'huggingface' for HF models (Qwen3-Embedding, etc.).
2219
+ * @default huggingface
2220
+ * @enum {string}
2221
+ */
2222
+ TOKENIZER_TYPE: 'tiktoken' | 'huggingface';
2223
+ /**
2224
+ * Tokenizer Name
2225
+ * @description Tokenizer name. For tiktoken: 'cl100k_base', 'o200k_base', etc. For huggingface: model name like 'Qwen/Qwen3-Embedding-0.6B'.
2226
+ * @default Qwen/Qwen3-Embedding-0.6B
2227
+ */
2228
+ TOKENIZER_NAME: string;
2123
2229
  };
2124
2230
  /**
2125
2231
  * CitationData
@@ -2128,6 +2234,11 @@ interface components {
2128
2234
  CitationData: {
2129
2235
  /** Chunk Ids */
2130
2236
  chunk_ids: string[];
2237
+ /**
2238
+ * Scores
2239
+ * @default []
2240
+ */
2241
+ scores: number[];
2131
2242
  /** Statement */
2132
2243
  statement: string;
2133
2244
  /** Offset Start */
@@ -2135,6 +2246,64 @@ interface components {
2135
2246
  /** Offset End */
2136
2247
  offset_end: number;
2137
2248
  };
2249
+ /**
2250
+ * CodeAgentConfig
2251
+ * @description Configuration for CodeAgent — sub-agent that writes and executes code via sandbox.
2252
+ */
2253
+ CodeAgentConfig: {
2254
+ /**
2255
+ * Api Type
2256
+ * @description The inference type (local or remote).
2257
+ * @default remote
2258
+ * @enum {string}
2259
+ */
2260
+ API_TYPE: 'local' | 'remote';
2261
+ /**
2262
+ * Model Name
2263
+ * @description Model for code generation. Should be a strong coding model.
2264
+ * @default Premium
2265
+ */
2266
+ MODEL_NAME: string;
2267
+ /**
2268
+ * System Instruction
2269
+ * @description System prompt for the code execution agent.
2270
+ * @default You are a code execution agent. You write and run code to accomplish tasks.
2271
+ *
2272
+ * You have access to an execute_code tool that runs code in a sandboxed Docker container.
2273
+ *
2274
+ * The sandbox has:
2275
+ * - Python 3.12 with numpy, pandas, matplotlib, requests, beautifulsoup4,
2276
+ * httpx, pillow, sympy, pyyaml (plus uv for installing more)
2277
+ * - Node.js 22 with TypeScript (ts-node) and npm
2278
+ * - Bash with git, curl, wget, jq, sqlite3, build-essential
2279
+ * - Network access (can pip/npm install additional packages)
2280
+ *
2281
+ * Instructions:
2282
+ * 1. Write clean, correct code to accomplish the user's task
2283
+ * 2. Always call execute_code to run your code — never guess the output
2284
+ * 3. If execution errors, analyze the traceback, fix the code, and retry
2285
+ * 4. Once you have the correct output, respond with ONLY the final result
2286
+ *
2287
+ * Keep code simple and direct. Prefer Python unless the task specifically requires another language.
2288
+ */
2289
+ SYSTEM_INSTRUCTION: string;
2290
+ /**
2291
+ * Temperature
2292
+ * @default 0.2
2293
+ */
2294
+ TEMPERATURE: number;
2295
+ /**
2296
+ * Max Tokens
2297
+ * @default 8000
2298
+ */
2299
+ MAX_TOKENS: number;
2300
+ /**
2301
+ * Max Iterations
2302
+ * @description Maximum code-execute-fix retry cycles.
2303
+ * @default 3
2304
+ */
2305
+ MAX_ITERATIONS: number;
2306
+ };
2138
2307
  /** CompactionTool */
2139
2308
  CompactionTool: {
2140
2309
  /**
@@ -2391,6 +2560,29 @@ interface components {
2391
2560
  */
2392
2561
  results: components['schemas']['CopyDocumentResult'][];
2393
2562
  };
2563
+ /**
2564
+ * CreateArtifactDetail
2565
+ * @description Detail for a create_artifact tool call.
2566
+ */
2567
+ CreateArtifactDetail: {
2568
+ /**
2569
+ * Tool
2570
+ * @default create_artifact
2571
+ * @constant
2572
+ */
2573
+ tool: 'create_artifact';
2574
+ /**
2575
+ * Title
2576
+ * @description Artifact title (truncated to 80 chars)
2577
+ */
2578
+ title: string;
2579
+ /**
2580
+ * Mode
2581
+ * @description Rendering mode: markdown, html, text
2582
+ * @default markdown
2583
+ */
2584
+ mode: string;
2585
+ };
2394
2586
  /**
2395
2587
  * CreateDocTagRequest
2396
2588
  * @description Apply a tag to one or more documents.
@@ -2407,6 +2599,23 @@ interface components {
2407
2599
  [key: string]: components['schemas']['CitationData'];
2408
2600
  } | null;
2409
2601
  };
2602
+ /**
2603
+ * CreatePlanDetail
2604
+ * @description Detail for a create_plan tool call.
2605
+ */
2606
+ CreatePlanDetail: {
2607
+ /**
2608
+ * Tool
2609
+ * @default create_plan
2610
+ * @constant
2611
+ */
2612
+ tool: 'create_plan';
2613
+ /**
2614
+ * Query
2615
+ * @description Planning query (truncated to 80 chars)
2616
+ */
2617
+ query: string;
2618
+ };
2410
2619
  /**
2411
2620
  * CreateSubscriptionRequest
2412
2621
  * @description Request to create a new subscription checkout session.
@@ -2551,6 +2760,8 @@ interface components {
2551
2760
  updated_at: string;
2552
2761
  /** Wp Type */
2553
2762
  wp_type?: string | null;
2763
+ /** Folder */
2764
+ folder?: string | null;
2554
2765
  /**
2555
2766
  * Doctags
2556
2767
  * @default []
@@ -2602,6 +2813,11 @@ interface components {
2602
2813
  status?: 'processing' | null;
2603
2814
  /** Content */
2604
2815
  content?: string | null;
2816
+ /**
2817
+ * Folder
2818
+ * @description Logical folder path (URL safe)
2819
+ */
2820
+ folder?: string | null;
2605
2821
  };
2606
2822
  /**
2607
2823
  * DoctagLLMConfig
@@ -2618,7 +2834,7 @@ interface components {
2618
2834
  /**
2619
2835
  * Model Name
2620
2836
  * @description The name of the non-reasoning model to be used.
2621
- * @default Q3VL@ARBICITY
2837
+ * @default Fast
2622
2838
  */
2623
2839
  MODEL_NAME: string;
2624
2840
  /**
@@ -2764,6 +2980,17 @@ interface components {
2764
2980
  /** Message */
2765
2981
  message: string;
2766
2982
  };
2983
+ /**
2984
+ * EvaluationDetail
2985
+ * @description Detail for an evaluation learning entry.
2986
+ */
2987
+ EvaluationDetail: {
2988
+ /**
2989
+ * Statement
2990
+ * @description Citation/finding statement
2991
+ */
2992
+ statement: string;
2993
+ };
2767
2994
  /** EvaluatorLLMConfig */
2768
2995
  EvaluatorLLMConfig: {
2769
2996
  /**
@@ -2776,7 +3003,7 @@ interface components {
2776
3003
  /**
2777
3004
  * Model Name
2778
3005
  * @description The name of the non-reasoning model to be used.
2779
- * @default Q3VL@ARBICITY
3006
+ * @default Fast
2780
3007
  */
2781
3008
  MODEL_NAME: string;
2782
3009
  /**
@@ -2911,6 +3138,72 @@ interface components {
2911
3138
  */
2912
3139
  tag_ext_ids: string[];
2913
3140
  };
3141
+ /**
3142
+ * GetDocumentPassagesDetail
3143
+ * @description Detail for a get_document_passages tool call.
3144
+ */
3145
+ GetDocumentPassagesDetail: {
3146
+ /**
3147
+ * Tool
3148
+ * @default get_document_passages
3149
+ * @constant
3150
+ */
3151
+ tool: 'get_document_passages';
3152
+ /**
3153
+ * Doc Ext Id
3154
+ * @description Document external ID
3155
+ */
3156
+ doc_ext_id: string;
3157
+ /**
3158
+ * From Ref
3159
+ * @description Start reference (page.chunk)
3160
+ */
3161
+ from_ref: string;
3162
+ /**
3163
+ * To Ref
3164
+ * @description End reference (page.chunk)
3165
+ */
3166
+ to_ref: string;
3167
+ };
3168
+ /**
3169
+ * GetFullDocumentDetail
3170
+ * @description Detail for a get_full_document tool call.
3171
+ */
3172
+ GetFullDocumentDetail: {
3173
+ /**
3174
+ * Tool
3175
+ * @default get_full_document
3176
+ * @constant
3177
+ */
3178
+ tool: 'get_full_document';
3179
+ /**
3180
+ * Doc Ext Id
3181
+ * @description Document external ID
3182
+ */
3183
+ doc_ext_id: string;
3184
+ };
3185
+ /**
3186
+ * GetTableOfContentsDetail
3187
+ * @description Detail for a get_table_of_contents tool call.
3188
+ */
3189
+ GetTableOfContentsDetail: {
3190
+ /**
3191
+ * Tool
3192
+ * @default get_table_of_contents
3193
+ * @constant
3194
+ */
3195
+ tool: 'get_table_of_contents';
3196
+ /**
3197
+ * Doc Count
3198
+ * @description Number of documents requested
3199
+ */
3200
+ doc_count: number;
3201
+ /**
3202
+ * Doc Ext Ids
3203
+ * @description Document external IDs
3204
+ */
3205
+ doc_ext_ids: string[];
3206
+ };
2914
3207
  /** HTTPValidationError */
2915
3208
  HTTPValidationError: {
2916
3209
  /** Detail */
@@ -3029,15 +3322,9 @@ interface components {
3029
3322
  /**
3030
3323
  * Model Name
3031
3324
  * @description The model for memory synthesis. Defaults to reasoning model.
3032
- * @default GPTOSS120@ARBICITY
3325
+ * @default Wise
3033
3326
  */
3034
3327
  MODEL_NAME: string;
3035
- /**
3036
- * Enabled
3037
- * @description Whether to run memory synthesis (skills, memories) after agent queries.
3038
- * @default true
3039
- */
3040
- ENABLED: boolean;
3041
3328
  /**
3042
3329
  * System Instruction
3043
3330
  * @description System instruction for memory classification and synthesis.
@@ -3101,7 +3388,7 @@ interface components {
3101
3388
  input: string;
3102
3389
  /** Tools */
3103
3390
  tools?: {
3104
- [key: string]: components['schemas']['ModelCitationTool'] | components['schemas']['RetrievalChunkTool'] | components['schemas']['RetrievalFullContextTool'] | components['schemas']['RetrievalTOCTool'] | components['schemas']['TraceTool'] | components['schemas']['CompactionTool'];
3391
+ [key: string]: components['schemas']['ModelCitationTool'] | components['schemas']['RetrievalChunkTool'] | components['schemas']['RetrievalFullContextTool'] | components['schemas']['RetrievalTOCTool'] | components['schemas']['TraceTool'] | components['schemas']['CompactionTool'] | components['schemas']['PersonalAgentTool'] | components['schemas']['StreamEventsTool'];
3105
3392
  };
3106
3393
  /**
3107
3394
  * Workspace Ext Id
@@ -3117,6 +3404,16 @@ interface components {
3117
3404
  * @default false
3118
3405
  */
3119
3406
  stream: boolean;
3407
+ /**
3408
+ * Background
3409
+ * @default false
3410
+ */
3411
+ background: boolean;
3412
+ /**
3413
+ * Store
3414
+ * @default true
3415
+ */
3416
+ store: boolean;
3120
3417
  /** Instructions */
3121
3418
  instructions?: string | null;
3122
3419
  /** Max Output Tokens */
@@ -3143,7 +3440,7 @@ interface components {
3143
3440
  content: string;
3144
3441
  /** Tools */
3145
3442
  tools?: {
3146
- [key: string]: components['schemas']['ModelCitationTool'] | components['schemas']['RetrievalChunkTool'] | components['schemas']['RetrievalFullContextTool'] | components['schemas']['RetrievalTOCTool'] | components['schemas']['TraceTool'] | components['schemas']['CompactionTool'];
3443
+ [key: string]: components['schemas']['ModelCitationTool'] | components['schemas']['RetrievalChunkTool'] | components['schemas']['RetrievalFullContextTool'] | components['schemas']['RetrievalTOCTool'] | components['schemas']['TraceTool'] | components['schemas']['CompactionTool'] | components['schemas']['PersonalAgentTool'] | components['schemas']['StreamEventsTool'];
3147
3444
  };
3148
3445
  /** Config Ext Id */
3149
3446
  config_ext_id?: string | null;
@@ -3204,7 +3501,7 @@ interface components {
3204
3501
  content: string;
3205
3502
  /** Tools */
3206
3503
  tools?: {
3207
- [key: string]: components['schemas']['ModelCitationTool'] | components['schemas']['RetrievalChunkTool'] | components['schemas']['RetrievalFullContextTool'] | components['schemas']['RetrievalTOCTool'] | components['schemas']['TraceTool'] | components['schemas']['CompactionTool'];
3504
+ [key: string]: components['schemas']['ModelCitationTool'] | components['schemas']['RetrievalChunkTool'] | components['schemas']['RetrievalFullContextTool'] | components['schemas']['RetrievalTOCTool'] | components['schemas']['TraceTool'] | components['schemas']['CompactionTool'] | components['schemas']['PersonalAgentTool'] | components['schemas']['StreamEventsTool'];
3208
3505
  };
3209
3506
  /** Config Ext Id */
3210
3507
  config_ext_id?: string | null;
@@ -3236,8 +3533,8 @@ interface components {
3236
3533
  ModelCitationConfig: {
3237
3534
  /**
3238
3535
  * Sim Threashold
3239
- * @description How similar does the statement needs to be to be considered as citation.
3240
- * @default 0.1
3536
+ * @description Minimum similarity score for a chunk to be cited.
3537
+ * @default 0.5
3241
3538
  */
3242
3539
  SIM_THREASHOLD: number;
3243
3540
  /**
@@ -3279,6 +3576,8 @@ interface components {
3279
3576
  model_name: string;
3280
3577
  /** Api Type */
3281
3578
  api_type: string;
3579
+ /** Tags */
3580
+ tags?: string[] | null;
3282
3581
  /** Max Input Tokens */
3283
3582
  max_input_tokens?: number | null;
3284
3583
  /** Max Output Tokens */
@@ -3330,10 +3629,6 @@ interface components {
3330
3629
  Agents: {
3331
3630
  [key: string]: string | boolean;
3332
3631
  };
3333
- /** Memoryllm */
3334
- MemoryLLM: {
3335
- [key: string]: boolean;
3336
- };
3337
3632
  };
3338
3633
  /**
3339
3634
  * NotificationResponse
@@ -3501,7 +3796,60 @@ interface components {
3501
3796
  */
3502
3797
  ParsedStage: 'marker' | 'subchunk' | 'final';
3503
3798
  /** ParserConfig */
3504
- ParserConfig: Record<string, never>;
3799
+ ParserConfig: {
3800
+ /**
3801
+ * Skip Duplicates
3802
+ * @description Skip files with identical content already in the workspace.
3803
+ * @default false
3804
+ */
3805
+ SKIP_DUPLICATES: boolean;
3806
+ };
3807
+ /**
3808
+ * PersonalAgentDetail
3809
+ * @description Detail for a personal_agent tool call.
3810
+ */
3811
+ PersonalAgentDetail: {
3812
+ /**
3813
+ * Tool
3814
+ * @default personal_agent
3815
+ * @constant
3816
+ */
3817
+ tool: 'personal_agent';
3818
+ /**
3819
+ * Task
3820
+ * @description Task description (truncated to 120 chars)
3821
+ */
3822
+ task: string;
3823
+ };
3824
+ /** PersonalAgentTool */
3825
+ PersonalAgentTool: {
3826
+ /**
3827
+ * @description discriminator enum property added by openapi-typescript
3828
+ * @enum {string}
3829
+ */
3830
+ name: 'personal_agent';
3831
+ /**
3832
+ * Description
3833
+ * @default personal agent
3834
+ */
3835
+ description: string;
3836
+ tool_args: components['schemas']['PersonalAgentToolArgs'];
3837
+ /**
3838
+ * Tool Responses
3839
+ * @default {}
3840
+ */
3841
+ tool_responses: {
3842
+ [key: string]: unknown;
3843
+ };
3844
+ };
3845
+ /**
3846
+ * PersonalAgentToolArgs
3847
+ * @description Typed arguments for personal agent tool.
3848
+ */
3849
+ PersonalAgentToolArgs: {
3850
+ /** Task */
3851
+ task: string;
3852
+ };
3505
3853
  /**
3506
3854
  * PlanningLLMConfig
3507
3855
  * @description Configuration for PlanningLLM — generates research plans on demand.
@@ -3520,7 +3868,7 @@ interface components {
3520
3868
  /**
3521
3869
  * Model Name
3522
3870
  * @description The model for plan generation. Defaults to reasoning model.
3523
- * @default GPTOSS120@ARBICITY
3871
+ * @default Wise
3524
3872
  */
3525
3873
  MODEL_NAME: string;
3526
3874
  /**
@@ -3633,25 +3981,13 @@ interface components {
3633
3981
  /**
3634
3982
  * Model Name
3635
3983
  * @description The model for query answering.
3636
- * @default Q3VL@ARBICITY
3984
+ * @default Fast
3637
3985
  */
3638
3986
  MODEL_NAME: string;
3639
3987
  /**
3640
3988
  * System Instruction
3641
3989
  * @description The system instruction string.
3642
- * @default You are ARBI, an AI assistant created by ARBI CITY.
3643
- *
3644
- * You maintain formal, objective tone appropriate for professional/legal contexts. If any part of the answer is based on general knowledge instead of the supplied sources, you must state so clearly and recognise that it may not be accurate.You can ask a follow-up question instead of answering immediately if you are confused by the question and unable to intuit the user's intent.
3645
- *
3646
- * Structure responses with clear headings and logical organization:
3647
- * - Use hierarchical organization: main conclusion first, followed by supporting points
3648
- * - Bullet points for lists of discrete items
3649
- * - Numbering for sequential steps or prioritized items
3650
- * - Bold text for critical conclusions or decision points
3651
- *
3652
- * You should recognise that not all assertions in the sources are factual. Some are mere assertions/arguments by the author, particularly in a legal context where different parties may express different opinions or even contradict each other's factual narrative. The best way to handle this is usually to attribute where the information comes from. I.e. according to xx document, or xx party.
3653
- *
3654
- * You should avoid generalisations and provide exact quotations where possible. Never make up citations, facts or other information. Acknowledge uncertainty where source materials are insufficient or ambiguous.
3990
+ * @default You are ARBI, an AI assistant created by ARBI CITY. Be proactive, helpful and professional.Be concise. Use markdown where it helps readability. Cross-check information across sources before answering. Never fabricate facts. Not all assertions in the sources are factual — some are arguments by a party. Attribute claims to their source, especially where parties disagree.
3655
3991
  */
3656
3992
  SYSTEM_INSTRUCTION: string;
3657
3993
  /**
@@ -3673,6 +4009,23 @@ interface components {
3673
4009
  */
3674
4010
  MAX_TOKENS: number;
3675
4011
  };
4012
+ /**
4013
+ * ReadUrlDetail
4014
+ * @description Detail for a read_url tool call.
4015
+ */
4016
+ ReadUrlDetail: {
4017
+ /**
4018
+ * Tool
4019
+ * @default read_url
4020
+ * @constant
4021
+ */
4022
+ tool: 'read_url';
4023
+ /**
4024
+ * Url
4025
+ * @description URL to fetch (truncated to 120 chars)
4026
+ */
4027
+ url: string;
4028
+ };
3676
4029
  /**
3677
4030
  * RegisterRequest
3678
4031
  * @description Unified user registration request (local and SSO).
@@ -3726,6 +4079,12 @@ interface components {
3726
4079
  };
3727
4080
  /** RerankerConfig */
3728
4081
  RerankerConfig: {
4082
+ /**
4083
+ * Min Score
4084
+ * @description Minimum reranker score for a chunk to be kept. With the Qwen3 strict fact-matching instruction, relevant chunks score 0.1+ and noise is typically < 0.005.
4085
+ * @default 0.01
4086
+ */
4087
+ MIN_SCORE: number;
3729
4088
  /**
3730
4089
  * Max Numb Of Chunks
3731
4090
  * @description Maximum number of chunks to return after reranking.
@@ -3751,12 +4110,25 @@ interface components {
3751
4110
  * @enum {string}
3752
4111
  */
3753
4112
  API_TYPE: 'local' | 'remote';
4113
+ };
4114
+ /**
4115
+ * ResponseCompleteMessage
4116
+ * @description Background response finished — frontend can reload the conversation.
4117
+ */
4118
+ ResponseCompleteMessage: {
4119
+ /**
4120
+ * Type
4121
+ * @default response_complete
4122
+ * @constant
4123
+ */
4124
+ type: 'response_complete';
4125
+ /** Response Id */
4126
+ response_id: string;
3754
4127
  /**
3755
- * Query Instruction
3756
- * @description Instruction for Qwen3-style reranker models. Set empty to disable instruction formatting.
3757
- * @default Given a user query, retrieve relevant passages from documents that answer the query
4128
+ * Status
4129
+ * @enum {string}
3758
4130
  */
3759
- QUERY_INSTRUCTION: string;
4131
+ status: 'completed' | 'failed';
3760
4132
  };
3761
4133
  /**
3762
4134
  * ResponseCompletedEvent
@@ -4120,6 +4492,113 @@ interface components {
4120
4492
  /** @description Detailed breakdown of output tokens */
4121
4493
  output_tokens_details?: components['schemas']['OutputTokensDetails'];
4122
4494
  };
4495
+ /**
4496
+ * ResponsesAPIOutputMessage
4497
+ * @description Message output item.
4498
+ */
4499
+ ResponsesAPIOutputMessage: {
4500
+ /**
4501
+ * Type
4502
+ * @default message
4503
+ * @constant
4504
+ */
4505
+ type: 'message';
4506
+ /** Id */
4507
+ id: string;
4508
+ /**
4509
+ * Status
4510
+ * @enum {string}
4511
+ */
4512
+ status: 'completed' | 'in_progress';
4513
+ /**
4514
+ * Role
4515
+ * @default assistant
4516
+ * @constant
4517
+ */
4518
+ role: 'assistant';
4519
+ /**
4520
+ * Content
4521
+ * @default []
4522
+ */
4523
+ content: (components['schemas']['ResponsesAPIOutputText'] | {
4524
+ [key: string]: unknown;
4525
+ })[];
4526
+ };
4527
+ /**
4528
+ * ResponsesAPIOutputText
4529
+ * @description Text output content item.
4530
+ */
4531
+ ResponsesAPIOutputText: {
4532
+ /**
4533
+ * Type
4534
+ * @default output_text
4535
+ * @constant
4536
+ */
4537
+ type: 'output_text';
4538
+ /** Text */
4539
+ text: string;
4540
+ /**
4541
+ * Annotations
4542
+ * @default []
4543
+ */
4544
+ annotations: {
4545
+ [key: string]: unknown;
4546
+ }[];
4547
+ };
4548
+ /**
4549
+ * ResponsesAPIResponse
4550
+ * @description OpenAI Responses API response envelope.
4551
+ */
4552
+ ResponsesAPIResponse: {
4553
+ /** Id */
4554
+ id: string;
4555
+ /**
4556
+ * Object
4557
+ * @default response
4558
+ * @constant
4559
+ */
4560
+ object: 'response';
4561
+ /**
4562
+ * Status
4563
+ * @enum {string}
4564
+ */
4565
+ status: 'completed' | 'in_progress' | 'queued' | 'cancelled' | 'failed' | 'incomplete';
4566
+ /** Created At */
4567
+ created_at?: number | null;
4568
+ /** Model */
4569
+ model?: string | null;
4570
+ /**
4571
+ * Background
4572
+ * @default false
4573
+ */
4574
+ background: boolean;
4575
+ /**
4576
+ * Output
4577
+ * @default []
4578
+ */
4579
+ output: components['schemas']['ResponsesAPIOutputMessage'][];
4580
+ usage?: components['schemas']['ResponsesAPIUsage'] | null;
4581
+ /** Error */
4582
+ error?: {
4583
+ [key: string]: unknown;
4584
+ } | null;
4585
+ /** Metadata */
4586
+ metadata?: {
4587
+ [key: string]: unknown;
4588
+ } | null;
4589
+ };
4590
+ /**
4591
+ * ResponsesAPIUsage
4592
+ * @description Token usage stats.
4593
+ */
4594
+ ResponsesAPIUsage: {
4595
+ /** Input Tokens */
4596
+ input_tokens: number;
4597
+ /** Output Tokens */
4598
+ output_tokens: number;
4599
+ /** Total Tokens */
4600
+ total_tokens: number;
4601
+ };
4123
4602
  /** RetrievalChunkTool */
4124
4603
  RetrievalChunkTool: {
4125
4604
  /**
@@ -4304,7 +4783,7 @@ interface components {
4304
4783
  /**
4305
4784
  * Model Name
4306
4785
  * @description The model for reviewing agent draft answers. Defaults to reasoning model.
4307
- * @default GPTOSS120@ARBICITY
4786
+ * @default Wise
4308
4787
  */
4309
4788
  MODEL_NAME: string;
4310
4789
  /**
@@ -4342,6 +4821,59 @@ interface components {
4342
4821
  */
4343
4822
  MAX_CHAR_SIZE_TO_ANSWER: number;
4344
4823
  };
4824
+ /**
4825
+ * RunCodeConfig
4826
+ * @description Configuration for the run_code agent tool (Docker sandbox).
4827
+ */
4828
+ RunCodeConfig: {
4829
+ /**
4830
+ * Enabled
4831
+ * @description Enable the run_code tool for sandboxed code execution.
4832
+ * @default false
4833
+ */
4834
+ ENABLED: boolean;
4835
+ /**
4836
+ * Image
4837
+ * @description Docker image for sandbox containers.
4838
+ * @default arbi-sandbox:bookworm-slim
4839
+ */
4840
+ IMAGE: string;
4841
+ /**
4842
+ * Timeout Seconds
4843
+ * @description Maximum execution time per run_code call (seconds).
4844
+ * @default 60
4845
+ */
4846
+ TIMEOUT_SECONDS: number;
4847
+ /**
4848
+ * Memory Limit
4849
+ * @description Container memory limit (Docker format, e.g. '256m', '1g').
4850
+ * @default 512m
4851
+ */
4852
+ MEMORY_LIMIT: string;
4853
+ /**
4854
+ * Network
4855
+ * @description Container network mode. 'bridge' allows internet (pip/npm install). 'none' for full isolation.
4856
+ * @default bridge
4857
+ */
4858
+ NETWORK: string;
4859
+ };
4860
+ /**
4861
+ * RunCodeDetail
4862
+ * @description Detail for a run_code tool call.
4863
+ */
4864
+ RunCodeDetail: {
4865
+ /**
4866
+ * Tool
4867
+ * @default run_code
4868
+ * @constant
4869
+ */
4870
+ tool: 'run_code';
4871
+ /**
4872
+ * Task Length
4873
+ * @description Length of the task description
4874
+ */
4875
+ task_length: number;
4876
+ };
4345
4877
  /**
4346
4878
  * SSESchemas
4347
4879
  * @description Container for all SSE event schemas — drives OpenAPI component generation.
@@ -4372,6 +4904,21 @@ interface components {
4372
4904
  output_tokens_details?: components['schemas']['OutputTokensDetails'] | null;
4373
4905
  context_usage?: components['schemas']['ContextUsage'] | null;
4374
4906
  message_metadata?: components['schemas']['MessageMetadataPayload'] | null;
4907
+ detail_search_documents?: components['schemas']['SearchDocumentsDetail'] | null;
4908
+ detail_get_document_passages?: components['schemas']['GetDocumentPassagesDetail'] | null;
4909
+ detail_get_table_of_contents?: components['schemas']['GetTableOfContentsDetail'] | null;
4910
+ detail_view_document_pages?: components['schemas']['ViewDocumentPagesDetail'] | null;
4911
+ detail_get_full_document?: components['schemas']['GetFullDocumentDetail'] | null;
4912
+ detail_web_search?: components['schemas']['WebSearchDetail'] | null;
4913
+ detail_personal_agent?: components['schemas']['PersonalAgentDetail'] | null;
4914
+ detail_read_url?: components['schemas']['ReadUrlDetail'] | null;
4915
+ detail_create_plan?: components['schemas']['CreatePlanDetail'] | null;
4916
+ detail_save_skill?: components['schemas']['SaveSkillDetail'] | null;
4917
+ detail_run_code?: components['schemas']['RunCodeDetail'] | null;
4918
+ detail_create_artifact?: components['schemas']['CreateArtifactDetail'] | null;
4919
+ detail_ask_user?: components['schemas']['AskUserDetail'] | null;
4920
+ detail_evaluation?: components['schemas']['EvaluationDetail'] | null;
4921
+ detail_tool_progress?: components['schemas']['ToolProgressDetail'] | null;
4375
4922
  };
4376
4923
  /** SSOSendVerificationEmailRequest */
4377
4924
  SSOSendVerificationEmailRequest: {
@@ -4427,6 +4974,50 @@ interface components {
4427
4974
  /** Family Name */
4428
4975
  family_name?: string | null;
4429
4976
  };
4977
+ /**
4978
+ * SaveSkillDetail
4979
+ * @description Detail for a save_skill tool call.
4980
+ */
4981
+ SaveSkillDetail: {
4982
+ /**
4983
+ * Tool
4984
+ * @default save_skill
4985
+ * @constant
4986
+ */
4987
+ tool: 'save_skill';
4988
+ /**
4989
+ * Name
4990
+ * @description Skill name
4991
+ */
4992
+ name: string;
4993
+ /**
4994
+ * Title
4995
+ * @description Skill title (truncated to 80 chars)
4996
+ */
4997
+ title: string;
4998
+ };
4999
+ /**
5000
+ * SearchDocumentsDetail
5001
+ * @description Detail for a search_documents tool call.
5002
+ */
5003
+ SearchDocumentsDetail: {
5004
+ /**
5005
+ * Tool
5006
+ * @default search_documents
5007
+ * @constant
5008
+ */
5009
+ tool: 'search_documents';
5010
+ /**
5011
+ * Query
5012
+ * @description Search query (truncated to 80 chars)
5013
+ */
5014
+ query: string;
5015
+ /**
5016
+ * Search Mode
5017
+ * @description Search mode: hybrid, semantic, keyword
5018
+ */
5019
+ search_mode: string;
5020
+ };
4430
5021
  /**
4431
5022
  * SearchMode
4432
5023
  * @description Search mode for retrieval.
@@ -4465,6 +5056,21 @@ interface components {
4465
5056
  */
4466
5057
  detail: string;
4467
5058
  };
5059
+ /** StreamEventsTool */
5060
+ StreamEventsTool: {
5061
+ /**
5062
+ * @description discriminator enum property added by openapi-typescript
5063
+ * @enum {string}
5064
+ */
5065
+ name: 'stream_events';
5066
+ /**
5067
+ * Events
5068
+ * @default []
5069
+ */
5070
+ events: {
5071
+ [key: string]: unknown;
5072
+ }[];
5073
+ };
4468
5074
  /**
4469
5075
  * SubscriptionInfo
4470
5076
  * @description Subscription info exposed to frontend in user settings.
@@ -4539,7 +5145,7 @@ interface components {
4539
5145
  /**
4540
5146
  * Model Name
4541
5147
  * @description The model for conversation summarisation. Defaults to reasoning model.
4542
- * @default GPTOSS120@ARBICITY
5148
+ * @default Wise
4543
5149
  */
4544
5150
  MODEL_NAME: string;
4545
5151
  /**
@@ -4608,7 +5214,7 @@ interface components {
4608
5214
  * Type-specific fields:
4609
5215
  * - select: options (list of choices, can be single or multi-select)
4610
5216
  * - search: tag name is the query, chunks include relevance scores
4611
- * - checkbox, text, number, folder: type only
5217
+ * - checkbox, text, number: type only
4612
5218
  */
4613
5219
  TagFormat: {
4614
5220
  /**
@@ -4616,7 +5222,7 @@ interface components {
4616
5222
  * @default checkbox
4617
5223
  * @enum {string}
4618
5224
  */
4619
- type: 'checkbox' | 'text' | 'number' | 'select' | 'folder' | 'search' | 'date';
5225
+ type: 'checkbox' | 'text' | 'number' | 'select' | 'search' | 'date';
4620
5226
  /**
4621
5227
  * Options
4622
5228
  * @default []
@@ -4717,7 +5323,7 @@ interface components {
4717
5323
  /**
4718
5324
  * Model Name
4719
5325
  * @description The name of the non-reasoning model to be used.
4720
- * @default Q3VL@ARBICITY
5326
+ * @default Fast
4721
5327
  */
4722
5328
  MODEL_NAME: string;
4723
5329
  /**
@@ -4855,6 +5461,22 @@ interface components {
4855
5461
  */
4856
5462
  model_name?: string | null;
4857
5463
  };
5464
+ /**
5465
+ * ToolProgressDetail
5466
+ * @description Detail for a tool progress update.
5467
+ */
5468
+ ToolProgressDetail: {
5469
+ /**
5470
+ * Tool
5471
+ * @description Tool name
5472
+ */
5473
+ tool: string;
5474
+ /**
5475
+ * Message
5476
+ * @description Progress message
5477
+ */
5478
+ message: string;
5479
+ };
4858
5480
  /**
4859
5481
  * TraceTool
4860
5482
  * @description Execution trace tool that captures the full execution history of a request.
@@ -5030,7 +5652,7 @@ interface components {
5030
5652
  content: string;
5031
5653
  /** Tools */
5032
5654
  tools?: {
5033
- [key: string]: components['schemas']['ModelCitationTool'] | components['schemas']['RetrievalChunkTool'] | components['schemas']['RetrievalFullContextTool'] | components['schemas']['RetrievalTOCTool'] | components['schemas']['TraceTool'] | components['schemas']['CompactionTool'];
5655
+ [key: string]: components['schemas']['ModelCitationTool'] | components['schemas']['RetrievalChunkTool'] | components['schemas']['RetrievalFullContextTool'] | components['schemas']['RetrievalTOCTool'] | components['schemas']['TraceTool'] | components['schemas']['CompactionTool'] | components['schemas']['PersonalAgentTool'] | components['schemas']['StreamEventsTool'];
5034
5656
  };
5035
5657
  /** Config Ext Id */
5036
5658
  config_ext_id?: string | null;
@@ -5097,6 +5719,11 @@ interface components {
5097
5719
  * @default []
5098
5720
  */
5099
5721
  pinned_workspaces: string[];
5722
+ /**
5723
+ * Pinned Templates
5724
+ * @default []
5725
+ */
5726
+ pinned_templates: string[];
5100
5727
  /**
5101
5728
  * Tableviews
5102
5729
  * @default []
@@ -5139,9 +5766,14 @@ interface components {
5139
5766
  show_help_page: boolean;
5140
5767
  /**
5141
5768
  * Show Templates
5142
- * @default false
5769
+ * @default true
5143
5770
  */
5144
5771
  show_templates: boolean;
5772
+ /**
5773
+ * Show Pa Mode
5774
+ * @default false
5775
+ */
5776
+ show_pa_mode: boolean;
5145
5777
  /**
5146
5778
  * Hide Online Status
5147
5779
  * @default false
@@ -5166,6 +5798,8 @@ interface components {
5166
5798
  subscription?: components['schemas']['TrialUpdate'] | null;
5167
5799
  /** Pinned Workspaces */
5168
5800
  pinned_workspaces?: string[] | null;
5801
+ /** Pinned Templates */
5802
+ pinned_templates?: string[] | null;
5169
5803
  /** Tableviews */
5170
5804
  tableviews?: components['schemas']['TableView'][] | null;
5171
5805
  /** Show Document Navigator */
@@ -5182,6 +5816,8 @@ interface components {
5182
5816
  show_help_page?: boolean | null;
5183
5817
  /** Show Templates */
5184
5818
  show_templates?: boolean | null;
5819
+ /** Show Pa Mode */
5820
+ show_pa_mode?: boolean | null;
5185
5821
  /** Hide Online Status */
5186
5822
  hide_online_status?: boolean | null;
5187
5823
  /** Muted Users */
@@ -5195,6 +5831,10 @@ interface components {
5195
5831
  msg: string;
5196
5832
  /** Error Type */
5197
5833
  type: string;
5834
+ /** Input */
5835
+ input?: unknown;
5836
+ /** Context */
5837
+ ctx?: Record<string, never>;
5198
5838
  };
5199
5839
  /** VerifyEmailRequest */
5200
5840
  VerifyEmailRequest: {
@@ -5209,6 +5849,33 @@ interface components {
5209
5849
  /** Detail */
5210
5850
  detail: string;
5211
5851
  };
5852
+ /**
5853
+ * ViewDocumentPagesDetail
5854
+ * @description Detail for a view_document_pages tool call.
5855
+ */
5856
+ ViewDocumentPagesDetail: {
5857
+ /**
5858
+ * Tool
5859
+ * @default view_document_pages
5860
+ * @constant
5861
+ */
5862
+ tool: 'view_document_pages';
5863
+ /**
5864
+ * Doc Ext Id
5865
+ * @description Document external ID
5866
+ */
5867
+ doc_ext_id: string;
5868
+ /**
5869
+ * From Page
5870
+ * @description Start page number
5871
+ */
5872
+ from_page: number;
5873
+ /**
5874
+ * To Page
5875
+ * @description End page number
5876
+ */
5877
+ to_page: number;
5878
+ };
5212
5879
  /**
5213
5880
  * VisionLLMConfig
5214
5881
  * @description Configuration for VisionLLM — visually inspects document pages.
@@ -5228,7 +5895,7 @@ interface components {
5228
5895
  /**
5229
5896
  * Model Name
5230
5897
  * @description The vision-capable model name (must support image inputs).
5231
- * @default Q3VL@ARBICITY
5898
+ * @default Fast
5232
5899
  */
5233
5900
  MODEL_NAME: string;
5234
5901
  /**
@@ -5274,6 +5941,23 @@ interface components {
5274
5941
  */
5275
5942
  SAVE_SOURCES: boolean;
5276
5943
  };
5944
+ /**
5945
+ * WebSearchDetail
5946
+ * @description Detail for a web_search tool call.
5947
+ */
5948
+ WebSearchDetail: {
5949
+ /**
5950
+ * Tool
5951
+ * @default web_search
5952
+ * @constant
5953
+ */
5954
+ tool: 'web_search';
5955
+ /**
5956
+ * Query
5957
+ * @description Search query (truncated to 80 chars)
5958
+ */
5959
+ query: string;
5960
+ };
5277
5961
  /**
5278
5962
  * WebSocketSchemas
5279
5963
  * @description Container for all WebSocket message schemas.
@@ -5289,6 +5973,7 @@ interface components {
5289
5973
  error?: components['schemas']['ErrorMessage'] | null;
5290
5974
  task_update?: components['schemas']['TaskUpdateMessage'] | null;
5291
5975
  batch_complete?: components['schemas']['BatchCompleteMessage'] | null;
5976
+ response_complete?: components['schemas']['ResponseCompleteMessage'] | null;
5292
5977
  notification?: components['schemas']['NotificationResponse'] | null;
5293
5978
  auth?: components['schemas']['AuthMessage'] | null;
5294
5979
  send_message?: components['schemas']['SendMessageRequest'] | null;
@@ -6387,6 +7072,8 @@ interface operations {
6387
7072
  wp_type?: string | null;
6388
7073
  /** @description Tag to link the document to */
6389
7074
  tag_ext_id?: string | null;
7075
+ /** @description Optional logical folder path (URL safe) */
7076
+ folder?: string | null;
6390
7077
  };
6391
7078
  header?: never;
6392
7079
  path?: never;
@@ -7587,7 +8274,7 @@ interface operations {
7587
8274
  };
7588
8275
  };
7589
8276
  };
7590
- query_v1_responses_post: {
8277
+ create_response: {
7591
8278
  parameters: {
7592
8279
  query?: never;
7593
8280
  header?: never;
@@ -7606,7 +8293,47 @@ interface operations {
7606
8293
  [name: string]: unknown;
7607
8294
  };
7608
8295
  content: {
7609
- 'application/json': unknown;
8296
+ 'text/event-stream': unknown;
8297
+ };
8298
+ };
8299
+ /** @description Accepted */
8300
+ 202: {
8301
+ headers: {
8302
+ [name: string]: unknown;
8303
+ };
8304
+ content: {
8305
+ 'application/json': components['schemas']['ResponsesAPIResponse'];
8306
+ };
8307
+ };
8308
+ /** @description Validation Error */
8309
+ 422: {
8310
+ headers: {
8311
+ [name: string]: unknown;
8312
+ };
8313
+ content: {
8314
+ 'application/json': components['schemas']['HTTPValidationError'];
8315
+ };
8316
+ };
8317
+ };
8318
+ };
8319
+ get_response: {
8320
+ parameters: {
8321
+ query?: never;
8322
+ header?: never;
8323
+ path: {
8324
+ response_id: string;
8325
+ };
8326
+ cookie?: never;
8327
+ };
8328
+ requestBody?: never;
8329
+ responses: {
8330
+ /** @description Successful Response */
8331
+ 200: {
8332
+ headers: {
8333
+ [name: string]: unknown;
8334
+ };
8335
+ content: {
8336
+ 'application/json': components['schemas']['ResponsesAPIResponse'];
7610
8337
  };
7611
8338
  };
7612
8339
  /** @description Validation Error */