Conversation
|
| STATUS_FAILED = 3; | ||
| } | ||
|
|
||
| message Job { |
There was a problem hiding this comment.
do we want to nest this message? seems like it gets complicated to use.. vs SimulationJob
| string error = 9; | ||
| string group_id = 10; | ||
| // Set as participant attributes on the simulation participant's access token. | ||
| map<string, string> metadata = 11; |
There was a problem hiding this comment.
let's be explicit so it's not confused with participant metadata
| map<string, string> metadata = 11; | |
| map<string, string> participant_attributes = 11; |
| string agent_name = 2; | ||
| string agent_description = 3; | ||
| int32 num_simulations = 4; | ||
| string group_id = 5; |
There was a problem hiding this comment.
how do I just run a single simulation scenario?
| int64 created_at = 7; | ||
| Status status = 8; | ||
| string error = 9; | ||
| string group_id = 10; |
There was a problem hiding this comment.
can you create a scenario without a group? and then assign it to a group later? or should it have a default group?
| string instructions = 3; | ||
| string agent_expectations = 4; | ||
| string group_id = 5; | ||
| map<string, string> metadata = 6; |
There was a problem hiding this comment.
should source_room_id be part of this too? same comment about metadata
| } | ||
| message DeleteScenarioResponse {} | ||
|
|
||
| message UpdateScenarioRequest { |
There was a problem hiding this comment.
would it be simpler to just include the Scenario message here and also in Create?
No description provided.