@arbidocs/client 0.3.57 → 0.3.59
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.cts +60 -41
- package/dist/index.d.ts +60 -41
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1129,6 +1129,11 @@ interface paths {
|
|
|
1129
1129
|
*
|
|
1130
1130
|
* Returns 202 Accepted immediately - processing happens in background.
|
|
1131
1131
|
* WebSocket notification sent when complete.
|
|
1132
|
+
*
|
|
1133
|
+
* Pre-checks the project's AI budget against LiteLLM and rejects with
|
|
1134
|
+
* 402 ``QUOTA_EXCEEDED`` before kicking off background work — these
|
|
1135
|
+
* docs are already indexed/completed, so we can't surface mid-flight
|
|
1136
|
+
* failures via the per-doc status path that the upload pipeline uses.
|
|
1132
1137
|
*/
|
|
1133
1138
|
post: operations['generate_doctags'];
|
|
1134
1139
|
delete?: never;
|
|
@@ -2081,7 +2086,7 @@ interface components {
|
|
|
2081
2086
|
/**
|
|
2082
2087
|
* Skills Enabled
|
|
2083
2088
|
* @description Enable the skills system: /skill (create) and /<skill-name> (invoke) commands.
|
|
2084
|
-
* @default
|
|
2089
|
+
* @default true
|
|
2085
2090
|
*/
|
|
2086
2091
|
SKILLS_ENABLED: boolean;
|
|
2087
2092
|
/**
|
|
@@ -2090,6 +2095,12 @@ interface components {
|
|
|
2090
2095
|
* @default false
|
|
2091
2096
|
*/
|
|
2092
2097
|
SKILL_CREATION: boolean;
|
|
2098
|
+
/**
|
|
2099
|
+
* Memory Creation
|
|
2100
|
+
* @description Transient flag set by /setup command to enable the save_memory agent tool (authors the per-workspace practice-profile memory document).
|
|
2101
|
+
* @default false
|
|
2102
|
+
*/
|
|
2103
|
+
MEMORY_CREATION: boolean;
|
|
2093
2104
|
/**
|
|
2094
2105
|
* Review Enabled
|
|
2095
2106
|
* @description Enable ReviewLLM to review agent draft answers against source material before sending to the user. Uses the reasoning model for higher quality.
|
|
@@ -2156,7 +2167,7 @@ interface components {
|
|
|
2156
2167
|
* @description System prompt for the agent. Dynamic context is appended automatically.
|
|
2157
2168
|
* @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.
|
|
2158
2169
|
*
|
|
2159
|
-
* 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.
|
|
2170
|
+
* 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. If the user asks about a specific workspace document, call read_document or get_table_of_contents — never answer from memory.
|
|
2160
2171
|
*
|
|
2161
2172
|
* 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.
|
|
2162
2173
|
*
|
|
@@ -2239,8 +2250,9 @@ interface components {
|
|
|
2239
2250
|
* "VISION_ENABLED": false,
|
|
2240
2251
|
* "PERSONAL_AGENT": false,
|
|
2241
2252
|
* "MEMORY_ENABLED": false,
|
|
2242
|
-
* "SKILLS_ENABLED":
|
|
2253
|
+
* "SKILLS_ENABLED": true,
|
|
2243
2254
|
* "SKILL_CREATION": false,
|
|
2255
|
+
* "MEMORY_CREATION": false,
|
|
2244
2256
|
* "REVIEW_ENABLED": false,
|
|
2245
2257
|
* "PERSONA": "You are ARBI, an AI assistant created by ARBI CITY. Be proactive, helpful and professional.",
|
|
2246
2258
|
* "AGENT_MODEL_NAME": "auto",
|
|
@@ -2251,7 +2263,7 @@ interface components {
|
|
|
2251
2263
|
* "AGENT_MAX_ITERATIONS": 20,
|
|
2252
2264
|
* "AGENT_MAX_PARALLEL_TOOL_CALLS": 10,
|
|
2253
2265
|
* "AGENT_HISTORY_CHAR_THRESHOLD": 8000,
|
|
2254
|
-
* "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 INDEX:\nThe \"Workspace Documents\" table in your system prompt already lists every document with its Id, Title, Date, Pages, and Subject. Use this table directly when the user asks to list, catalogue, or tabulate documents — do NOT call any tools for that. Only use tools when you need to read or search document content.\n\nDOCUMENT STRATEGY:\n- For listing/cataloguing documents: use the document index already in your prompt — no tool calls needed.\n- For overview/summary requests: use get_table_of_contents first, then read key sections with read_document.\n- For specific questions: use search_inside_documents to find relevant sections, then read those sections with read_document.\n- For translation, deep analysis, or detailed summaries of a single document: use read_document with no ranges to load the complete text.\n- For extracting structured findings from passages: use read_document with digest=true or search_inside_documents with digest=true.\n- Never search for meta-queries like \"summary\", \"overview\", or \"all documents\" — 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."
|
|
2266
|
+
* "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. If the user asks about a specific workspace document, call read_document or get_table_of_contents — never answer from memory.\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 INDEX:\nThe \"Workspace Documents\" table in your system prompt already lists every document with its Id, Title, Date, Pages, and Subject. Use this table directly when the user asks to list, catalogue, or tabulate documents — do NOT call any tools for that. Only use tools when you need to read or search document content.\n\nDOCUMENT STRATEGY:\n- For listing/cataloguing documents: use the document index already in your prompt — no tool calls needed.\n- For overview/summary requests: use get_table_of_contents first, then read key sections with read_document.\n- For specific questions: use search_inside_documents to find relevant sections, then read those sections with read_document.\n- For translation, deep analysis, or detailed summaries of a single document: use read_document with no ranges to load the complete text.\n- For extracting structured findings from passages: use read_document with digest=true or search_inside_documents with digest=true.\n- Never search for meta-queries like \"summary\", \"overview\", or \"all documents\" — 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."
|
|
2255
2267
|
* }
|
|
2256
2268
|
*/
|
|
2257
2269
|
Agents: components['schemas']['AgentsConfig'];
|
|
@@ -2261,7 +2273,7 @@ interface components {
|
|
|
2261
2273
|
* "ENABLE_THINKING": false,
|
|
2262
2274
|
* "MODEL_NAME": "Fast",
|
|
2263
2275
|
* "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.",
|
|
2264
|
-
* "
|
|
2276
|
+
* "MAX_TOKEN_SIZE_TO_ANSWER": 200000,
|
|
2265
2277
|
* "TEMPERATURE": 0.1,
|
|
2266
2278
|
* "MAX_TOKENS": 5000
|
|
2267
2279
|
* }
|
|
@@ -2275,7 +2287,7 @@ interface components {
|
|
|
2275
2287
|
* "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.",
|
|
2276
2288
|
* "TEMPERATURE": 0.1,
|
|
2277
2289
|
* "MAX_TOKENS": 5000,
|
|
2278
|
-
* "
|
|
2290
|
+
* "MAX_TOKEN_SIZE_TO_ANSWER": 200000
|
|
2279
2291
|
* }
|
|
2280
2292
|
*/
|
|
2281
2293
|
ReviewLLM: components['schemas']['ReviewLLMConfig'];
|
|
@@ -2287,7 +2299,7 @@ interface components {
|
|
|
2287
2299
|
* "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.",
|
|
2288
2300
|
* "TEMPERATURE": 0.1,
|
|
2289
2301
|
* "MAX_TOKENS": 20000,
|
|
2290
|
-
* "
|
|
2302
|
+
* "MAX_TOKEN_SIZE_TO_ANSWER": 200000
|
|
2291
2303
|
* }
|
|
2292
2304
|
*/
|
|
2293
2305
|
EvaluatorLLM: components['schemas']['EvaluatorLLMConfig'];
|
|
@@ -2297,7 +2309,7 @@ interface components {
|
|
|
2297
2309
|
* "ENABLE_THINKING": false,
|
|
2298
2310
|
* "MODEL_NAME": "Fast",
|
|
2299
2311
|
* "SYSTEM_INSTRUCTION": "You are a title generator that creates concise, descriptive titles.\n\nOutput the title as plain text only. Do not use Markdown or any other formatting. Specifically:\n- Do not bold, italicize, or otherwise emphasize any part of the title.\n- Do not include asterisks (*), underscores (_), backticks (`), or other Markdown markers.\n- Do not prefix the title with bullets, dashes (-), or numbered/lettered enumeration (e.g. \"1.\", \"a)\").\n- Do not wrap the title in quotes or brackets.",
|
|
2300
|
-
* "
|
|
2312
|
+
* "MAX_TOKEN_SIZE_TO_ANSWER": 20,
|
|
2301
2313
|
* "TEMPERATURE": 0.3,
|
|
2302
2314
|
* "MAX_TOKENS": 20
|
|
2303
2315
|
* }
|
|
@@ -2311,7 +2323,7 @@ interface components {
|
|
|
2311
2323
|
* "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.",
|
|
2312
2324
|
* "TEMPERATURE": 0.1,
|
|
2313
2325
|
* "MAX_TOKENS": 2000,
|
|
2314
|
-
* "
|
|
2326
|
+
* "MAX_TOKEN_SIZE_TO_ANSWER": 200000,
|
|
2315
2327
|
* "COMPACTION_THRESHOLD_TOKENS": 0,
|
|
2316
2328
|
* "COMPACTION_KEEP_RECENT": 4
|
|
2317
2329
|
* }
|
|
@@ -2323,7 +2335,7 @@ interface components {
|
|
|
2323
2335
|
* "ENABLE_THINKING": false,
|
|
2324
2336
|
* "MODEL_NAME": "Fast",
|
|
2325
2337
|
* "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\n- Output answers as plain text only. Do not use Markdown or any other formatting:\n - Do not bold, italicize, or otherwise emphasize any part of the answer.\n - Do not include asterisks (*), underscores (_), backticks (`), or other Markdown markers.\n - Do not prefix answers with bullets, dashes (-), or numbered/lettered enumeration (e.g. \"1.\", \"a)\").\n - Write multi-point answers as flowing sentences, not as a list.",
|
|
2326
|
-
* "
|
|
2338
|
+
* "MAX_TOKEN_CONTEXT_TO_ANSWER": 200000,
|
|
2327
2339
|
* "TEMPERATURE": 0.1,
|
|
2328
2340
|
* "MAX_TOKENS": 2000,
|
|
2329
2341
|
* "MAX_CONCURRENT_DOCS": 10,
|
|
@@ -2386,7 +2398,7 @@ interface components {
|
|
|
2386
2398
|
* "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.",
|
|
2387
2399
|
* "TEMPERATURE": 0.3,
|
|
2388
2400
|
* "MAX_TOKENS": 8000,
|
|
2389
|
-
* "
|
|
2401
|
+
* "MAX_TOKEN_CONTEXT": 200000,
|
|
2390
2402
|
* "MAX_CONCURRENT": 5
|
|
2391
2403
|
* }
|
|
2392
2404
|
*/
|
|
@@ -2399,7 +2411,7 @@ interface components {
|
|
|
2399
2411
|
* "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_inside_documents: Search workspace documents for relevant passages (semantic, keyword, or hybrid). Use digest=true to extract learnings.\n- read_document: Read page ranges or entire documents. Use digest=true to extract learnings with citations.\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.",
|
|
2400
2412
|
* "TEMPERATURE": 0.3,
|
|
2401
2413
|
* "MAX_TOKENS": 4000,
|
|
2402
|
-
* "
|
|
2414
|
+
* "MAX_TOKEN_SIZE_TO_ANSWER": 200000,
|
|
2403
2415
|
* "APPROVAL_TIMEOUT": 0
|
|
2404
2416
|
* }
|
|
2405
2417
|
*/
|
|
@@ -3633,11 +3645,11 @@ interface components {
|
|
|
3633
3645
|
*/
|
|
3634
3646
|
SYSTEM_INSTRUCTION: string;
|
|
3635
3647
|
/**
|
|
3636
|
-
* Max
|
|
3637
|
-
* @description Maximum
|
|
3638
|
-
* @default
|
|
3648
|
+
* Max Token Context To Answer
|
|
3649
|
+
* @description Maximum input tokens in document for context.
|
|
3650
|
+
* @default 200000
|
|
3639
3651
|
*/
|
|
3640
|
-
|
|
3652
|
+
MAX_TOKEN_CONTEXT_TO_ANSWER: number;
|
|
3641
3653
|
/**
|
|
3642
3654
|
* Temperature
|
|
3643
3655
|
* @description Temperature for factual answers.
|
|
@@ -3800,11 +3812,11 @@ interface components {
|
|
|
3800
3812
|
*/
|
|
3801
3813
|
MAX_TOKENS: number;
|
|
3802
3814
|
/**
|
|
3803
|
-
* Max
|
|
3804
|
-
* @description Maximum
|
|
3805
|
-
* @default
|
|
3815
|
+
* Max Token Size To Answer
|
|
3816
|
+
* @description Maximum input token size for evaluation context.
|
|
3817
|
+
* @default 200000
|
|
3806
3818
|
*/
|
|
3807
|
-
|
|
3819
|
+
MAX_TOKEN_SIZE_TO_ANSWER: number;
|
|
3808
3820
|
};
|
|
3809
3821
|
/**
|
|
3810
3822
|
* FileDeleteResponse
|
|
@@ -4241,11 +4253,11 @@ interface components {
|
|
|
4241
4253
|
*/
|
|
4242
4254
|
MAX_TOKENS: number;
|
|
4243
4255
|
/**
|
|
4244
|
-
* Max
|
|
4245
|
-
* @description Maximum
|
|
4246
|
-
* @default
|
|
4256
|
+
* Max Token Context
|
|
4257
|
+
* @description Maximum tokens of input context.
|
|
4258
|
+
* @default 200000
|
|
4247
4259
|
*/
|
|
4248
|
-
|
|
4260
|
+
MAX_TOKEN_CONTEXT: number;
|
|
4249
4261
|
/**
|
|
4250
4262
|
* Max Concurrent
|
|
4251
4263
|
* @description Maximum concurrent synthesis operations.
|
|
@@ -4931,11 +4943,11 @@ interface components {
|
|
|
4931
4943
|
*/
|
|
4932
4944
|
MAX_TOKENS: number;
|
|
4933
4945
|
/**
|
|
4934
|
-
* Max
|
|
4935
|
-
* @description Maximum
|
|
4946
|
+
* Max Token Size To Answer
|
|
4947
|
+
* @description Maximum input token size for planning context.
|
|
4936
4948
|
* @default 200000
|
|
4937
4949
|
*/
|
|
4938
|
-
|
|
4950
|
+
MAX_TOKEN_SIZE_TO_ANSWER: number;
|
|
4939
4951
|
/**
|
|
4940
4952
|
* Approval Timeout
|
|
4941
4953
|
* @description Seconds to wait for user approval after generating the plan. 0 = no approval (auto-proceed). Safe for non-interactive contexts.
|
|
@@ -5252,11 +5264,11 @@ interface components {
|
|
|
5252
5264
|
*/
|
|
5253
5265
|
SYSTEM_INSTRUCTION: string;
|
|
5254
5266
|
/**
|
|
5255
|
-
* Max
|
|
5256
|
-
* @description Maximum
|
|
5267
|
+
* Max Token Size To Answer
|
|
5268
|
+
* @description Maximum input token size to answer.
|
|
5257
5269
|
* @default 200000
|
|
5258
5270
|
*/
|
|
5259
|
-
|
|
5271
|
+
MAX_TOKEN_SIZE_TO_ANSWER: number;
|
|
5260
5272
|
/**
|
|
5261
5273
|
* Temperature
|
|
5262
5274
|
* @description Temperature value for randomness.
|
|
@@ -6179,11 +6191,11 @@ interface components {
|
|
|
6179
6191
|
*/
|
|
6180
6192
|
MAX_TOKENS: number;
|
|
6181
6193
|
/**
|
|
6182
|
-
* Max
|
|
6183
|
-
* @description Maximum
|
|
6194
|
+
* Max Token Size To Answer
|
|
6195
|
+
* @description Maximum input token size for review context.
|
|
6184
6196
|
* @default 200000
|
|
6185
6197
|
*/
|
|
6186
|
-
|
|
6198
|
+
MAX_TOKEN_SIZE_TO_ANSWER: number;
|
|
6187
6199
|
};
|
|
6188
6200
|
/**
|
|
6189
6201
|
* RunCodeConfig
|
|
@@ -6609,11 +6621,11 @@ interface components {
|
|
|
6609
6621
|
*/
|
|
6610
6622
|
MAX_TOKENS: number;
|
|
6611
6623
|
/**
|
|
6612
|
-
* Max
|
|
6613
|
-
* @description Maximum
|
|
6624
|
+
* Max Token Size To Answer
|
|
6625
|
+
* @description Maximum input token size of conversation history to summarise.
|
|
6614
6626
|
* @default 200000
|
|
6615
6627
|
*/
|
|
6616
|
-
|
|
6628
|
+
MAX_TOKEN_SIZE_TO_ANSWER: number;
|
|
6617
6629
|
/**
|
|
6618
6630
|
* Compaction Threshold Tokens
|
|
6619
6631
|
* @description Auto-compact when thread tokens exceed this threshold. 0 = disabled.
|
|
@@ -6801,11 +6813,11 @@ interface components {
|
|
|
6801
6813
|
*/
|
|
6802
6814
|
SYSTEM_INSTRUCTION: string;
|
|
6803
6815
|
/**
|
|
6804
|
-
* Max
|
|
6805
|
-
* @description Maximum
|
|
6806
|
-
* @default
|
|
6816
|
+
* Max Token Size To Answer
|
|
6817
|
+
* @description Maximum input token size to answer.
|
|
6818
|
+
* @default 20
|
|
6807
6819
|
*/
|
|
6808
|
-
|
|
6820
|
+
MAX_TOKEN_SIZE_TO_ANSWER: number;
|
|
6809
6821
|
/**
|
|
6810
6822
|
* Temperature
|
|
6811
6823
|
* @description Temperature value for randomness.
|
|
@@ -7261,6 +7273,11 @@ interface components {
|
|
|
7261
7273
|
* @default []
|
|
7262
7274
|
*/
|
|
7263
7275
|
pinned_templates: string[];
|
|
7276
|
+
/**
|
|
7277
|
+
* Pinned Skills
|
|
7278
|
+
* @default []
|
|
7279
|
+
*/
|
|
7280
|
+
pinned_skills: string[];
|
|
7264
7281
|
/**
|
|
7265
7282
|
* Tableviews
|
|
7266
7283
|
* @default []
|
|
@@ -7298,7 +7315,7 @@ interface components {
|
|
|
7298
7315
|
show_help_page: boolean;
|
|
7299
7316
|
/**
|
|
7300
7317
|
* Show Templates
|
|
7301
|
-
* @default
|
|
7318
|
+
* @default false
|
|
7302
7319
|
*/
|
|
7303
7320
|
show_templates: boolean;
|
|
7304
7321
|
/**
|
|
@@ -7344,6 +7361,8 @@ interface components {
|
|
|
7344
7361
|
pinned_workspaces?: string[] | null;
|
|
7345
7362
|
/** Pinned Templates */
|
|
7346
7363
|
pinned_templates?: string[] | null;
|
|
7364
|
+
/** Pinned Skills */
|
|
7365
|
+
pinned_skills?: string[] | null;
|
|
7347
7366
|
/** Tableviews */
|
|
7348
7367
|
tableviews?: components['schemas']['TableView'][] | null;
|
|
7349
7368
|
/** Show Document Navigator */
|
package/dist/index.d.ts
CHANGED
|
@@ -1129,6 +1129,11 @@ interface paths {
|
|
|
1129
1129
|
*
|
|
1130
1130
|
* Returns 202 Accepted immediately - processing happens in background.
|
|
1131
1131
|
* WebSocket notification sent when complete.
|
|
1132
|
+
*
|
|
1133
|
+
* Pre-checks the project's AI budget against LiteLLM and rejects with
|
|
1134
|
+
* 402 ``QUOTA_EXCEEDED`` before kicking off background work — these
|
|
1135
|
+
* docs are already indexed/completed, so we can't surface mid-flight
|
|
1136
|
+
* failures via the per-doc status path that the upload pipeline uses.
|
|
1132
1137
|
*/
|
|
1133
1138
|
post: operations['generate_doctags'];
|
|
1134
1139
|
delete?: never;
|
|
@@ -2081,7 +2086,7 @@ interface components {
|
|
|
2081
2086
|
/**
|
|
2082
2087
|
* Skills Enabled
|
|
2083
2088
|
* @description Enable the skills system: /skill (create) and /<skill-name> (invoke) commands.
|
|
2084
|
-
* @default
|
|
2089
|
+
* @default true
|
|
2085
2090
|
*/
|
|
2086
2091
|
SKILLS_ENABLED: boolean;
|
|
2087
2092
|
/**
|
|
@@ -2090,6 +2095,12 @@ interface components {
|
|
|
2090
2095
|
* @default false
|
|
2091
2096
|
*/
|
|
2092
2097
|
SKILL_CREATION: boolean;
|
|
2098
|
+
/**
|
|
2099
|
+
* Memory Creation
|
|
2100
|
+
* @description Transient flag set by /setup command to enable the save_memory agent tool (authors the per-workspace practice-profile memory document).
|
|
2101
|
+
* @default false
|
|
2102
|
+
*/
|
|
2103
|
+
MEMORY_CREATION: boolean;
|
|
2093
2104
|
/**
|
|
2094
2105
|
* Review Enabled
|
|
2095
2106
|
* @description Enable ReviewLLM to review agent draft answers against source material before sending to the user. Uses the reasoning model for higher quality.
|
|
@@ -2156,7 +2167,7 @@ interface components {
|
|
|
2156
2167
|
* @description System prompt for the agent. Dynamic context is appended automatically.
|
|
2157
2168
|
* @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.
|
|
2158
2169
|
*
|
|
2159
|
-
* 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.
|
|
2170
|
+
* 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. If the user asks about a specific workspace document, call read_document or get_table_of_contents — never answer from memory.
|
|
2160
2171
|
*
|
|
2161
2172
|
* 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.
|
|
2162
2173
|
*
|
|
@@ -2239,8 +2250,9 @@ interface components {
|
|
|
2239
2250
|
* "VISION_ENABLED": false,
|
|
2240
2251
|
* "PERSONAL_AGENT": false,
|
|
2241
2252
|
* "MEMORY_ENABLED": false,
|
|
2242
|
-
* "SKILLS_ENABLED":
|
|
2253
|
+
* "SKILLS_ENABLED": true,
|
|
2243
2254
|
* "SKILL_CREATION": false,
|
|
2255
|
+
* "MEMORY_CREATION": false,
|
|
2244
2256
|
* "REVIEW_ENABLED": false,
|
|
2245
2257
|
* "PERSONA": "You are ARBI, an AI assistant created by ARBI CITY. Be proactive, helpful and professional.",
|
|
2246
2258
|
* "AGENT_MODEL_NAME": "auto",
|
|
@@ -2251,7 +2263,7 @@ interface components {
|
|
|
2251
2263
|
* "AGENT_MAX_ITERATIONS": 20,
|
|
2252
2264
|
* "AGENT_MAX_PARALLEL_TOOL_CALLS": 10,
|
|
2253
2265
|
* "AGENT_HISTORY_CHAR_THRESHOLD": 8000,
|
|
2254
|
-
* "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 INDEX:\nThe \"Workspace Documents\" table in your system prompt already lists every document with its Id, Title, Date, Pages, and Subject. Use this table directly when the user asks to list, catalogue, or tabulate documents — do NOT call any tools for that. Only use tools when you need to read or search document content.\n\nDOCUMENT STRATEGY:\n- For listing/cataloguing documents: use the document index already in your prompt — no tool calls needed.\n- For overview/summary requests: use get_table_of_contents first, then read key sections with read_document.\n- For specific questions: use search_inside_documents to find relevant sections, then read those sections with read_document.\n- For translation, deep analysis, or detailed summaries of a single document: use read_document with no ranges to load the complete text.\n- For extracting structured findings from passages: use read_document with digest=true or search_inside_documents with digest=true.\n- Never search for meta-queries like \"summary\", \"overview\", or \"all documents\" — 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."
|
|
2266
|
+
* "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. If the user asks about a specific workspace document, call read_document or get_table_of_contents — never answer from memory.\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 INDEX:\nThe \"Workspace Documents\" table in your system prompt already lists every document with its Id, Title, Date, Pages, and Subject. Use this table directly when the user asks to list, catalogue, or tabulate documents — do NOT call any tools for that. Only use tools when you need to read or search document content.\n\nDOCUMENT STRATEGY:\n- For listing/cataloguing documents: use the document index already in your prompt — no tool calls needed.\n- For overview/summary requests: use get_table_of_contents first, then read key sections with read_document.\n- For specific questions: use search_inside_documents to find relevant sections, then read those sections with read_document.\n- For translation, deep analysis, or detailed summaries of a single document: use read_document with no ranges to load the complete text.\n- For extracting structured findings from passages: use read_document with digest=true or search_inside_documents with digest=true.\n- Never search for meta-queries like \"summary\", \"overview\", or \"all documents\" — 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."
|
|
2255
2267
|
* }
|
|
2256
2268
|
*/
|
|
2257
2269
|
Agents: components['schemas']['AgentsConfig'];
|
|
@@ -2261,7 +2273,7 @@ interface components {
|
|
|
2261
2273
|
* "ENABLE_THINKING": false,
|
|
2262
2274
|
* "MODEL_NAME": "Fast",
|
|
2263
2275
|
* "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.",
|
|
2264
|
-
* "
|
|
2276
|
+
* "MAX_TOKEN_SIZE_TO_ANSWER": 200000,
|
|
2265
2277
|
* "TEMPERATURE": 0.1,
|
|
2266
2278
|
* "MAX_TOKENS": 5000
|
|
2267
2279
|
* }
|
|
@@ -2275,7 +2287,7 @@ interface components {
|
|
|
2275
2287
|
* "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.",
|
|
2276
2288
|
* "TEMPERATURE": 0.1,
|
|
2277
2289
|
* "MAX_TOKENS": 5000,
|
|
2278
|
-
* "
|
|
2290
|
+
* "MAX_TOKEN_SIZE_TO_ANSWER": 200000
|
|
2279
2291
|
* }
|
|
2280
2292
|
*/
|
|
2281
2293
|
ReviewLLM: components['schemas']['ReviewLLMConfig'];
|
|
@@ -2287,7 +2299,7 @@ interface components {
|
|
|
2287
2299
|
* "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.",
|
|
2288
2300
|
* "TEMPERATURE": 0.1,
|
|
2289
2301
|
* "MAX_TOKENS": 20000,
|
|
2290
|
-
* "
|
|
2302
|
+
* "MAX_TOKEN_SIZE_TO_ANSWER": 200000
|
|
2291
2303
|
* }
|
|
2292
2304
|
*/
|
|
2293
2305
|
EvaluatorLLM: components['schemas']['EvaluatorLLMConfig'];
|
|
@@ -2297,7 +2309,7 @@ interface components {
|
|
|
2297
2309
|
* "ENABLE_THINKING": false,
|
|
2298
2310
|
* "MODEL_NAME": "Fast",
|
|
2299
2311
|
* "SYSTEM_INSTRUCTION": "You are a title generator that creates concise, descriptive titles.\n\nOutput the title as plain text only. Do not use Markdown or any other formatting. Specifically:\n- Do not bold, italicize, or otherwise emphasize any part of the title.\n- Do not include asterisks (*), underscores (_), backticks (`), or other Markdown markers.\n- Do not prefix the title with bullets, dashes (-), or numbered/lettered enumeration (e.g. \"1.\", \"a)\").\n- Do not wrap the title in quotes or brackets.",
|
|
2300
|
-
* "
|
|
2312
|
+
* "MAX_TOKEN_SIZE_TO_ANSWER": 20,
|
|
2301
2313
|
* "TEMPERATURE": 0.3,
|
|
2302
2314
|
* "MAX_TOKENS": 20
|
|
2303
2315
|
* }
|
|
@@ -2311,7 +2323,7 @@ interface components {
|
|
|
2311
2323
|
* "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.",
|
|
2312
2324
|
* "TEMPERATURE": 0.1,
|
|
2313
2325
|
* "MAX_TOKENS": 2000,
|
|
2314
|
-
* "
|
|
2326
|
+
* "MAX_TOKEN_SIZE_TO_ANSWER": 200000,
|
|
2315
2327
|
* "COMPACTION_THRESHOLD_TOKENS": 0,
|
|
2316
2328
|
* "COMPACTION_KEEP_RECENT": 4
|
|
2317
2329
|
* }
|
|
@@ -2323,7 +2335,7 @@ interface components {
|
|
|
2323
2335
|
* "ENABLE_THINKING": false,
|
|
2324
2336
|
* "MODEL_NAME": "Fast",
|
|
2325
2337
|
* "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\n- Output answers as plain text only. Do not use Markdown or any other formatting:\n - Do not bold, italicize, or otherwise emphasize any part of the answer.\n - Do not include asterisks (*), underscores (_), backticks (`), or other Markdown markers.\n - Do not prefix answers with bullets, dashes (-), or numbered/lettered enumeration (e.g. \"1.\", \"a)\").\n - Write multi-point answers as flowing sentences, not as a list.",
|
|
2326
|
-
* "
|
|
2338
|
+
* "MAX_TOKEN_CONTEXT_TO_ANSWER": 200000,
|
|
2327
2339
|
* "TEMPERATURE": 0.1,
|
|
2328
2340
|
* "MAX_TOKENS": 2000,
|
|
2329
2341
|
* "MAX_CONCURRENT_DOCS": 10,
|
|
@@ -2386,7 +2398,7 @@ interface components {
|
|
|
2386
2398
|
* "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.",
|
|
2387
2399
|
* "TEMPERATURE": 0.3,
|
|
2388
2400
|
* "MAX_TOKENS": 8000,
|
|
2389
|
-
* "
|
|
2401
|
+
* "MAX_TOKEN_CONTEXT": 200000,
|
|
2390
2402
|
* "MAX_CONCURRENT": 5
|
|
2391
2403
|
* }
|
|
2392
2404
|
*/
|
|
@@ -2399,7 +2411,7 @@ interface components {
|
|
|
2399
2411
|
* "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_inside_documents: Search workspace documents for relevant passages (semantic, keyword, or hybrid). Use digest=true to extract learnings.\n- read_document: Read page ranges or entire documents. Use digest=true to extract learnings with citations.\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.",
|
|
2400
2412
|
* "TEMPERATURE": 0.3,
|
|
2401
2413
|
* "MAX_TOKENS": 4000,
|
|
2402
|
-
* "
|
|
2414
|
+
* "MAX_TOKEN_SIZE_TO_ANSWER": 200000,
|
|
2403
2415
|
* "APPROVAL_TIMEOUT": 0
|
|
2404
2416
|
* }
|
|
2405
2417
|
*/
|
|
@@ -3633,11 +3645,11 @@ interface components {
|
|
|
3633
3645
|
*/
|
|
3634
3646
|
SYSTEM_INSTRUCTION: string;
|
|
3635
3647
|
/**
|
|
3636
|
-
* Max
|
|
3637
|
-
* @description Maximum
|
|
3638
|
-
* @default
|
|
3648
|
+
* Max Token Context To Answer
|
|
3649
|
+
* @description Maximum input tokens in document for context.
|
|
3650
|
+
* @default 200000
|
|
3639
3651
|
*/
|
|
3640
|
-
|
|
3652
|
+
MAX_TOKEN_CONTEXT_TO_ANSWER: number;
|
|
3641
3653
|
/**
|
|
3642
3654
|
* Temperature
|
|
3643
3655
|
* @description Temperature for factual answers.
|
|
@@ -3800,11 +3812,11 @@ interface components {
|
|
|
3800
3812
|
*/
|
|
3801
3813
|
MAX_TOKENS: number;
|
|
3802
3814
|
/**
|
|
3803
|
-
* Max
|
|
3804
|
-
* @description Maximum
|
|
3805
|
-
* @default
|
|
3815
|
+
* Max Token Size To Answer
|
|
3816
|
+
* @description Maximum input token size for evaluation context.
|
|
3817
|
+
* @default 200000
|
|
3806
3818
|
*/
|
|
3807
|
-
|
|
3819
|
+
MAX_TOKEN_SIZE_TO_ANSWER: number;
|
|
3808
3820
|
};
|
|
3809
3821
|
/**
|
|
3810
3822
|
* FileDeleteResponse
|
|
@@ -4241,11 +4253,11 @@ interface components {
|
|
|
4241
4253
|
*/
|
|
4242
4254
|
MAX_TOKENS: number;
|
|
4243
4255
|
/**
|
|
4244
|
-
* Max
|
|
4245
|
-
* @description Maximum
|
|
4246
|
-
* @default
|
|
4256
|
+
* Max Token Context
|
|
4257
|
+
* @description Maximum tokens of input context.
|
|
4258
|
+
* @default 200000
|
|
4247
4259
|
*/
|
|
4248
|
-
|
|
4260
|
+
MAX_TOKEN_CONTEXT: number;
|
|
4249
4261
|
/**
|
|
4250
4262
|
* Max Concurrent
|
|
4251
4263
|
* @description Maximum concurrent synthesis operations.
|
|
@@ -4931,11 +4943,11 @@ interface components {
|
|
|
4931
4943
|
*/
|
|
4932
4944
|
MAX_TOKENS: number;
|
|
4933
4945
|
/**
|
|
4934
|
-
* Max
|
|
4935
|
-
* @description Maximum
|
|
4946
|
+
* Max Token Size To Answer
|
|
4947
|
+
* @description Maximum input token size for planning context.
|
|
4936
4948
|
* @default 200000
|
|
4937
4949
|
*/
|
|
4938
|
-
|
|
4950
|
+
MAX_TOKEN_SIZE_TO_ANSWER: number;
|
|
4939
4951
|
/**
|
|
4940
4952
|
* Approval Timeout
|
|
4941
4953
|
* @description Seconds to wait for user approval after generating the plan. 0 = no approval (auto-proceed). Safe for non-interactive contexts.
|
|
@@ -5252,11 +5264,11 @@ interface components {
|
|
|
5252
5264
|
*/
|
|
5253
5265
|
SYSTEM_INSTRUCTION: string;
|
|
5254
5266
|
/**
|
|
5255
|
-
* Max
|
|
5256
|
-
* @description Maximum
|
|
5267
|
+
* Max Token Size To Answer
|
|
5268
|
+
* @description Maximum input token size to answer.
|
|
5257
5269
|
* @default 200000
|
|
5258
5270
|
*/
|
|
5259
|
-
|
|
5271
|
+
MAX_TOKEN_SIZE_TO_ANSWER: number;
|
|
5260
5272
|
/**
|
|
5261
5273
|
* Temperature
|
|
5262
5274
|
* @description Temperature value for randomness.
|
|
@@ -6179,11 +6191,11 @@ interface components {
|
|
|
6179
6191
|
*/
|
|
6180
6192
|
MAX_TOKENS: number;
|
|
6181
6193
|
/**
|
|
6182
|
-
* Max
|
|
6183
|
-
* @description Maximum
|
|
6194
|
+
* Max Token Size To Answer
|
|
6195
|
+
* @description Maximum input token size for review context.
|
|
6184
6196
|
* @default 200000
|
|
6185
6197
|
*/
|
|
6186
|
-
|
|
6198
|
+
MAX_TOKEN_SIZE_TO_ANSWER: number;
|
|
6187
6199
|
};
|
|
6188
6200
|
/**
|
|
6189
6201
|
* RunCodeConfig
|
|
@@ -6609,11 +6621,11 @@ interface components {
|
|
|
6609
6621
|
*/
|
|
6610
6622
|
MAX_TOKENS: number;
|
|
6611
6623
|
/**
|
|
6612
|
-
* Max
|
|
6613
|
-
* @description Maximum
|
|
6624
|
+
* Max Token Size To Answer
|
|
6625
|
+
* @description Maximum input token size of conversation history to summarise.
|
|
6614
6626
|
* @default 200000
|
|
6615
6627
|
*/
|
|
6616
|
-
|
|
6628
|
+
MAX_TOKEN_SIZE_TO_ANSWER: number;
|
|
6617
6629
|
/**
|
|
6618
6630
|
* Compaction Threshold Tokens
|
|
6619
6631
|
* @description Auto-compact when thread tokens exceed this threshold. 0 = disabled.
|
|
@@ -6801,11 +6813,11 @@ interface components {
|
|
|
6801
6813
|
*/
|
|
6802
6814
|
SYSTEM_INSTRUCTION: string;
|
|
6803
6815
|
/**
|
|
6804
|
-
* Max
|
|
6805
|
-
* @description Maximum
|
|
6806
|
-
* @default
|
|
6816
|
+
* Max Token Size To Answer
|
|
6817
|
+
* @description Maximum input token size to answer.
|
|
6818
|
+
* @default 20
|
|
6807
6819
|
*/
|
|
6808
|
-
|
|
6820
|
+
MAX_TOKEN_SIZE_TO_ANSWER: number;
|
|
6809
6821
|
/**
|
|
6810
6822
|
* Temperature
|
|
6811
6823
|
* @description Temperature value for randomness.
|
|
@@ -7261,6 +7273,11 @@ interface components {
|
|
|
7261
7273
|
* @default []
|
|
7262
7274
|
*/
|
|
7263
7275
|
pinned_templates: string[];
|
|
7276
|
+
/**
|
|
7277
|
+
* Pinned Skills
|
|
7278
|
+
* @default []
|
|
7279
|
+
*/
|
|
7280
|
+
pinned_skills: string[];
|
|
7264
7281
|
/**
|
|
7265
7282
|
* Tableviews
|
|
7266
7283
|
* @default []
|
|
@@ -7298,7 +7315,7 @@ interface components {
|
|
|
7298
7315
|
show_help_page: boolean;
|
|
7299
7316
|
/**
|
|
7300
7317
|
* Show Templates
|
|
7301
|
-
* @default
|
|
7318
|
+
* @default false
|
|
7302
7319
|
*/
|
|
7303
7320
|
show_templates: boolean;
|
|
7304
7321
|
/**
|
|
@@ -7344,6 +7361,8 @@ interface components {
|
|
|
7344
7361
|
pinned_workspaces?: string[] | null;
|
|
7345
7362
|
/** Pinned Templates */
|
|
7346
7363
|
pinned_templates?: string[] | null;
|
|
7364
|
+
/** Pinned Skills */
|
|
7365
|
+
pinned_skills?: string[] | null;
|
|
7347
7366
|
/** Tableviews */
|
|
7348
7367
|
tableviews?: components['schemas']['TableView'][] | null;
|
|
7349
7368
|
/** Show Document Navigator */
|
package/package.json
CHANGED