Skip to content

Commit

Permalink
Merge pull request #1 from yyxxrr739/bugfix/correct-file-path-usage
Browse files Browse the repository at this point in the history
Fix incorrect path initialization in cookbook_dir
  • Loading branch information
yyxxrr739 authored Jul 18, 2024
2 parents c71cb74 + f2a10f7 commit fa01a98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cookbook/assistants/langchain_retriever.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from langchain.text_splitter import CharacterTextSplitter
from langchain.vectorstores import Chroma

cookbook_dir = Path("__file__").parent
cookbook_dir = Path(__file__).parent
chroma_db_dir = cookbook_dir.joinpath("storage/chroma_db")


Expand Down

0 comments on commit fa01a98

Please sign in to comment.