A package for extracting and querying knowledge using GPT models
Project description
knowledgegpt
knowledgegpt is designed to gather information from various sources, including the internet and local data, which can be used to create prompts. These prompts can then be utilized by OpenAI's GPT-3 model to generate answers that are subsequently stored in a database for future reference.
To accomplish this, the text is first transformed into a fixed-size vector using either open source or OpenAI models. When a query is submitted, the text is also transformed into a vector and compared to the stored knowledge embeddings. The most relevant information is then selected and used to generate a prompt context.
knowledgegpt supports various information sources including websites, PDFs, PowerPoint files (PPTX), and documents (Docs). Additionally, it can extract text from YouTube subtitles and audio (using speech-to-text technology) and use it as a source of information. This allows for a diverse range of information to be gathered and used for generating prompts and answers.
Installation
-
PyPI installation, run in terminal:
pip install knowledgegpt
-
Or you can use the latest version from the repository:
pip install -r requirements.txt
and thenpip install .
-
Download needed language model for parsing:
python3 -m spacy download en_core_web_sm
Set Your API Key
- Go to OpenAI > Account > Api Keys
- Create new secret key and copy
- Enter the key to example_config.py
How to use the library
# Import the library
from knowledgegpt.extractors.web_scrape_extractor import WebScrapeExtractor
# Import OpenAI and Set the API Key
import openai
from example_config import SECRET_KEY
openai.api_key = SECRET_KEY
# Define target website
url = "https://en.wikipedia.org/wiki/Bombard_(weapon)"
# Initialize the WebScrapeExtractor
scrape_website = WebScrapeExtractor( url=url, embedding_extractor="hf", model_lang="en")
# Prompt the OpenAI Model
answer, prompt, messages = scrape_website.extract(query="What is a bombard?",max_tokens=300, to_save=True, mongo_client=db)
# See the answer
print(answer)
# Output: 'A bombard is a type of large cannon used during the 14th to 15th centuries.'
Other examples can be found in the examples folder. But to give a better idea of how to use the library, here is a simple example:
# Basic Usage
basic_extractor = BaseExtractor(df)
answer, prompt, messages = basic_extractor.extract("What is the title of this PDF?", max_tokens=300)
# PDF Extraction
pdf_extractor = PDFExtractor( pdf_file_path, extraction_type="page", embedding_extractor="hf", model_lang="en")
answer, prompt, messages = pdf_extractor.extract(query, max_tokens=1500)
# PPTX Extraction
ppt_extractor = PowerpointExtractor(file_path=ppt_file_path, embedding_extractor="hf", model_lang="en")
answer, prompt, messages = ppt_extractor.extract( query,max_tokens=500)
# DOCX Extraction
docs_extractor = DocsExtractor(file_path="../example.docx", embedding_extractor="hf", model_lang="en", is_turbo=False)
answer, prompt, messages = \
docs_extractor.extract( query="What is an object detection system?", max_tokens=300)
# Extraction from Youtube video (audio)
scrape_yt_audio = YoutubeAudioExtractor(video_id=url, model_lang='tr', embedding_extractor='hf')
answer, prompt, messages = scrape_yt_audio.extract( query=query, max_tokens=1200)
# Extraction from Youtube video (transcript)
scrape_yt_subs = YTSubsExtractor(video_id=url, embedding_extractor='hf', model_lang='en')
answer, prompt, messages = scrape_yt_subs.extract( query=query, max_tokens=1200)
Docker Usage
docker build -t knowledgegptimage .
docker run -p 8888:8888 knowledgegptimage
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file knowledgegpt-0.0.7b0.tar.gz
.
File metadata
- Download URL: knowledgegpt-0.0.7b0.tar.gz
- Upload date:
- Size: 16.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f8067ca980b8c38e96be6f0df23f9fda80a502541c9e132b578863000440e159 |
|
MD5 | eb6380d1c404ac50578a9856fa0aeff2 |
|
BLAKE2b-256 | 2137595169b1857c8a26e62451ebfb8a01a5145b83a4fb30c56e47377611e008 |
File details
Details for the file knowledgegpt-0.0.7b0-py3-none-any.whl
.
File metadata
- Download URL: knowledgegpt-0.0.7b0-py3-none-any.whl
- Upload date:
- Size: 23.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 27ff046784619e31f9b6e0a4ff19deb01dc0a90b69ca824c28872f890cfa40a9 |
|
MD5 | 5acceb4f2090bab6d44ac16c21dd37f8 |
|
BLAKE2b-256 | 2da62cd778ff4288498d162388eccb6597ba46888207d98bfdbec44a1e3b0698 |