Skip to main content
The Bevor SDK is coming soon. This page previews its planned Python interface.
Access this resource from client.chats. Both async and sync clients expose the same methods.

create

POST /security/chats/analysis
Returns: IdResponse

list

GET /security/chats
Returns: Pagination[SecurityChatSchema]

get

GET /security/chats/{chat_id}
Returns: SecurityChatSchema

update

PATCH /security/chats/{chat_id}
Returns: BooleanResponse

messages

GET /security/chats/{chat_id}/messages
Returns: ResultsResponse[ChatMessageSchema]

sync

POST /security/chats/{chat_id}/sync
Returns: ChatResponseSchema

generate_key

POST /security/chats/{chat_id}/stream-key
Returns: str

stream

POST /security/chats/{chat_id}/stream
Returns: Any