Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Vector Store initial implementation #830

Merged
merged 27 commits into from
Nov 3, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
bugfix
TheoMcCabe committed Oct 30, 2023
commit cc50bc18aeb9d3cccb1c0d067fdbafb3ec05ef2a
2 changes: 1 addition & 1 deletion gpt_engineer/data/code_vector_repository.py
Original file line number Diff line number Diff line change
@@ -14,7 +14,7 @@ def __init__(self):
self._query_engine = None
self._retriever = None

def _load_documents_from_directory(directory_path) -> List[Document]:
def _load_documents_from_directory(self, directory_path) -> List[Document]:
def name_metadata_storer(filename: str) -> Dict:
return {"filename": filename}