new_chat

"Save and Start New Chat" button

async with client.connect('TOKEN') as chat2:
    response, answer = await chat2.new_chat(
        'CHAR', 'CHAT_ID', 'CREATOR_ID'
    )

char [str]

Character ID

chat_id [str]

Unique ID for character history

creator_id [str]

Your account ID

with_greeting [bool] (optional)

You can create a chat without the character's first message, set False

Last updated