zohebk / groqbook

Groqbook: Generate entire books in seconds using Groq and Llama3

Home Page:https://groqbook.streamlit.app

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

License

Groqbook: Generate entire books in seconds using Groq and Llama3

Groqbook is a streamlit app that scaffolds the creation of books from a one-line prompt using Llama3 on Groq. It works well on nonfiction books and generates each chapter within seconds. The app mixes Llama3-8b and Llama3-70b, utilizing the larger model for generating the structure and the smaller of the two for creating the content. Currently, the model only uses the context of the section title to generate the chapter content. In the future, this will be expanded to the fuller context of the book to allow groqbook to generate quality fiction books as well.

public.groqbook.demo.mov

Demo of Groqbook fast generation of book content


public.groqbook.demo2.mov

Demo of Groqbook downloading markdown-styled book


Features

  • ๐Ÿ“– Scaffolded prompting that strategically switches between Llama3-70b and Llama3-8b to balance speed and quality
  • ๐Ÿ–Š๏ธ Uses markdown styling to create an aesthetic book on the streamlit app that includes tables and code
  • ๐Ÿ“‚ Allows user to download a text file with the entire book contents

Example Generated Books:

Example Prompt
LLM Basics The Basics of Large Language Models
Data Structures and Algorithms Data Structures and Algorithms in Java

Quickstart

Important

To use Groqbook, you can use the hosted version at groqbook.streamlit.app Alternatively, you can run groqbook locally with streamlit using the quickstart instructions.

Hosted on Streamlit:

To use Groqbook, you can use the hosted version at groqbook.streamlit.app

Run locally:

Alternative, you can run groqbook locally with streamlit.

Step 1

First, you can set your Groq API key in the environment variables:

export $GROQ_API_KEY = gsk_yA...

This is an optional step that allows you to skip setting the Groq API key later in the streamlit app.

Step 2

Next, you can set up a virtual environment and install the dependencies.

python3 -m venv venv
source venv/bin/activate
pip3 install -r requirements.txt

Step 3

Finally, you can run the streamlit app.

python3 -m streamlit run main.py

Details

Technologies

  • Streamlit
  • Llama3 on Groq Cloud

Limitations

Groqbook may generate inaccurate information or placeholder content. It should be used to generate books for entertainment purposes only.

Changelog

v0.2.0

May 29th, 2024:

groqbook.may29.mov

Demo of Groqbook's Generation Statistics

Contributing

Improvements through PRs are welcome!

About

Groqbook: Generate entire books in seconds using Groq and Llama3

https://groqbook.streamlit.app

License:MIT License


Languages

Language:Python 100.0%