root.skill_chat =============== .. py:module:: root.skill_chat Classes ------- .. autoapisummary:: root.skill_chat.ASkillChat root.skill_chat.SkillChat Module Contents --------------- .. py:class:: ASkillChat Bases: :py:obj:`root.generated.openapi_aclient.models.chat_detail.ChatDetail` Wrapper for a single Chat with a Skill. For available attributes, please check the (automatically generated) superclass documentation. .. py:method:: arun(variables: Optional[Dict[str, str]] = None, *, skill_version_id: Optional[str] = None, _request_timeout: Optional[int] = None) -> root.generated.openapi_aclient.models.chat_execution_result.ChatExecutionResult :async: Asynchronously run a skill with optional variables as an interactive chat. The chat message history is stored and can be referred to in following calls. The response is equal to the skill run response, with the addition of a chat_id key. .. py:class:: SkillChat Bases: :py:obj:`root.generated.openapi_client.models.chat_detail.ChatDetail` Wrapper for a single Chat with a Skill. For available attributes, please check the (automatically generated) superclass documentation. .. py:method:: run(variables: Optional[Dict[str, str]] = None, *, skill_version_id: Optional[str] = None, _request_timeout: Optional[int] = None) -> root.generated.openapi_client.models.chat_execution_result.ChatExecutionResult Run a skill with optional variables as an interactive chat. The chat message history is stored and can be referred to in following calls. The response is equal to the skill run response, with the addition of a chat_id key.