@botcord/daemon 0.2.76 → 0.2.78

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.
@@ -0,0 +1,17 @@
1
+ import type { RuntimeModelProbe, RuntimeParameterProbe } from "@botcord/protocol-core";
2
+ import type { RuntimeProbeEntry } from "./adapters/runtimes.js";
3
+ export interface RuntimeModelDiscovery {
4
+ models?: RuntimeModelProbe[];
5
+ parameters?: RuntimeParameterProbe[];
6
+ }
7
+ export declare function discoverRuntimeModelCatalog(entry: RuntimeProbeEntry): RuntimeModelDiscovery;
8
+ export declare function discoverRuntimeModels(entry: RuntimeProbeEntry): RuntimeModelProbe[] | undefined;
9
+ export declare function discoverRuntimeParameters(entry: RuntimeProbeEntry): RuntimeParameterProbe[] | undefined;
10
+ export declare function discoverClaudeModels(): RuntimeModelProbe[];
11
+ export declare function discoverCodexModels(command: string | undefined): RuntimeModelProbe[] | undefined;
12
+ export declare function parseCodexModelCatalog(raw: string): RuntimeModelProbe[] | undefined;
13
+ export declare function discoverDeepseekModels(command: string | undefined): RuntimeModelProbe[] | undefined;
14
+ export declare function parseDeepseekModelList(raw: string): RuntimeModelProbe[] | undefined;
15
+ export declare function discoverKimiModels(): RuntimeModelProbe[] | undefined;
16
+ export declare function parseKimiConfigModels(raw: string): RuntimeModelProbe[] | undefined;
17
+ export declare function parseKimiRuntimeParameters(raw: string): RuntimeParameterProbe[];