refactor: introduce model-agnostic agent interfaces (#323)

This commit is contained in:
Junmo Kim
2026-03-20 08:45:32 +08:00
committed by GitHub
parent ea45797b6f
commit d76b1a6ac0
19 changed files with 52 additions and 42 deletions
+1 -1
View File
@@ -171,7 +171,7 @@ class OpencodeRemoteLauncher extends RemoteLauncherBase {
private handleAgentMessage(message: AgentMessage): void {
const converted = convertAgentMessage(message);
if (converted) {
this.session.sendCodexMessage(converted);
this.session.sendAgentMessage(converted);
}
switch (message.type) {