Giter Club home page Giter Club logo

pycharacterai's Introduction

PyCharacterAI

An unofficial asynchronous Python api wrapper for Character AI using curl-cffi.

This library is based on the Character AI Unofficial Node API, made by realcoloride.

If you have any questions, problems, suggestions, please contact me:

Tag Tag

๐Ÿ“š Documentation.


Installation

pip install PyCharacterAI

Getting started

First, import and create a new instance of the Client class:

from PyCharacterAI import Client


client = Client()

You can use client = Client(use_plus=True) if you have character ai plus.


This library allows you to authenticate in two ways:


1. As a guest (Some api features are not available):

await client.authenticate_as_guest()


2. Using a token:

token = 'TOKEN'
await client.authenticate_with_token(token)

Instructions for getting a token:

  1. Open the Character AI website in your browser
  2. Open the developer tools F12 and go to the Application tab.
  3. Go to the Storage section and click on Local Storage.
  4. Look for the char_token key.
  5. Copy value.

โš ๏ธ Warning! Do not share this token with anyone!


Examples

Simple example:

import asyncio
from PyCharacterAI import Client

token = "TOKEN"


async def main():
    client = Client()
    await client.authenticate_with_token(token)

    username = (await client.fetch_user())['user']['username']
    print(f'Authenticated as {username}')

    character_id = "iV5qb8ttzD7Ytl69U_-ONcW2tW_lrFrOVKExyKJHlJM"  # Lily (by @landon)
    chat = await client.create_or_continue_chat(character_id)

    while True:
        message = input(f'{username}: ')  # In: Hi!

        answer = await chat.send_message(message)
        print(f"{answer.src_character_name}: {answer.text}")  # Out: hello there! what kind of question you gonna ask me ? i'm here to assist you :)


asyncio.run(main())

Working with images:

We'll get a link to the image on the Character AI server, which we can use for our own purposes: attach it to a message, download it, etc.


1. We can generate an image from a prompt:

prompt = "Prompt"

url = await client.generate_image(prompt)


2. We can upload our own image:

image = "URL or path to the image"

url = (await client.upload_image(image))['response']

Available image formats: PNG, JPEG, WEBP.


Working with voice:

We can synthesize audio from text using one of several voices (Text to Speech)

A list of available voices

text = "Hi all ! This is PyCharacterAI. PyCharacterAI is An unofficial asynchronous api wrapper for Character AI. For Python."
voice = 22 # Anime Girl (F) (en-US)

audio = await client.generate_voice(voice, text)

It'll return BytesIO, which we can use:

filepath = "voice.mp3"  # Path to the directory where you want to save the audio

with open(filepath, 'wb') as f:
   f.write(audio.read())

pycharacterai's People

Contributors

xtr4f avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.