Skip to content

Commit

Permalink
docs: fixup README
Browse files Browse the repository at this point in the history
  • Loading branch information
lpm0073 committed Dec 3, 2023
1 parent edd4846 commit 0e7e78a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Hybrid Search Retriever

A Python [OpenAI](https://openai.com/) / [LangChain](https://www.langchain.com/) / [Pinecone](https://docs.pinecone.io/docs/python-client) proof of concept Retrieval Augmented Generation (RAG) model using PDF documents as the embeddings data source.
A Hybrid Search and Augmented Generation prompting solution using Python [OpenAI](https://openai.com/) embeddings sourced from [Pinecone](https://docs.pinecone.io/docs/python-client) vector database indexes and managed by [LangChain](https://www.langchain.com/).

Implements the following:

Expand Down Expand Up @@ -70,7 +70,7 @@ PINECONE_INDEX_NAME=SET-ME-PLEASE
DEBUG_MODE=False
```

### Configurable defaults
### Configuration defaults

Set these as environment variables on the command line, or in a .env file that should be located in the root of the repo.

Expand Down
3 changes: 0 additions & 3 deletions models/hybrid_search_retreiver.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,6 @@
from models.pinecone import PineconeIndex


###############################################################################
# initializations
###############################################################################
logging.basicConfig(level=logging.DEBUG if Config.DEBUG_MODE else logging.INFO)


Expand Down

0 comments on commit 0e7e78a

Please sign in to comment.