AutoBE
    Preparing search index...

    Type Alias IAgenticaHistoryJson

    IAgenticaHistoryJson:
        | IAgenticaHistoryJson.ISelect
        | IAgenticaHistoryJson.ICancel
        | IAgenticaHistoryJson.IExecute
        | IAgenticaHistoryJson.IDescribe
        | IAgenticaHistoryJson.IAssistantMessage
        | IAgenticaHistoryJson.ISystemMessage
        | IAgenticaHistoryJson.IUserMessage

    Agentic AI agent prompt.

    IAgenticaHistoryJson is an union type of all possible prompts that can be generated by the AI chatbot of the Agentica class.

    In other words, IAgenticaHistoryJson is a type of chat history that is occurred during the conversation between the user and the AI chatbot in the Agentica class.

    If you want to continue the previous A.I. chatbot session, you can accomplish it by assigning the IAgenticaProps.histories property when creating a new Agentica instance.

    Samchon