For more authentication options, see: https://doc.rapida.ai/api-reference/authentication
Parameters
Configuration for the client connection.
Show child attributes
Show child attributes
The unique identifier of the assistant whose conversations to retrieve.
Source filter for conversations.
Usages
Copy
from rapida import (
ConnectionConfig,
GetAllAssistantConversationRequest,
get_all_assistant_conversation,
)
from pprint import pprint
connection_config = ConnectionConfig.default_connection_config(
ConnectionConfig.with_sdk("{rapida-api-key}")
)
response = get_all_assistant_conversation(
client_cfg=connection_config,
request=GetAllAssistantConversationRequest(
assistantId="{assistant_id}",
paginate=Paginate(page=0, pageSize=20),
# criterias=[Criteria(key="KEY", value="VALUE", logic="should")],
),
)
pprint(response)
Response
Numeric status code for the operation.
Indicates whether the operation was successful.
Array of assistant conversations.
Show child attributes
Show child attributes
Unique identifier for the conversation.
Identifier of the user participating in the conversation.
Identifier of the assistant in the conversation.
Name or title of the conversation.
Associated project identifier.
Associated organization identifier.
Source platform or origin of the conversation.
External identifier for the conversation.
Current status of the conversation.
Direction of the conversation flow.
User information for the conversation participant.
Identifier for the assistant provider model used.
Array of messages within the conversation.
Show child attributes
Show child attributes
Unique identifier for the message.
External message identifier.
Parent conversation identifier.
Associated assistant identifier.
Model identifier used for this message.
User’s request message.
Assistant’s response message.
Source platform of the message.
Status of the message.
Array of suggested follow-up questions.
Processing stages for the message.
Performance metrics for the message.
Additional metadata for the message.
Identifier of the message creator.
Identifier of the last updater.
Timestamp when the message was created.
Timestamp when the message was last updated.
Array of conversation contexts.
Performance metrics for the conversation.
Additional metadata for the conversation.
Arguments passed to the conversation.
Configuration options for the conversation.
Array of conversation recordings.
Show child attributes
Show child attributes
URL to access the recording.
Identifier of the conversation creator.
Identifier of the last updater.
Timestamp when the conversation was created.
Timestamp when the conversation was last updated.