Skip to main content

Create a question answering over docs bot with one line of code.

Project description

🤖 Megabots

Tests

🤖 Megabots provides State-of-the-art, production ready bots made mega-easy, so you don't have to build them from scratch 🤯 Create a bot, now 🫵

Note: This is a work in progress. The API might change.

pip install megabots
from megabots import bot
import os

os.environ["OPENAI_API_KEY"] = "my key"

# Create a bot 👉 with one line of code. Automatically loads your data from ./index or index.pkl.
qnabot = bot("qna-over-docs")

# Ask a question
answer = bot.ask("How do I use this bot?")

# Save the index to save costs (GPT is used to create the index)
bot.save_index("index.pkl")

# Load the index from a previous run
qnabot = bot("qna-over-docs", index="./index.pkl")

# Or create the index from a directory of documents
qnabot = bot("qna-over-docs", index="./index")

You can also create a FastAPI app that will expose the bot as an API using the create_app function. Assuming you file is called main.py run uvicorn main:app --reload to run the API locally. You should then be able to visit http://localhost:8000/docs to see the API documentation.

from megabots import bot, create_api

app = create_app(bot("qna-over-docs"))

You can expose a gradio UI for the bot using create_interface function. Assuming your file is called ui.py run gradio qnabot/ui.py to run the UI locally. You should then be able to visit http://127.0.0.1:7860 to see the API documentation.

from megabots import bot, create_interface

demo = create_interface(QnABot("qna-over-docs"))

Features

  • Create a question answering bot over your documents with one line of code using GPT
  • Save / load index to reduce costs (Open AI embedings are used to create the index)
  • Local data source (directory of documents) or S3 data source
  • FAISS for storing vectors / index
  • Expose bot over API using FastAPI
  • Gradio UI
  • Integration with guardrails
  • Integration with GPTCache
  • Support for other vector databases (e.g. Weaviate, Pinecone)
  • Customise prompt
  • Support for LLaMA model

Here's how it works

Large language models (LLMs) are powerful, but they can't answer questions about documents they haven't seen. If you want to use an LLM to answer questions about documents it was not trained on, you have to give it information about those documents. To solve this, we use "retrieval augmented generation."

In simple terms, when you have a question, you first search for relevant documents. Then, you give the documents and the question to the language model to generate an answer. To make this work, you need your documents in a searchable format (an index). This process involves two main steps: (1) preparing your documents for easy querying, and (2) using the retrieval augmented generation method.

QnABot uses FAISS to create an index of documents and GPT to generate answers.

sequenceDiagram
    actor User
    participant API
    participant LLM
    participant Vectorstore
    participant IngestionEngine
    participant DataLake
    autonumber

    Note over API, DataLake: Ingestion phase
    loop Every X time
    IngestionEngine ->> DataLake: Load documents
    DataLake -->> IngestionEngine: Return data
    IngestionEngine -->> IngestionEngine: Split documents and Create embeddings
    IngestionEngine ->> Vectorstore: Store documents and embeddings
    end

    Note over API, DataLake: Generation phase

    User ->> API: Receive user question
    API ->> Vectorstore: Lookup documents in the index relevant to the question
    API ->> API: Construct a prompt from the question and any relevant documents
    API ->> LLM: Pass the prompt to the model
    LLM -->> API: Get response from model
    API -->> User: Return response

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

megabots-0.0.7.tar.gz (6.6 kB view details)

Uploaded Source

Built Distribution

megabots-0.0.7-py3-none-any.whl (7.4 kB view details)

Uploaded Python 3

File details

Details for the file megabots-0.0.7.tar.gz.

File metadata

  • Download URL: megabots-0.0.7.tar.gz
  • Upload date:
  • Size: 6.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.0

File hashes

Hashes for megabots-0.0.7.tar.gz
Algorithm Hash digest
SHA256 2839f1126a7d54da5533110b48620d7f66114fa8fbb8d98a4fc8011624e572ec
MD5 314388abb7bdd94f0b1ca91e7572ff4f
BLAKE2b-256 7c54bcf8c5123a98fd872e8d28d5b7e9a7ab61cc5b4e79591a316ac3ada66679

See more details on using hashes here.

File details

Details for the file megabots-0.0.7-py3-none-any.whl.

File metadata

  • Download URL: megabots-0.0.7-py3-none-any.whl
  • Upload date:
  • Size: 7.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.0

File hashes

Hashes for megabots-0.0.7-py3-none-any.whl
Algorithm Hash digest
SHA256 a5b85acbd0ac3659d1a012c1f5a859080e33cd54f60d48e7b7432acca3d2f2af
MD5 feb0590c99655b859f549253552c94dd
BLAKE2b-256 30574b1c4b154762bb0fee710ffa854072f55bc77120106bf47ce0847a17e642

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page