abacusai.bot_info ================= .. py:module:: abacusai.bot_info Classes ------- .. autoapisummary:: abacusai.bot_info.BotInfo Module Contents --------------- .. py:class:: BotInfo(client, externalApplicationId=None, deploymentId=None, agentTasksExhausted=None, llmName=None, externalApplication={}) Bases: :py:obj:`abacusai.return_class.AbstractApiClass` Information about an external application and LLM. :param client: An authenticated API Client instance :type client: ApiClient :param externalApplicationId: The external application ID. :type externalApplicationId: str :param deploymentId: The deployment ID. :type deploymentId: str :param agentTasksExhausted: Whether a basic-tier user has used up their DeepAgent task allowance, in which case new chats default to chat mode. :type agentTasksExhausted: bool :param llmName: The last-used virtual ChatLLM model on the most-recent conversation, so the homepage pre-selects it. :type llmName: str :param externalApplication: The described external application details. :type externalApplication: ExternalApplication .. py:attribute:: external_application_id :value: None .. py:attribute:: deployment_id :value: None .. py:attribute:: agent_tasks_exhausted :value: None .. py:attribute:: llm_name :value: None .. py:attribute:: external_application .. py:attribute:: deprecated_keys .. py:method:: __repr__() .. 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