qlogicagent 2.12.4 → 2.12.6
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.
|
@@ -7,6 +7,16 @@ export interface TeamToolService extends TeamToolDeps {
|
|
|
7
7
|
export interface TeamToolServiceHost {
|
|
8
8
|
readonly currentSessionId: string;
|
|
9
9
|
readonly verbose: boolean;
|
|
10
|
+
/**
|
|
11
|
+
* Current LLM config to hand to spawned member subprocesses. Without it the
|
|
12
|
+
* member has no model and fails its first turn ("cannot connect to llmrouter
|
|
13
|
+
* model catalog"). Returns null when no provider is configured yet.
|
|
14
|
+
*/
|
|
15
|
+
getLlmConfig(): {
|
|
16
|
+
model: string;
|
|
17
|
+
apiKey: string;
|
|
18
|
+
baseUrl?: string;
|
|
19
|
+
} | null;
|
|
10
20
|
sendNotification(method: string, params: Record<string, unknown>): void;
|
|
11
21
|
emitAgentStatus(agentId: string, state: string, extra?: {
|
|
12
22
|
missedBeats?: number;
|