Skip to main content

Your personal, powerful and private GPT.

Project description

Your personal, powerful and private GPT


Features

  • Ingest of your own documents and talk to them.
  • Store your data locally on your device.
  • Choose from a variety of models, including OpenAI.
  • Support conversation history and memory.
  • Switch between profiles with different settings.
  • Support both web interface and command line interface.
  • Support Llama v2!

Installation

# With all supported models
$ pip install -U pxgpt[all]

# With support for GPT4all only
$ pip install -U pxgpt[gpt4all]

# With support for llama-cpp only
$ pip install -U pxgpt[llama-cpp]

# With support for openai only
$ pip install -U pxgpt[openai]

Then copy the configuration from .pxgpt.config-example.yml to .pxgpt.config.yml and modify it to your needs.

Usage

Chat from CLI

$ 23:45:06  pxgpt chat

Welcome to chat via the pxGPT CLI v0.0.0rc0!
Hit 'Ctrl+c' or 'Ctrl+d' to exit.
[2023-07-20 20:03:22,716] INFO Switched profile to llamacpp-chat
[2023-07-20 20:03:22,719] INFO Creating LLM (LlamaCpp)
llama.cpp: loading model from models/llamacpp/llama-2-7b.ggmlv3.q4_0.bin
llama_model_load_internal: format     = ggjt v3 (latest)
llama_model_load_internal: n_vocab    = 32000
llama_model_load_internal: n_ctx      = 512
llama_model_load_internal: n_embd     = 4096
llama_model_load_internal: n_mult     = 256
llama_model_load_internal: n_head     = 32
llama_model_load_internal: n_layer    = 32
llama_model_load_internal: n_rot      = 128
llama_model_load_internal: freq_base  = 10000.0
llama_model_load_internal: freq_scale = 1
llama_model_load_internal: ftype      = 2 (mostly Q4_0)
llama_model_load_internal: n_ff       = 11008
llama_model_load_internal: model size = 7B
llama_model_load_internal: ggml ctx size =    0.08 MB
llama_model_load_internal: mem required  = 5185.72 MB (+ 1026.00 MB per state)
llama_new_context_with_model: kv self size  =  256.00 MB
[2023-07-20 20:03:24,552] INFO Entering chat mode
Loaded conversation:  2023-07-20_20-03-17
Use the up/down arrow keys to navigate history.
Use /help to see the list of commands.

>>> Hello Llama 2, if you could choose a superpower, what would it be and why?
 I will answer this question in two parts. The first part is the super power that I will choose. The second part is why I chose this super power.
In the first part, the super power that I will choose is the ability to fly. This is because flying has many benefits. It allows me to travel quickly and easily, without having to deal with traffic or waiting at airports. Additionally, it saves time since I don't have to wait for a bus or train ride. Finally, flying gives me an opportunity to see new places and explore new cultures.
In the second part of my answer, I will explain why I chose this super power. The reason is because flying allows me to travel quickly and easily, without having to deal with traffic or waiting at airports. Additionally, it saves time since I don't have to wait for a bus or train ride. Finally, flying gives me an opportunity to see new places and explore new cultures.

>>> /help
Commands:
  - /help: List the commands
  - /new: Start a new conversation
  - /switch: Switch to a conversation
  - /list: List all conversations
  - /path: Show the path of the current conversation file
  - /delete: Delete a conversation
  - /rename: Rename a conversation
  - /ingest: Ingest documents from the source directory
  - /docs: List ingested and uningested documents in the source directory
  - /exit: Exit the CLI

>>>

Chat from the web interface

$ pxgpt serve
# Open http://localhost:7758 in your browser

Web-interface

Configuration

px The configuration files are loaded from the following paths:

  • ~/.config/pxgpt/config.yml
  • ~/.pxgpt.config.yml
  • ./.pxgpt.config.yml

Profiles

Note that you need to define profiles in the configuration file. For example:

openai:  # The profile
    model:
        type: ChatOpenAI

The configuration items are inherited from the default profile. For example:

default:
    credentials:
        openai_api_key: sk-xxxxxxxxxxx

openai:
    model:
        type: ChatOpenAI

Then when you use openai profile, the configurations are expanded as:

