mirror of
https://github.com/getcompanion-ai/co-mono.git
synced 2026-04-15 09:01:14 +00:00
fix
This commit is contained in:
parent
d207cf37c3
commit
48d3e90b8c
1 changed files with 2 additions and 1 deletions
|
|
@ -5,6 +5,7 @@ import type { ImageContent } from "@mariozechner/pi-ai";
|
|||
import type { AgentMessage } from "@mariozechner/pi-agent-core";
|
||||
import type { AgentSession, AgentSessionEvent } from "./agent-session.js";
|
||||
import { SessionManager } from "./session-manager.js";
|
||||
import type { Settings } from "./settings-manager.js";
|
||||
import {
|
||||
createVercelStreamListener,
|
||||
errorVercelStream,
|
||||
|
|
@ -939,7 +940,7 @@ export class GatewayRuntime {
|
|||
|
||||
private async handlePatchConfig(patch: Record<string, unknown>): Promise<void> {
|
||||
// Apply overrides on top of current settings (in-memory only for daemon use)
|
||||
this.primarySession.settingsManager.applyOverrides(patch as import("./settings-manager.js").Settings);
|
||||
this.primarySession.settingsManager.applyOverrides(patch as Settings);
|
||||
}
|
||||
|
||||
private handleGetChannelsStatus(): ChannelStatus[] {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue