-
Notifications
You must be signed in to change notification settings - Fork 69
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Validation Error #107
Comments
kramcat replied to me But I got a new error.
|
It looks like there have been changes in the API. By some miracle, I managed to run the old code on async. from characterai import aiocai
import asyncio
my_token = "my_token"
my_character = "my_character"
async def chating():
chat_data = await client.get_chat(my_character)
async with await client.connect() as chat:
while True:
message_user = input("You: ")
ai_message = await chat.send_message(my_character, chat_data.chat_id, message_user)
print("AI: " + ai_message.text)
client = aiocai.Client(my_token)
asyncio.run(chating()) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Anyone know how to fix the following error?
The text was updated successfully, but these errors were encountered: