:py:mod:`abacusai.chat_session`
===============================

.. py:module:: abacusai.chat_session


Module Contents
---------------

Classes
~~~~~~~

.. autoapisummary::

   abacusai.chat_session.ChatSession




.. py:class:: ChatSession(client, answer=None, chatSessionId=None, projectId=None, createdAt=None, chatHistory={})

   Bases: :py:obj:`abacusai.return_class.AbstractApiClass`

   A chat session with Abacus Chat.

   :param client: An authenticated API Client instance
   :type client: ApiClient
   :param answer: The response from the chatbot
   :type answer: str
   :param chatSessionId: The chat session id
   :type chatSessionId: str
   :param projectId: The project id associated with the chat session
   :type projectId: str
   :param createdAt: The timestamp at which the chat session was created
   :type createdAt: str
   :param chatHistory: The chat history for the conversation
   :type chatHistory: ChatMessage

   .. py:method:: __repr__()

      Return repr(self).


   .. py:method:: to_dict()

      Get a dict representation of the parameters in this class

      :returns: The dict value representation of the class parameters
      :rtype: dict


   .. py:method:: get()

      Gets a chat session from Abacus Chat.

      :param chat_session_id: The chat session id
      :type chat_session_id: str

      :returns: The chat session with Abacus Chat
      :rtype: ChatSession



