Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/acp-bridge/src/acp-agent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -736,7 +736,7 @@ export class RelayACPAgent implements acp.Agent {

try {
const relay = this.relay!;
const agent = await relay.spawnPty({
const agent = await relay.spawnAgent({
name,
cli,
task,
Expand Down
2 changes: 1 addition & 1 deletion packages/openclaw/src/spawn/process.ts
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ export class ProcessSpawnProvider implements SpawnProvider {
} as NodeJS.ProcessEnv,
});

await relay.spawnPty({
await relay.spawnAgent({
name: agentName,
cli: 'node',
args: [bridgePath],
Expand Down
Loading