From 9d184e480b322dc0de25767603d4614755acc4dd Mon Sep 17 00:00:00 2001 From: raphael-goetz Date: Thu, 21 Nov 2024 21:46:53 +0100 Subject: [PATCH] fix: adjusted communication to execution --- proto/aquila/action_execute.proto | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/proto/aquila/action_execute.proto b/proto/aquila/action_execute.proto index 899dcad..d3148d4 100644 --- a/proto/aquila/action_execute.proto +++ b/proto/aquila/action_execute.proto @@ -16,16 +16,13 @@ message ActionResult { repeated string result = 1; } +message ActionResultRequest {} -message ActionResultRequest { +message ActionResultResponse { string execution_identifier = 1; optional ActionResult action_result = 2; } -message ActionResultResponse { - bool successful = 1; -} - service ActionCallService { rpc Call (ActionCallRequest) returns (ActionCallResponse); }