Skip to content

Commit 5798d73

Browse files
author
Braden Olsen
committed
Adds agent session and state to Agent
Adds current_session_id, agent_state, and is_logged_in fields to the Agent message. This allows tracking the current session, agent state, and login status of agents.
1 parent 49bb015 commit 5798d73

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

tcnapi/exile/gate/v2/public.proto

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1320,6 +1320,9 @@ message Agent {
13201320
string last_name = 4; // Agent's last name
13211321
string username = 5; // Agent's username
13221322
string partner_agent_id = 6; // ID of the agent in the partner's system
1323+
int64 current_session_id = 7; // Current session ID
1324+
AgentState agent_state = 8; // Current agent state
1325+
bool is_logged_in = 9; // Is agent active
13231326
}
13241327

13251328
message ListSkillsRequest {}

0 commit comments

Comments
 (0)