openai:
    credentials:
        openai_api_key: sk-xxxxxxxxxxx
    model:
        type: ChatOpenAI

Higher-level configurations override lower-level configurations. For example:

If you define the default profile in ~/.config/pxgpt/config.yml and the openai profile in ./.pxgpt.config.yml, then the openai profile will inherit the default profile, as well.

Configuration items

  • log_level: The log level for the logger in your teminal
  • history_directory: The directory to store the conversation history
  • history_into_memory: Whether to load the conversation history into memory
    • You can turn this off if you are using small models
  • credentials: The credentials for the models. For example, for OpenAI, you need to provide the openai_api_key.
  • model: Type of the model and arguments for it.
    • type: The type of the model, supported models are: GPT4All, LlamaCpp, ChatOpenAI and OpenAI
    • <other>: The arguments for the model. Passed to langchain llms.
      • For GPT4All, you can pass the arguments listed in here.
      • For LlamaCpp, you can pass the arguments listed in here.
      • For ChatOpenAI, you can pass the arguments listed in here.
      • For OpenAI, you can pass the arguments listed in here.
  • qmodel: The arguments for model used to condense questions
    • type: Same as model.type, with and Echo model added, which is useful for models that don't do question condensing very well.
    • <other>: Same as model.<other>.
  • ingest: The arguments for the ingestion.
    • source_directory: The directory to ingest documents from.
      • If not provided, we will enter the chat mode.
    • persist_directory: The directory to save the vectorstore database.
      • If not provided, will use <source_directory>/.pxgpt-<model>-db.
    • target_source_chunks: The number of chunks to return against the query.
    • n_workers: The number of workers to use for ingestion.
    • chunk_size and chunk_overlap: The chunk size and overlap for the ingestion.
  • embeddings: The arguments for the embeddings.
    • For GPT4All, you can pass the arguments listed in here.
    • For LlamaCpp, you can pass the arguments listed in here.
    • For OpenAI or ChatOpenAI, you can pass the arguments listed in here.

Ingest documents

$ pxgpt ingest  # default profile
$ pxgpt ingest --profile openai-docs
# Will ingest documents under `ingest.source_directory` under `openai-docs` profile

Credits

pxgpt is Inspired by privateGPT, with the addition of openai API support, history and memory support, and a web interface.

TODO

  • Support ingestion management (upload/download/delete/ingest documents) from the web interface
  • Support profile management (add/remove/modify) from the web interface
  • Use markdown to format the response on the web interface
  • Read credentials from environment variables
  • Build a docker image
  • Support more models

Q & A

QA.md

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

pxgpt-0.0.1.tar.gz (177.8 kB view details)

Uploaded Source

Built Distribution

pxgpt-0.0.1-py3-none-any.whl (180.3 kB view details)

Uploaded Python 3

File details

Details for the file pxgpt-0.0.1.tar.gz.

File metadata

  • Download URL: pxgpt-0.0.1.tar.gz
  • Upload date:
  • Size: 177.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.5.1 CPython/3.10.6 Linux/5.15.0-1041-azure

File hashes

Hashes for pxgpt-0.0.1.tar.gz
Algorithm Hash digest
SHA256 a2716446a7d215a488ecaf24f2bf66808dcaf9d8fe94f0e9830ed411b12227c0
MD5 f1cde192dfa05c6b35878d9c60378613
BLAKE2b-256 63afd04a5af864a378855c7fadd02c926a8ed43444ca8e8271853cef418e5015

See more details on using hashes here.

File details

Details for the file pxgpt-0.0.1-py3-none-any.whl.

File metadata

  • Download URL: pxgpt-0.0.1-py3-none-any.whl
  • Upload date:
  • Size: 180.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.5.1 CPython/3.10.6 Linux/5.15.0-1041-azure

File hashes

Hashes for pxgpt-0.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 6e3a40bd8c755eca064b7fb14cbeae19e66c1cf944f0dd146004d4dacec8a094
MD5 bab0c0d7d5cdee60175e83f769ea5270
BLAKE2b-256 2ec607a948b082f3df1038918698b790fbffd83ad608ccfeb23245cc0c1b8bb3

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