@nextclaw/server 0.15.20 → 0.15.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +162 -50
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1957 -1794
- package/dist/index.js.map +1 -1
- package/package.json +6 -6
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as _$hono from "hono";
|
|
2
2
|
import { Context, Hono } from "hono";
|
|
3
3
|
import * as _$_nextclaw_kernel0 from "@nextclaw/kernel";
|
|
4
|
-
import { AccessManager, InboxDeliveryManager,
|
|
4
|
+
import { AccessManager, InboxDeliveryManager, NextclawKernel, PanelAppAgentCapability, PanelAppAgentGenerateObjectRequest, PanelAppAgentGenerateObjectResult, PanelAppAgentSendRequest, PanelAppAgentSendResult, PanelAppBridgeSession, PanelAppCapabilityGrant, PanelAppClientGrant, PanelAppEntry, PanelAppList, PanelAppManager, PanelAppPreferencesUpdate, PreferenceJsonValue, PreferenceManager, ProjectRecord, ProjectTemplate, ProjectTemplateId, ServiceAction, ServiceActionGrant, ServiceActionInvokeResult, ServiceAppDeleteResult, ServiceAppList, ServiceAppManager, ServiceAppRecord } from "@nextclaw/kernel";
|
|
5
5
|
import * as NextclawCore from "@nextclaw/core";
|
|
6
6
|
import { Config, ConfigActionExecuteRequest as ConfigActionExecuteRequest$1, ConfigActionExecuteResult as ConfigActionExecuteResult$1, ExtensionChannelBinding, ExtensionUiMetadata, ModelThinkingCapability, ThinkingLevel } from "@nextclaw/core";
|
|
7
7
|
import { NcpMessage, NcpSessionApi, NcpSessionMessagePageInfo, NcpSessionStatus, NcpSessionSummary } from "@nextclaw/ncp";
|
|
@@ -1265,10 +1265,6 @@ type RemoteServiceActionResult = {
|
|
|
1265
1265
|
message: string;
|
|
1266
1266
|
};
|
|
1267
1267
|
//#endregion
|
|
1268
|
-
//#region ../nextclaw-core/src/shared/lib/core-utils/utils/thinking.d.ts
|
|
1269
|
-
declare const THINKING_LEVELS: readonly ["off", "minimal", "low", "medium", "high", "adaptive", "xhigh"];
|
|
1270
|
-
type ThinkingLevel$1 = (typeof THINKING_LEVELS)[number];
|
|
1271
|
-
//#endregion
|
|
1272
1268
|
//#region src/features/sessions/types/chat-session-type.types.d.ts
|
|
1273
1269
|
type ChatSessionTypeIconView = {
|
|
1274
1270
|
kind: "image";
|
|
@@ -1371,6 +1367,7 @@ type ProviderInstanceView = {
|
|
|
1371
1367
|
isCustom: boolean;
|
|
1372
1368
|
enabled: boolean;
|
|
1373
1369
|
displayName?: string;
|
|
1370
|
+
apiKeyRequired?: boolean;
|
|
1374
1371
|
apiKeySet: boolean;
|
|
1375
1372
|
apiKeyMasked?: string;
|
|
1376
1373
|
apiBase?: string | null;
|
|
@@ -1406,6 +1403,7 @@ type ProviderConfigUpdate = {
|
|
|
1406
1403
|
type ProviderConnectionTestRequest = ProviderConfigUpdate & {
|
|
1407
1404
|
model?: string | null;
|
|
1408
1405
|
};
|
|
1406
|
+
type ProviderModelDiscoveryRequest = Pick<ProviderConfigUpdate, "apiKey" | "apiBase" | "extraHeaders">;
|
|
1409
1407
|
type ProviderCreateRequest = ProviderConfigUpdate & {
|
|
1410
1408
|
providerId?: string | null;
|
|
1411
1409
|
};
|
|
@@ -1424,10 +1422,32 @@ type ProviderConnectionTestResult = {
|
|
|
1424
1422
|
latencyMs: number;
|
|
1425
1423
|
message: string;
|
|
1426
1424
|
};
|
|
1425
|
+
type ProviderModelDiscoveryResult = {
|
|
1426
|
+
provider: string;
|
|
1427
|
+
models: string[];
|
|
1428
|
+
source: "provider" | "catalog";
|
|
1429
|
+
fetchedAt: string;
|
|
1430
|
+
};
|
|
1431
|
+
type ProviderModelCatalogView = {
|
|
1432
|
+
refreshIntervalMs: number;
|
|
1433
|
+
refreshing: boolean;
|
|
1434
|
+
lastRefreshStartedAt: string | null;
|
|
1435
|
+
lastRefreshCompletedAt: string | null;
|
|
1436
|
+
providers: Record<string, {
|
|
1437
|
+
providerId: string;
|
|
1438
|
+
models: string[];
|
|
1439
|
+
source: "provider" | "catalog" | null;
|
|
1440
|
+
fetchedAt: string | null;
|
|
1441
|
+
lastError: {
|
|
1442
|
+
message: string;
|
|
1443
|
+
occurredAt: string;
|
|
1444
|
+
} | null;
|
|
1445
|
+
}>;
|
|
1446
|
+
};
|
|
1427
1447
|
type ProvidersView = {
|
|
1428
1448
|
providers: Record<string, ProviderInstanceView>;
|
|
1429
1449
|
};
|
|
1430
|
-
type SearchProviderName = "bocha" | "tavily" | "brave";
|
|
1450
|
+
type SearchProviderName = "bocha" | "tavily" | "brave" | "exa";
|
|
1431
1451
|
type BochaFreshnessValue = "noLimit" | "oneDay" | "oneWeek" | "oneMonth" | "oneYear" | string;
|
|
1432
1452
|
type TavilySearchDepthValue = "basic" | "advanced";
|
|
1433
1453
|
type SearchProviderConfigView = {
|
|
@@ -1451,6 +1471,7 @@ type SearchConfigView = {
|
|
|
1451
1471
|
bocha: SearchProviderConfigView;
|
|
1452
1472
|
tavily: SearchProviderConfigView;
|
|
1453
1473
|
brave: SearchProviderConfigView;
|
|
1474
|
+
exa: SearchProviderConfigView;
|
|
1454
1475
|
};
|
|
1455
1476
|
};
|
|
1456
1477
|
type SearchConfigUpdate = {
|
|
@@ -1477,6 +1498,10 @@ type SearchConfigUpdate = {
|
|
|
1477
1498
|
apiKey?: string | null;
|
|
1478
1499
|
baseUrl?: string | null;
|
|
1479
1500
|
};
|
|
1501
|
+
exa?: {
|
|
1502
|
+
apiKey?: string | null;
|
|
1503
|
+
baseUrl?: string | null;
|
|
1504
|
+
};
|
|
1480
1505
|
};
|
|
1481
1506
|
};
|
|
1482
1507
|
type ProviderAuthStartResult = {
|
|
@@ -1861,6 +1886,7 @@ type ProviderTemplateView = {
|
|
|
1861
1886
|
envKey: string;
|
|
1862
1887
|
isGateway?: boolean;
|
|
1863
1888
|
isLocal?: boolean;
|
|
1889
|
+
apiKeyRequired?: boolean;
|
|
1864
1890
|
defaultApiBase?: string;
|
|
1865
1891
|
logo?: string;
|
|
1866
1892
|
apiBaseHelp?: {
|
|
@@ -1889,6 +1915,7 @@ type ProviderTemplateView = {
|
|
|
1889
1915
|
supportsCliImport?: boolean;
|
|
1890
1916
|
};
|
|
1891
1917
|
defaultModels?: string[];
|
|
1918
|
+
supportsModelDiscovery?: boolean;
|
|
1892
1919
|
modelConfig?: Record<string, {
|
|
1893
1920
|
thinking?: {
|
|
1894
1921
|
supported: ThinkingLevel[];
|
|
@@ -2194,7 +2221,7 @@ type UiExtensionHost = {
|
|
|
2194
2221
|
getChannelBindings: () => ExtensionChannelBinding[];
|
|
2195
2222
|
getUiMetadata: () => ExtensionUiMetadata[];
|
|
2196
2223
|
};
|
|
2197
|
-
type UiKernelHost = Pick<NextclawKernel, "assetStore" | "eventBus" | "ingress" | "inboxDeliveryManager" | "isSessionRunning" | "listSessionTypes" | "agentRunRequestManager" | "llmProviders" | "sessionManager" | "sessionRunManager" | "panelAppManager" | "preferenceManager" | "projectManager" | "serviceAppManager" | "sessionContextCompactionManager"> & {
|
|
2224
|
+
type UiKernelHost = Pick<NextclawKernel, "assetStore" | "eventBus" | "ingress" | "inboxDeliveryManager" | "isSessionRunning" | "listSessionTypes" | "agentRunRequestManager" | "agentContextWindowManager" | "llmProviders" | "providerModelCatalog" | "sessionManager" | "sessionRunManager" | "panelAppManager" | "preferenceManager" | "projectManager" | "serviceAppManager" | "sessionContextCompactionManager"> & {
|
|
2198
2225
|
accessManager?: NextclawKernel["accessManager"];
|
|
2199
2226
|
};
|
|
2200
2227
|
type UiCronHost = {
|
|
@@ -2298,6 +2325,7 @@ declare function createUiRouter(options: UiRouterOptions, authServiceOverride?:
|
|
|
2298
2325
|
declare class ConfigRoutesController {
|
|
2299
2326
|
private readonly options;
|
|
2300
2327
|
private readonly channelConfigApplyTasks;
|
|
2328
|
+
private readonly providerConnectivity;
|
|
2301
2329
|
constructor(options: UiRouterOptions);
|
|
2302
2330
|
private readonly getExtensionConfigProjectionOptions;
|
|
2303
2331
|
private readonly publishConfigUpdatedPaths;
|
|
@@ -2318,7 +2346,7 @@ declare class ConfigRoutesController {
|
|
|
2318
2346
|
engineConfig?: {
|
|
2319
2347
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
2320
2348
|
} | undefined;
|
|
2321
|
-
thinkingDefault?: ThinkingLevel
|
|
2349
|
+
thinkingDefault?: NextclawCore.ThinkingLevel | undefined;
|
|
2322
2350
|
models?: {
|
|
2323
2351
|
[x: string]: {
|
|
2324
2352
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
@@ -2365,7 +2393,7 @@ declare class ConfigRoutesController {
|
|
|
2365
2393
|
engineConfig?: {
|
|
2366
2394
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
2367
2395
|
} | undefined;
|
|
2368
|
-
thinkingDefault?: ThinkingLevel
|
|
2396
|
+
thinkingDefault?: NextclawCore.ThinkingLevel | undefined;
|
|
2369
2397
|
models?: {
|
|
2370
2398
|
[x: string]: {
|
|
2371
2399
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
@@ -2400,6 +2428,7 @@ declare class ConfigRoutesController {
|
|
|
2400
2428
|
isCustom: boolean;
|
|
2401
2429
|
enabled: boolean;
|
|
2402
2430
|
displayName?: string | undefined;
|
|
2431
|
+
apiKeyRequired?: boolean | undefined;
|
|
2403
2432
|
apiKeySet: boolean;
|
|
2404
2433
|
apiKeyMasked?: string | undefined;
|
|
2405
2434
|
apiBase?: string | null | undefined;
|
|
@@ -2411,8 +2440,8 @@ declare class ConfigRoutesController {
|
|
|
2411
2440
|
modelConfig?: {
|
|
2412
2441
|
[x: string]: {
|
|
2413
2442
|
thinking?: {
|
|
2414
|
-
supported: ThinkingLevel
|
|
2415
|
-
default?: (ThinkingLevel
|
|
2443
|
+
supported: NextclawCore.ThinkingLevel[];
|
|
2444
|
+
default?: (NextclawCore.ThinkingLevel | null) | undefined;
|
|
2416
2445
|
} | undefined;
|
|
2417
2446
|
vision?: boolean | undefined;
|
|
2418
2447
|
};
|
|
@@ -2459,6 +2488,17 @@ declare class ConfigRoutesController {
|
|
|
2459
2488
|
searchDepth?: TavilySearchDepthValue | undefined;
|
|
2460
2489
|
includeAnswer?: boolean | undefined;
|
|
2461
2490
|
};
|
|
2491
|
+
exa: {
|
|
2492
|
+
enabled: boolean;
|
|
2493
|
+
apiKeySet: boolean;
|
|
2494
|
+
apiKeyMasked?: string | undefined;
|
|
2495
|
+
baseUrl: string;
|
|
2496
|
+
docsUrl?: string | undefined;
|
|
2497
|
+
summary?: boolean | undefined;
|
|
2498
|
+
freshness?: BochaFreshnessValue | undefined;
|
|
2499
|
+
searchDepth?: TavilySearchDepthValue | undefined;
|
|
2500
|
+
includeAnswer?: boolean | undefined;
|
|
2501
|
+
};
|
|
2462
2502
|
};
|
|
2463
2503
|
};
|
|
2464
2504
|
channels: {
|
|
@@ -2557,6 +2597,7 @@ declare class ConfigRoutesController {
|
|
|
2557
2597
|
isCustom: boolean;
|
|
2558
2598
|
enabled: boolean;
|
|
2559
2599
|
displayName?: string | undefined;
|
|
2600
|
+
apiKeyRequired?: boolean | undefined;
|
|
2560
2601
|
apiKeySet: boolean;
|
|
2561
2602
|
apiKeyMasked?: string | undefined;
|
|
2562
2603
|
apiBase?: string | null | undefined;
|
|
@@ -2568,8 +2609,8 @@ declare class ConfigRoutesController {
|
|
|
2568
2609
|
modelConfig?: {
|
|
2569
2610
|
[x: string]: {
|
|
2570
2611
|
thinking?: {
|
|
2571
|
-
supported: ThinkingLevel
|
|
2572
|
-
default?: (ThinkingLevel
|
|
2612
|
+
supported: NextclawCore.ThinkingLevel[];
|
|
2613
|
+
default?: (NextclawCore.ThinkingLevel | null) | undefined;
|
|
2573
2614
|
} | undefined;
|
|
2574
2615
|
vision?: boolean | undefined;
|
|
2575
2616
|
};
|
|
@@ -2591,6 +2632,7 @@ declare class ConfigRoutesController {
|
|
|
2591
2632
|
envKey: string;
|
|
2592
2633
|
isGateway?: boolean | undefined;
|
|
2593
2634
|
isLocal?: boolean | undefined;
|
|
2635
|
+
apiKeyRequired?: boolean | undefined;
|
|
2594
2636
|
defaultApiBase?: string | undefined;
|
|
2595
2637
|
logo?: string | undefined;
|
|
2596
2638
|
apiBaseHelp?: {
|
|
@@ -2619,11 +2661,12 @@ declare class ConfigRoutesController {
|
|
|
2619
2661
|
supportsCliImport?: boolean | undefined;
|
|
2620
2662
|
} | undefined;
|
|
2621
2663
|
defaultModels?: string[] | undefined;
|
|
2664
|
+
supportsModelDiscovery?: boolean | undefined;
|
|
2622
2665
|
modelConfig?: {
|
|
2623
2666
|
[x: string]: {
|
|
2624
2667
|
thinking?: {
|
|
2625
|
-
supported: ThinkingLevel
|
|
2626
|
-
default?: (ThinkingLevel
|
|
2668
|
+
supported: NextclawCore.ThinkingLevel[];
|
|
2669
|
+
default?: (NextclawCore.ThinkingLevel | null) | undefined;
|
|
2627
2670
|
} | undefined;
|
|
2628
2671
|
vision?: boolean | undefined;
|
|
2629
2672
|
};
|
|
@@ -2634,6 +2677,27 @@ declare class ConfigRoutesController {
|
|
|
2634
2677
|
}[];
|
|
2635
2678
|
};
|
|
2636
2679
|
}, _$hono_utils_http_status0.ContentfulStatusCode, "json">;
|
|
2680
|
+
readonly listProviderModelCatalog: (c: Context) => Response & _$hono.TypedResponse<{
|
|
2681
|
+
ok: boolean;
|
|
2682
|
+
data: {
|
|
2683
|
+
refreshIntervalMs: number;
|
|
2684
|
+
refreshing: boolean;
|
|
2685
|
+
lastRefreshStartedAt: string | null;
|
|
2686
|
+
lastRefreshCompletedAt: string | null;
|
|
2687
|
+
providers: {
|
|
2688
|
+
[x: string]: {
|
|
2689
|
+
providerId: string;
|
|
2690
|
+
models: string[];
|
|
2691
|
+
source: "provider" | "catalog" | null;
|
|
2692
|
+
fetchedAt: string | null;
|
|
2693
|
+
lastError: {
|
|
2694
|
+
message: string;
|
|
2695
|
+
occurredAt: string;
|
|
2696
|
+
} | null;
|
|
2697
|
+
};
|
|
2698
|
+
};
|
|
2699
|
+
};
|
|
2700
|
+
}, _$hono_utils_http_status0.ContentfulStatusCode, "json">;
|
|
2637
2701
|
readonly getConfigSchema: (c: Context) => Response & _$hono.TypedResponse<{
|
|
2638
2702
|
ok: boolean;
|
|
2639
2703
|
data: {
|
|
@@ -2757,6 +2821,17 @@ declare class ConfigRoutesController {
|
|
|
2757
2821
|
searchDepth?: TavilySearchDepthValue | undefined;
|
|
2758
2822
|
includeAnswer?: boolean | undefined;
|
|
2759
2823
|
};
|
|
2824
|
+
exa: {
|
|
2825
|
+
enabled: boolean;
|
|
2826
|
+
apiKeySet: boolean;
|
|
2827
|
+
apiKeyMasked?: string | undefined;
|
|
2828
|
+
baseUrl: string;
|
|
2829
|
+
docsUrl?: string | undefined;
|
|
2830
|
+
summary?: boolean | undefined;
|
|
2831
|
+
freshness?: BochaFreshnessValue | undefined;
|
|
2832
|
+
searchDepth?: TavilySearchDepthValue | undefined;
|
|
2833
|
+
includeAnswer?: boolean | undefined;
|
|
2834
|
+
};
|
|
2760
2835
|
};
|
|
2761
2836
|
};
|
|
2762
2837
|
}, _$hono_utils_http_status0.ContentfulStatusCode, "json">)>;
|
|
@@ -2769,7 +2844,7 @@ declare class ConfigRoutesController {
|
|
|
2769
2844
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
2770
2845
|
} | undefined;
|
|
2771
2846
|
};
|
|
2772
|
-
},
|
|
2847
|
+
}, 400, "json">) | (Response & _$hono.TypedResponse<{
|
|
2773
2848
|
ok: boolean;
|
|
2774
2849
|
error: {
|
|
2775
2850
|
code: string;
|
|
@@ -2778,7 +2853,7 @@ declare class ConfigRoutesController {
|
|
|
2778
2853
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
2779
2854
|
} | undefined;
|
|
2780
2855
|
};
|
|
2781
|
-
},
|
|
2856
|
+
}, 404, "json">) | (Response & _$hono.TypedResponse<{
|
|
2782
2857
|
ok: boolean;
|
|
2783
2858
|
data: {
|
|
2784
2859
|
providerId: string;
|
|
@@ -2787,6 +2862,7 @@ declare class ConfigRoutesController {
|
|
|
2787
2862
|
isCustom: boolean;
|
|
2788
2863
|
enabled: boolean;
|
|
2789
2864
|
displayName?: string | undefined;
|
|
2865
|
+
apiKeyRequired?: boolean | undefined;
|
|
2790
2866
|
apiKeySet: boolean;
|
|
2791
2867
|
apiKeyMasked?: string | undefined;
|
|
2792
2868
|
apiBase?: string | null | undefined;
|
|
@@ -2798,8 +2874,8 @@ declare class ConfigRoutesController {
|
|
|
2798
2874
|
modelConfig?: {
|
|
2799
2875
|
[x: string]: {
|
|
2800
2876
|
thinking?: {
|
|
2801
|
-
supported: ThinkingLevel
|
|
2802
|
-
default?: (ThinkingLevel
|
|
2877
|
+
supported: NextclawCore.ThinkingLevel[];
|
|
2878
|
+
default?: (NextclawCore.ThinkingLevel | null) | undefined;
|
|
2803
2879
|
} | undefined;
|
|
2804
2880
|
vision?: boolean | undefined;
|
|
2805
2881
|
};
|
|
@@ -2835,6 +2911,7 @@ declare class ConfigRoutesController {
|
|
|
2835
2911
|
isCustom: boolean;
|
|
2836
2912
|
enabled: boolean;
|
|
2837
2913
|
displayName?: string | undefined;
|
|
2914
|
+
apiKeyRequired?: boolean | undefined;
|
|
2838
2915
|
apiKeySet: boolean;
|
|
2839
2916
|
apiKeyMasked?: string | undefined;
|
|
2840
2917
|
apiBase?: string | null | undefined;
|
|
@@ -2846,8 +2923,8 @@ declare class ConfigRoutesController {
|
|
|
2846
2923
|
modelConfig?: {
|
|
2847
2924
|
[x: string]: {
|
|
2848
2925
|
thinking?: {
|
|
2849
|
-
supported: ThinkingLevel
|
|
2850
|
-
default?: (ThinkingLevel
|
|
2926
|
+
supported: NextclawCore.ThinkingLevel[];
|
|
2927
|
+
default?: (NextclawCore.ThinkingLevel | null) | undefined;
|
|
2851
2928
|
} | undefined;
|
|
2852
2929
|
vision?: boolean | undefined;
|
|
2853
2930
|
};
|
|
@@ -2880,7 +2957,7 @@ declare class ConfigRoutesController {
|
|
|
2880
2957
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
2881
2958
|
} | undefined;
|
|
2882
2959
|
};
|
|
2883
|
-
},
|
|
2960
|
+
}, 400, "json">) | (Response & _$hono.TypedResponse<{
|
|
2884
2961
|
ok: boolean;
|
|
2885
2962
|
error: {
|
|
2886
2963
|
code: string;
|
|
@@ -2889,7 +2966,7 @@ declare class ConfigRoutesController {
|
|
|
2889
2966
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
2890
2967
|
} | undefined;
|
|
2891
2968
|
};
|
|
2892
|
-
},
|
|
2969
|
+
}, 404, "json">) | (Response & _$hono.TypedResponse<{
|
|
2893
2970
|
ok: boolean;
|
|
2894
2971
|
data: {
|
|
2895
2972
|
success: boolean;
|
|
@@ -2899,7 +2976,16 @@ declare class ConfigRoutesController {
|
|
|
2899
2976
|
message: string;
|
|
2900
2977
|
};
|
|
2901
2978
|
}, _$hono_utils_http_status0.ContentfulStatusCode, "json">)>;
|
|
2902
|
-
|
|
2979
|
+
discoverProviderModels: (c: Context) => Promise<(Response & _$hono.TypedResponse<{
|
|
2980
|
+
ok: boolean;
|
|
2981
|
+
error: {
|
|
2982
|
+
code: string;
|
|
2983
|
+
message: string;
|
|
2984
|
+
details: {
|
|
2985
|
+
[x: string]: _$hono_utils_types0.JSONValue;
|
|
2986
|
+
} | undefined;
|
|
2987
|
+
};
|
|
2988
|
+
}, 400, "json">) | (Response & _$hono.TypedResponse<{
|
|
2903
2989
|
ok: boolean;
|
|
2904
2990
|
error: {
|
|
2905
2991
|
code: string;
|
|
@@ -2909,6 +2995,24 @@ declare class ConfigRoutesController {
|
|
|
2909
2995
|
} | undefined;
|
|
2910
2996
|
};
|
|
2911
2997
|
}, 404, "json">) | (Response & _$hono.TypedResponse<{
|
|
2998
|
+
ok: boolean;
|
|
2999
|
+
data: {
|
|
3000
|
+
provider: string;
|
|
3001
|
+
models: string[];
|
|
3002
|
+
source: "provider" | "catalog";
|
|
3003
|
+
fetchedAt: string;
|
|
3004
|
+
};
|
|
3005
|
+
}, _$hono_utils_http_status0.ContentfulStatusCode, "json">) | (Response & _$hono.TypedResponse<{
|
|
3006
|
+
ok: boolean;
|
|
3007
|
+
error: {
|
|
3008
|
+
code: string;
|
|
3009
|
+
message: string;
|
|
3010
|
+
details: {
|
|
3011
|
+
[x: string]: _$hono_utils_types0.JSONValue;
|
|
3012
|
+
} | undefined;
|
|
3013
|
+
};
|
|
3014
|
+
}, 502, "json">)>;
|
|
3015
|
+
readonly startProviderAuth: (c: Context) => Promise<(Response & _$hono.TypedResponse<{
|
|
2912
3016
|
ok: boolean;
|
|
2913
3017
|
error: {
|
|
2914
3018
|
code: string;
|
|
@@ -2918,6 +3022,15 @@ declare class ConfigRoutesController {
|
|
|
2918
3022
|
} | undefined;
|
|
2919
3023
|
};
|
|
2920
3024
|
}, 400, "json">) | (Response & _$hono.TypedResponse<{
|
|
3025
|
+
ok: boolean;
|
|
3026
|
+
error: {
|
|
3027
|
+
code: string;
|
|
3028
|
+
message: string;
|
|
3029
|
+
details: {
|
|
3030
|
+
[x: string]: _$hono_utils_types0.JSONValue;
|
|
3031
|
+
} | undefined;
|
|
3032
|
+
};
|
|
3033
|
+
}, 404, "json">) | (Response & _$hono.TypedResponse<{
|
|
2921
3034
|
ok: boolean;
|
|
2922
3035
|
data: {
|
|
2923
3036
|
provider: string;
|
|
@@ -2940,7 +3053,7 @@ declare class ConfigRoutesController {
|
|
|
2940
3053
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
2941
3054
|
} | undefined;
|
|
2942
3055
|
};
|
|
2943
|
-
},
|
|
3056
|
+
}, 400, "json">) | (Response & _$hono.TypedResponse<{
|
|
2944
3057
|
ok: boolean;
|
|
2945
3058
|
error: {
|
|
2946
3059
|
code: string;
|
|
@@ -2949,7 +3062,7 @@ declare class ConfigRoutesController {
|
|
|
2949
3062
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
2950
3063
|
} | undefined;
|
|
2951
3064
|
};
|
|
2952
|
-
},
|
|
3065
|
+
}, 404, "json">) | (Response & _$hono.TypedResponse<{
|
|
2953
3066
|
ok: boolean;
|
|
2954
3067
|
data: {
|
|
2955
3068
|
provider: string;
|
|
@@ -2967,7 +3080,7 @@ declare class ConfigRoutesController {
|
|
|
2967
3080
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
2968
3081
|
} | undefined;
|
|
2969
3082
|
};
|
|
2970
|
-
},
|
|
3083
|
+
}, 400, "json">) | (Response & _$hono.TypedResponse<{
|
|
2971
3084
|
ok: boolean;
|
|
2972
3085
|
error: {
|
|
2973
3086
|
code: string;
|
|
@@ -2976,7 +3089,7 @@ declare class ConfigRoutesController {
|
|
|
2976
3089
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
2977
3090
|
} | undefined;
|
|
2978
3091
|
};
|
|
2979
|
-
},
|
|
3092
|
+
}, 404, "json">) | (Response & _$hono.TypedResponse<{
|
|
2980
3093
|
ok: boolean;
|
|
2981
3094
|
data: {
|
|
2982
3095
|
provider: string;
|
|
@@ -2994,7 +3107,7 @@ declare class ConfigRoutesController {
|
|
|
2994
3107
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
2995
3108
|
} | undefined;
|
|
2996
3109
|
};
|
|
2997
|
-
},
|
|
3110
|
+
}, 400, "json">) | (Response & _$hono.TypedResponse<{
|
|
2998
3111
|
ok: boolean;
|
|
2999
3112
|
error: {
|
|
3000
3113
|
code: string;
|
|
@@ -3003,7 +3116,7 @@ declare class ConfigRoutesController {
|
|
|
3003
3116
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
3004
3117
|
} | undefined;
|
|
3005
3118
|
};
|
|
3006
|
-
},
|
|
3119
|
+
}, 404, "json">) | (Response & _$hono.TypedResponse<{
|
|
3007
3120
|
ok: boolean;
|
|
3008
3121
|
data: {
|
|
3009
3122
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
@@ -3018,7 +3131,7 @@ declare class ConfigRoutesController {
|
|
|
3018
3131
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
3019
3132
|
} | undefined;
|
|
3020
3133
|
};
|
|
3021
|
-
},
|
|
3134
|
+
}, 400, "json">) | (Response & _$hono.TypedResponse<{
|
|
3022
3135
|
ok: boolean;
|
|
3023
3136
|
error: {
|
|
3024
3137
|
code: string;
|
|
@@ -3027,7 +3140,7 @@ declare class ConfigRoutesController {
|
|
|
3027
3140
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
3028
3141
|
} | undefined;
|
|
3029
3142
|
};
|
|
3030
|
-
},
|
|
3143
|
+
}, 404, "json">) | (Response & _$hono.TypedResponse<{
|
|
3031
3144
|
ok: boolean;
|
|
3032
3145
|
data: {
|
|
3033
3146
|
channel: string;
|
|
@@ -3049,7 +3162,7 @@ declare class ConfigRoutesController {
|
|
|
3049
3162
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
3050
3163
|
} | undefined;
|
|
3051
3164
|
};
|
|
3052
|
-
},
|
|
3165
|
+
}, 400, "json">) | (Response & _$hono.TypedResponse<{
|
|
3053
3166
|
ok: boolean;
|
|
3054
3167
|
error: {
|
|
3055
3168
|
code: string;
|
|
@@ -3058,7 +3171,7 @@ declare class ConfigRoutesController {
|
|
|
3058
3171
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
3059
3172
|
} | undefined;
|
|
3060
3173
|
};
|
|
3061
|
-
},
|
|
3174
|
+
}, 404, "json">) | (Response & _$hono.TypedResponse<{
|
|
3062
3175
|
ok: boolean;
|
|
3063
3176
|
data: {
|
|
3064
3177
|
channel: string;
|
|
@@ -3078,7 +3191,7 @@ declare class ConfigRoutesController {
|
|
|
3078
3191
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
3079
3192
|
} | undefined;
|
|
3080
3193
|
};
|
|
3081
|
-
},
|
|
3194
|
+
}, 400, "json">) | (Response & _$hono.TypedResponse<{
|
|
3082
3195
|
ok: boolean;
|
|
3083
3196
|
error: {
|
|
3084
3197
|
code: string;
|
|
@@ -3087,7 +3200,7 @@ declare class ConfigRoutesController {
|
|
|
3087
3200
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
3088
3201
|
} | undefined;
|
|
3089
3202
|
};
|
|
3090
|
-
},
|
|
3203
|
+
}, 404, "json">) | (Response & _$hono.TypedResponse<{
|
|
3091
3204
|
ok: boolean;
|
|
3092
3205
|
data: {
|
|
3093
3206
|
channel: string;
|
|
@@ -3161,7 +3274,7 @@ declare class ConfigRoutesController {
|
|
|
3161
3274
|
engineConfig?: {
|
|
3162
3275
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
3163
3276
|
} | undefined;
|
|
3164
|
-
thinkingDefault?: ThinkingLevel
|
|
3277
|
+
thinkingDefault?: NextclawCore.ThinkingLevel | undefined;
|
|
3165
3278
|
models?: {
|
|
3166
3279
|
[x: string]: {
|
|
3167
3280
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
@@ -3208,7 +3321,7 @@ declare class ConfigRoutesController {
|
|
|
3208
3321
|
engineConfig?: {
|
|
3209
3322
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
3210
3323
|
} | undefined;
|
|
3211
|
-
thinkingDefault?: ThinkingLevel
|
|
3324
|
+
thinkingDefault?: NextclawCore.ThinkingLevel | undefined;
|
|
3212
3325
|
models?: {
|
|
3213
3326
|
[x: string]: {
|
|
3214
3327
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
@@ -3316,7 +3429,6 @@ declare function createProvider(configPath: string, patch?: ProviderCreateReques
|
|
|
3316
3429
|
provider: ProviderConfigView;
|
|
3317
3430
|
} | null;
|
|
3318
3431
|
declare function deleteProvider(configPath: string, providerId: string): boolean | null;
|
|
3319
|
-
declare function testProviderConnection(configPath: string, providerId: string, patch: ProviderConnectionTestRequest, providerManager?: LlmProviderManager): Promise<ProviderConnectionTestResult | null>;
|
|
3320
3432
|
declare function updateChannel(configPath: string, channelName: string, patch: Record<string, unknown>, options?: ExtensionConfigProjectionOptions): Record<string, unknown> | null;
|
|
3321
3433
|
declare function updateRuntime(configPath: string, patch: RuntimeConfigUpdate): Pick<ConfigView, "companion" | "agents" | "bindings" | "session">;
|
|
3322
3434
|
declare function updateSecrets(configPath: string, patch: SecretsConfigUpdate): SecretsView;
|
|
@@ -3354,6 +3466,15 @@ declare class InboxDeliveriesRoutesController {
|
|
|
3354
3466
|
};
|
|
3355
3467
|
}, _$hono_utils_http_status0.ContentfulStatusCode, "json">>;
|
|
3356
3468
|
readonly get: (c: Context) => Promise<(Response & _$hono.TypedResponse<{
|
|
3469
|
+
ok: boolean;
|
|
3470
|
+
error: {
|
|
3471
|
+
code: string;
|
|
3472
|
+
message: string;
|
|
3473
|
+
details: {
|
|
3474
|
+
[x: string]: _$hono_utils_types0.JSONValue;
|
|
3475
|
+
} | undefined;
|
|
3476
|
+
};
|
|
3477
|
+
}, 404, "json">) | (Response & _$hono.TypedResponse<{
|
|
3357
3478
|
ok: boolean;
|
|
3358
3479
|
data: {
|
|
3359
3480
|
id: string;
|
|
@@ -3375,16 +3496,7 @@ declare class InboxDeliveriesRoutesController {
|
|
|
3375
3496
|
archivedAt: string | null;
|
|
3376
3497
|
conversationSessionId: string | null;
|
|
3377
3498
|
};
|
|
3378
|
-
}, _$hono_utils_http_status0.ContentfulStatusCode, "json">)
|
|
3379
|
-
ok: boolean;
|
|
3380
|
-
error: {
|
|
3381
|
-
code: string;
|
|
3382
|
-
message: string;
|
|
3383
|
-
details: {
|
|
3384
|
-
[x: string]: _$hono_utils_types0.JSONValue;
|
|
3385
|
-
} | undefined;
|
|
3386
|
-
};
|
|
3387
|
-
}, 404, "json">)>;
|
|
3499
|
+
}, _$hono_utils_http_status0.ContentfulStatusCode, "json">)>;
|
|
3388
3500
|
readonly updateState: (c: Context) => Promise<(Response & _$hono.TypedResponse<{
|
|
3389
3501
|
ok: boolean;
|
|
3390
3502
|
data: _$hono_utils_types0.JSONValue;
|
|
@@ -3430,5 +3542,5 @@ declare class InboxDeliveriesRoutesController {
|
|
|
3430
3542
|
private handleManagerAction;
|
|
3431
3543
|
}
|
|
3432
3544
|
//#endregion
|
|
3433
|
-
export { AgentBindingView, type AgentCreateRequest, type AgentDeleteResult, type AgentProfileView, type AgentUpdateRequest, ApiError, ApiResponse, AppMetaView, AuthEnabledUpdateRequest, AuthLoginRequest, AuthPasswordUpdateRequest, AuthSetupRequest, AuthStatusView, BindingPeerView, BochaFreshnessValue, BootstrapPhase, BootstrapRemoteState, BootstrapStageState, BootstrapStatusView, ChannelAuthConnectRequest, ChannelAuthConnectResult, ChannelAuthPollRequest, ChannelAuthPollResult, ChannelAuthStartRequest, ChannelAuthStartResult, ChannelSpecView, type ChatSessionTypeCtaView, type ChatSessionTypeOptionView, type ChatSessionTypesView, ConfigActionExecuteRequest, ConfigActionExecuteResult, ConfigActionManifest, ConfigActionType, ConfigMetaView, ConfigRoutesController, ConfigSchemaResponse, ConfigUiHint, ConfigUiHints, ConfigView, CronActionResult, CronCreateRequest, CronCreateResult, CronEnableRequest, CronJobStateView, CronJobView, CronListQuery, CronListStatus, CronListSummaryView, CronListView, CronPayloadView, CronRunRequest, CronScheduleView, InboxDeliveriesRoutesController, MarketplaceApiConfig, MarketplaceInstallKind, MarketplaceInstallRequest, MarketplaceInstallResult, MarketplaceInstallSkillParams, MarketplaceInstallSpec, MarketplaceInstalledRecord, MarketplaceInstalledView, MarketplaceInstaller, MarketplaceItemSummary, MarketplaceItemType, MarketplaceItemView, MarketplaceListView, MarketplaceLocalizedTextMap, MarketplaceManageAction, MarketplaceManageRequest, MarketplaceManageResult, MarketplaceMcpContentView, MarketplaceMcpDoctorResult, MarketplaceMcpInstallKind, MarketplaceMcpInstallRequest, MarketplaceMcpInstallResult, MarketplaceMcpInstallSpec, MarketplaceMcpManageAction, MarketplaceMcpManageRequest, MarketplaceMcpManageResult, MarketplaceMcpTemplateInput, MarketplaceRecommendationView, MarketplaceSceneView, MarketplaceScenesView, MarketplaceSkillContentView, MarketplaceSkillInstallKind, MarketplaceSkillInstallRequest, MarketplaceSkillInstallResult, MarketplaceSkillManageAction, MarketplaceSkillManageRequest, MarketplaceSkillManageResult, MarketplaceSort, NcpAssetRoutesController, NcpSessionContextCompactionView, NcpSessionSkillsView, PanelAppAgentCapabilityView, PanelAppAgentGenerateObjectRequestView, PanelAppAgentGenerateObjectResultView, PanelAppAgentSendRequestView, PanelAppAgentSendResultView, PanelAppBridgeSessionCreateRequest, PanelAppBridgeSessionView, PanelAppCapabilityGrantView, PanelAppClientGrantView, PanelAppDeleteResultView, PanelAppEntryView, PanelAppListView, PanelAppPreferencesUpdateView, PanelAppsRoutesController, PreferenceDeleteResult, PreferenceEntryView, PreferenceUpdateRequest, PreferencesRoutesController, type ProjectAddExistingRequest, type ProjectCreateRequest, type ProjectListView, type ProjectTemplateView, type ProjectView, ProviderAuthImportResult, ProviderAuthPollRequest, ProviderAuthPollResult, ProviderAuthStartRequest, ProviderAuthStartResult, ProviderConfigUpdate, ProviderConfigView, ProviderConnectionTestRequest, ProviderConnectionTestResult, ProviderCreateRequest, ProviderCreateResult, ProviderDeleteResult, ProviderInstanceView, ProviderTemplateView, ProviderTemplatesView, ProvidersView, RemoteAccessView, RemoteAccountProfileUpdateRequest, RemoteAccountView, RemoteBrowserAuthPollRequest, RemoteBrowserAuthPollResult, RemoteBrowserAuthStartRequest, RemoteBrowserAuthStartResult, RemoteConnectionDiagnosticsView, RemoteDisconnectView, RemoteDoctorCheckView, RemoteDoctorView, RemoteLoginRequest, RemoteRuntimeView, RemoteServiceAction, RemoteServiceActionResult, RemoteServiceView, RemoteSettingsUpdateRequest, RemoteSettingsView, RuntimeActionCapability, RuntimeActionImpact, RuntimeConfigUpdate, RuntimeControlAction, RuntimeControlActionResult, RuntimeControlEnvironment, RuntimeControlRoutesController, RuntimeControlView, RuntimeEntryView, RuntimeLifecycleState, RuntimePendingRestart, RuntimeServiceState, SearchConfigUpdate, SearchConfigView, SearchProviderConfigView, SearchProviderName, SearchProviderSpecView, SecretProviderEnvView, SecretProviderExecView, SecretProviderFileView, SecretProviderView, SecretRefView, SecretSourceView, SecretsConfigUpdate, SecretsView, ServerPathBreadcrumbView, ServerPathBrowseView, ServerPathDirectoryCreateRequest, ServerPathDirectoryCreateView, ServerPathEntryView, ServerPathLocationView, ServerPathReadView, ServerPathSearchEntryView, ServerPathSearchView, ServiceActionGrantBatchRequestView, ServiceActionGrantListView, ServiceActionGrantView, ServiceActionInvokeRequestView, ServiceActionInvokeResultView, ServiceActionListView, ServiceActionView, ServiceAppDeleteResultView, ServiceAppListView, ServiceAppRecordView, ServiceAppsRoutesController, SessionConfigView, SessionEntryView, SessionEventView, SessionHistoryView, SessionMessageView, SessionPatchUpdate, SessionSkillEntryView, SessionTypeDescribeParams, SessionsListView, TavilySearchDepthValue, UiNcpAssetPutView, UiNcpAssetService, UiNcpAssetView, UiNcpSessionListView, UiNcpSessionMessagesView, UiNcpSessionQueuedInputView, UiNcpSessionQueuedInputsView, UiNcpSessionService, UiNcpStoredAssetRecord, type UiRemoteAccessHost, type UiRouterOptions, type UiRuntimeControlHost, type UiRuntimeUpdateHost, UiServerEvent, UiServerHandle, buildConfigMeta, buildConfigSchemaView, buildConfigView, buildProviderTemplatesView, buildProvidersView, createProvider, createUiRouter, deleteProvider, ensureUiBridgeSecret, executeConfigAction, getUiBridgeSecretPath, loadConfigOrDefault, readUiBridgeSecret, startUiServer,
|
|
3545
|
+
export { AgentBindingView, type AgentCreateRequest, type AgentDeleteResult, type AgentProfileView, type AgentUpdateRequest, ApiError, ApiResponse, AppMetaView, AuthEnabledUpdateRequest, AuthLoginRequest, AuthPasswordUpdateRequest, AuthSetupRequest, AuthStatusView, BindingPeerView, BochaFreshnessValue, BootstrapPhase, BootstrapRemoteState, BootstrapStageState, BootstrapStatusView, ChannelAuthConnectRequest, ChannelAuthConnectResult, ChannelAuthPollRequest, ChannelAuthPollResult, ChannelAuthStartRequest, ChannelAuthStartResult, ChannelSpecView, type ChatSessionTypeCtaView, type ChatSessionTypeOptionView, type ChatSessionTypesView, ConfigActionExecuteRequest, ConfigActionExecuteResult, ConfigActionManifest, ConfigActionType, ConfigMetaView, ConfigRoutesController, ConfigSchemaResponse, ConfigUiHint, ConfigUiHints, ConfigView, CronActionResult, CronCreateRequest, CronCreateResult, CronEnableRequest, CronJobStateView, CronJobView, CronListQuery, CronListStatus, CronListSummaryView, CronListView, CronPayloadView, CronRunRequest, CronScheduleView, InboxDeliveriesRoutesController, MarketplaceApiConfig, MarketplaceInstallKind, MarketplaceInstallRequest, MarketplaceInstallResult, MarketplaceInstallSkillParams, MarketplaceInstallSpec, MarketplaceInstalledRecord, MarketplaceInstalledView, MarketplaceInstaller, MarketplaceItemSummary, MarketplaceItemType, MarketplaceItemView, MarketplaceListView, MarketplaceLocalizedTextMap, MarketplaceManageAction, MarketplaceManageRequest, MarketplaceManageResult, MarketplaceMcpContentView, MarketplaceMcpDoctorResult, MarketplaceMcpInstallKind, MarketplaceMcpInstallRequest, MarketplaceMcpInstallResult, MarketplaceMcpInstallSpec, MarketplaceMcpManageAction, MarketplaceMcpManageRequest, MarketplaceMcpManageResult, MarketplaceMcpTemplateInput, MarketplaceRecommendationView, MarketplaceSceneView, MarketplaceScenesView, MarketplaceSkillContentView, MarketplaceSkillInstallKind, MarketplaceSkillInstallRequest, MarketplaceSkillInstallResult, MarketplaceSkillManageAction, MarketplaceSkillManageRequest, MarketplaceSkillManageResult, MarketplaceSort, NcpAssetRoutesController, NcpSessionContextCompactionView, NcpSessionSkillsView, PanelAppAgentCapabilityView, PanelAppAgentGenerateObjectRequestView, PanelAppAgentGenerateObjectResultView, PanelAppAgentSendRequestView, PanelAppAgentSendResultView, PanelAppBridgeSessionCreateRequest, PanelAppBridgeSessionView, PanelAppCapabilityGrantView, PanelAppClientGrantView, PanelAppDeleteResultView, PanelAppEntryView, PanelAppListView, PanelAppPreferencesUpdateView, PanelAppsRoutesController, PreferenceDeleteResult, PreferenceEntryView, PreferenceUpdateRequest, PreferencesRoutesController, type ProjectAddExistingRequest, type ProjectCreateRequest, type ProjectListView, type ProjectTemplateView, type ProjectView, ProviderAuthImportResult, ProviderAuthPollRequest, ProviderAuthPollResult, ProviderAuthStartRequest, ProviderAuthStartResult, ProviderConfigUpdate, ProviderConfigView, ProviderConnectionTestRequest, ProviderConnectionTestResult, ProviderCreateRequest, ProviderCreateResult, ProviderDeleteResult, ProviderInstanceView, ProviderModelCatalogView, ProviderModelDiscoveryRequest, ProviderModelDiscoveryResult, ProviderTemplateView, ProviderTemplatesView, ProvidersView, RemoteAccessView, RemoteAccountProfileUpdateRequest, RemoteAccountView, RemoteBrowserAuthPollRequest, RemoteBrowserAuthPollResult, RemoteBrowserAuthStartRequest, RemoteBrowserAuthStartResult, RemoteConnectionDiagnosticsView, RemoteDisconnectView, RemoteDoctorCheckView, RemoteDoctorView, RemoteLoginRequest, RemoteRuntimeView, RemoteServiceAction, RemoteServiceActionResult, RemoteServiceView, RemoteSettingsUpdateRequest, RemoteSettingsView, RuntimeActionCapability, RuntimeActionImpact, RuntimeConfigUpdate, RuntimeControlAction, RuntimeControlActionResult, RuntimeControlEnvironment, RuntimeControlRoutesController, RuntimeControlView, RuntimeEntryView, RuntimeLifecycleState, RuntimePendingRestart, RuntimeServiceState, SearchConfigUpdate, SearchConfigView, SearchProviderConfigView, SearchProviderName, SearchProviderSpecView, SecretProviderEnvView, SecretProviderExecView, SecretProviderFileView, SecretProviderView, SecretRefView, SecretSourceView, SecretsConfigUpdate, SecretsView, ServerPathBreadcrumbView, ServerPathBrowseView, ServerPathDirectoryCreateRequest, ServerPathDirectoryCreateView, ServerPathEntryView, ServerPathLocationView, ServerPathReadView, ServerPathSearchEntryView, ServerPathSearchView, ServiceActionGrantBatchRequestView, ServiceActionGrantListView, ServiceActionGrantView, ServiceActionInvokeRequestView, ServiceActionInvokeResultView, ServiceActionListView, ServiceActionView, ServiceAppDeleteResultView, ServiceAppListView, ServiceAppRecordView, ServiceAppsRoutesController, SessionConfigView, SessionEntryView, SessionEventView, SessionHistoryView, SessionMessageView, SessionPatchUpdate, SessionSkillEntryView, SessionTypeDescribeParams, SessionsListView, TavilySearchDepthValue, UiNcpAssetPutView, UiNcpAssetService, UiNcpAssetView, UiNcpSessionListView, UiNcpSessionMessagesView, UiNcpSessionQueuedInputView, UiNcpSessionQueuedInputsView, UiNcpSessionService, UiNcpStoredAssetRecord, type UiRemoteAccessHost, type UiRouterOptions, type UiRuntimeControlHost, type UiRuntimeUpdateHost, UiServerEvent, UiServerHandle, buildConfigMeta, buildConfigSchemaView, buildConfigView, buildProviderTemplatesView, buildProvidersView, createProvider, createUiRouter, deleteProvider, ensureUiBridgeSecret, executeConfigAction, getUiBridgeSecretPath, loadConfigOrDefault, readUiBridgeSecret, startUiServer, updateChannel, updateModel, updateProvider, updateRuntime, updateSearch, updateSecrets };
|
|
3434
3546
|
//# sourceMappingURL=index.d.ts.map
|