Merge branch 'main' into feat/profile-capability-fallback

This commit is contained in:
若麒
2026-08-26 18:54:01 +08:00
111 changed files with 15923 additions and 136 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "bailian-cli-core",
"version": "1.17.0",
"version": "1.17.1",
"description": "Core SDK for bailian-cli. See https://www.npmjs.com/package/bailian-cli for usage.",
"homepage": "https://bailian.console.aliyun.com/cli",
"bugs": {
@@ -186,6 +186,17 @@ export interface RagAgentConfig {
session_file_max_parse_length?: number;
enable_kb_router?: string;
kb_router_model?: string;
// Fields the server returns in the beta draft config; typed so read-merge-write
// round-trips them without a passthrough warning. Observed value kinds, not docs.
user_system_prompt?: string;
anti_leak_prompt?: string;
refusal_prompt?: string;
credibility_prompt?: string;
enable_thinking?: boolean;
enable_temperature?: boolean;
enable_credibility?: boolean;
enable_max_completion_tokens?: boolean;
session_file_parse_mode?: string;
rerank_top_n?: number;
hybrid_rerank?: Record<string, unknown>;
kb_search_configs?: Array<Record<string, unknown>>;