Skip to content

Commit 56942f8

Browse files
committed
update return type
1 parent 3004a63 commit 56942f8

File tree

1 file changed

+1
-1
lines changed
  • typescript-sdk/packages/client/src/agent

1 file changed

+1
-1
lines changed

typescript-sdk/packages/client/src/agent/agent.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ export abstract class AbstractAgent {
5353
public async runAgent(
5454
parameters?: RunAgentParameters,
5555
subscriber?: RunAgentSubscriber,
56-
): Promise<void> {
56+
): Promise<any> {
5757
this.agentId = this.agentId ?? uuidv4();
5858
const input = this.prepareRunAgentInput(parameters);
5959
let result: any = undefined;

0 commit comments

Comments
 (0)