coding-pot / Zero2Story

Zero2Story

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Zero2Story

Zero2Story is a framework built on top of PaLM API, Stable Diffusion, MusicGen for ordinary people to create their own stories. This framework consists of the background setup, character setup, and interative story generation phases.

1. Background setup: In this phase, users can setup the genre, place, and mood of the story. Especially, genre is the key that others are depending on.

2. Character setup: In this phase, users can setup characters up to four. For each character, users can decide their characteristics and basic information such as name, age, MBTI, and personality. Also, the image of each character could be generated based on the information using Stable Diffusion.

  • PaLM API translates the given character information into a list of keywords that Stable Diffusion could effectively understands.
  • Then, Stable Diffusion generates images using the keywords as a prompt.

3. Interactive story generation:: In this phase, the first few paragraphs are generated solely based on the information from the background and character setup phases. Afterwards, users could choose a direction from the given three options that PaLM API generated. Then, further stories are generated based on users' choice. This cycle of choosing an option and generating further stories are interatively continued until users decides to stop.

  • In each story generation, users also could generate background images and music that describe each scene using Stable Diffusion and MusicGen.
  • If the generated story, options, image, and music in each turn, users could ask to re-generate them.

Prerequisites

PaLM API key

This project heavily depends on PaLM API. If you want to run it on your own environment, you need to get PaLM API key and paste it in .palm_api_key.txt file within the root directory.

ChatGPT API Key (Optional)

Optionally, you can also add support for the ChatGPT API to enhance chat capabilities. If you wish to use the ChatGPT chat mode in your environment, it requires obtaining a ChatGPT API key. Once you have the key, create a file named .openai_api_key.txt in the project's root directory and insert your ChatGPT API key there. This step is optional and only needed if you want to enable the additional chat functionalities provided by the ChatGPT API.

Packages

Make sure you have installed all of the following prerequisites on your development machine:

  • CUDA Toolkit 11.8 with cuDNN 8 - Download & Install CUDA Toolkit It is highly recommended to run on a GPU. If you run it in a CPU environment, it will be very slow.
  • Poetry - Download & Install Poetry It is the python packaging and dependency manager.
  • SQLite3 v3.35.0 or higher - It is required to be installed due to dependencies.
    • Ubuntu 22.04 and later
    $ sudo apt install libc6 sqlite3 libsqlite3
    • Ubuntu 20.04
    $ sudo sh -c 'cat <<EOF >> /etc/apt/sources.list
      deb http://archive.ubuntu.com/ubuntu/ jammy main
      deb http://security.ubuntu.com/ubuntu/ jammy-security main
      EOF'
    $ sudo apt update
    $ sudo apt install libc6 sqlite3 libsqlite3
  • FFmpeg (Optional) - Installing FFmpeg enables local video mixing, which in turn generates results more quickly than other methods
    $ sudo apt install ffmpeg
    

Installation

Before running the application for the first time, install the required dependencies:

$ poetry install

If dependencies change or need updates in the future, you can use:

$ poetry update

Run

$ poetry run python app.py

Todo

  • Exporting of generated stories as PDF

Stable Diffusion Model Information

Checkpoints

VAEs

About

Zero2Story

License:MIT License


Languages

Language:Python 97.9%Language:Jinja 1.8%Language:Shell 0.3%