From 2901cd85d6ae543adaf667c001b1eb39911e6647 Mon Sep 17 00:00:00 2001 From: Benjamin Pracht Date: Fri, 17 May 2024 15:06:05 -0700 Subject: [PATCH] feedback --- protobufs/livekit_agent.proto | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/protobufs/livekit_agent.proto b/protobufs/livekit_agent.proto index 5ba57bb0..081a8abf 100644 --- a/protobufs/livekit_agent.proto +++ b/protobufs/livekit_agent.proto @@ -31,7 +31,7 @@ message StartAgentJobRequest { string room_name = 2; optional string participant_identity = 3; string namespace = 4; - map metadata = 5; + string metadata = 5; } message StopAgentJobRequest { @@ -59,7 +59,7 @@ message Job { Room room = 3; optional ParticipantInfo participant = 4; string namespace = 5; - map metadata = 6; + string metadata = 6; JobStatus status = 7; string error = 8; } @@ -182,7 +182,7 @@ message UpdateJobStatus { message UpdateWorkerStatus { optional WorkerStatus status = 1; - optional string metadata = 2 [deprecated=true]; + // optional string metadata = 2 [deprecated=true]; float load = 3; }