Currently We are in the development phase and are in progress of removing langchain as a dependency from the existing codebase. We are also working on adding more features to the CLI .
pip install neogpt
Not working? Read our setup guide here
$ neogpt
NeoGPT is an AI assistant that transforms your local workspace into a powerhouse of productivity from your CLI. With features like code interpretation, multi-RAG support, vision models, and LLM integration, NeoGPT redefines how you work and create. Join the revolution and experience a new era of efficiency with NeoGPT.
NeoGPT is continuously evolving, and your feedback shapes its future. Join our Discord community to stay up to date with the latest developments.
-
Installation: Clone this repository and install the necessary dependencies.
git clone https://github.com/neokd/NeoGPT.git cd NeoGPT/neogpt pip install -r requirements.txt
-
Building Database Currently NeoGPT supports local files and Youtube videos. To build the database add your local files to the documents directory and URL in the
builder.url
file. Then run the builder script.python main.py --build
This will create a database file in the
neogpt/db
folder. You can also specify the database to use by using--db
flag. Supported databases are:Chroma
(default)FAISS
Currently the database is built using 2 papers as reference:
-
Run NeoGPT: Run the CLI to start using NeoGPT. Requires
Python v3.10
. You can use the--help
flag to view the available commands and options.python main.py
You can also use
--ui
flag to run the Streamlit UI.python main.py --ui
-
Project Documentation: To view the project documentation, run the following command in your terminal or command prompt (Development
β οΈ )cd docs npm i mintlify mintlify dev
-
Code Interpreter: Execute code seamlessly in your local environment with our Code Interpreter. Enjoy the convenience of real-time code execution, all within your personal workspace.
-
Multi RAG Support: NeoGPT supports multiple RAG techniques, enabling you to choose the most suitable model for your needs. It includes local RAG, ensemble RAG, web RAG, and more. π§ π
-
Vision: Explore a new dimension as NeoGPT supports vision models like bakllava and llava, enabling you to chat with images using Ollama. πΌοΈποΈπ§
-
LLM π€: NeoGPT supports multiple LLM models, allowing users to interact with a variety of language models. We support LlamaCpp, Ollama, LM Studio, OpenAI, and Togerther Ai. π€π§ π
pip install https://github.com/neokd/NeoGPT/releases/download/v0.1.0/neogpt-0.1.0-py3-none-any.whl
After installing the package, you can run the CLI by typing the following command in your terminal.
$ neogpt
from neogpt import db_retriever
chain = db_retriever()
chain.invoke("What operating system are we on?")
To use the Interpreter, type the following command in your terminal.
$ neogpt --interpreter
To build the vector database, type the following command in your terminal.
$ neogpt --build
To run the Streamlit UI, type the following command in your terminal.
$ neogpt --ui
To change your LLM, type the following command in your terminal.
$ neogpt --model ollama/bakllava
To change your LLM, type the following command in your terminal.
Warning: Add your API key to the
.env
file before running the command.
$ neogpt --model together/mistralai/Mistral-7B-Instruct-v0.2
- π
/reset
- Reset the chat session - πͺ
/exit
- Exit the chat session - π
/history
- Print the chat history - πΎ
/save
- Save the chat history to aneogpt/conversations
- π
/copy
- Copy the last response from NeoGPT to the clipboard - βͺ
/undo
- Remove the last response from the chat history - π
/redo
- Resend the last human input to the model - π
/load [path]
- Load the saved chat history from the specified file - π
/tokens [prompt]
- Calculate the number of tokens for a given prompt - π
/export
- Export the current settings to the settings/settings.yaml file - π
/conversations
- List available previously saved conversations. - π
/source
- Prints the source directory - π
/search [keyword]
- Search the chat history for the keyword - π
/copycode
or/cc
- Copy the last code block to the clipboard
We welcome contributions to NeoGPT! If you have ideas for new features or improvements, please open an issue or submit a pull request. For more information, see our contributing guide.
This project is licensed under the MIT License - see the LICENSE file for details. Let's innovate together! π€β¨