AgentServerDirectoryStatsPerAgentChatSession

Properties

Name

Type

Description

Notes

agent_chat_session_id

str

chat_preview

str

stats

List[AgentServerDirectoryStats]

Example

from h2ogpte.rest_sync.models.agent_server_directory_stats_per_agent_chat_session import AgentServerDirectoryStatsPerAgentChatSession

# TODO update the JSON string below
json = "{}"
# create an instance of AgentServerDirectoryStatsPerAgentChatSession from a JSON string
agent_server_directory_stats_per_agent_chat_session_instance = AgentServerDirectoryStatsPerAgentChatSession.from_json(json)
# print the JSON string representation of the object
print(AgentServerDirectoryStatsPerAgentChatSession.to_json())

# convert the object into a dict
agent_server_directory_stats_per_agent_chat_session_dict = agent_server_directory_stats_per_agent_chat_session_instance.to_dict()
# create an instance of AgentServerDirectoryStatsPerAgentChatSession from a dict
agent_server_directory_stats_per_agent_chat_session_from_dict = AgentServerDirectoryStatsPerAgentChatSession.from_dict(agent_server_directory_stats_per_agent_chat_session_dict)