Skip to content

Commit

Permalink
chore: update import statements in utils.py and llm.py to use langcha…
Browse files Browse the repository at this point in the history
…in.vectorstores.FAISS
  • Loading branch information
rsaryev committed Nov 5, 2023
1 parent ee32d80 commit 53de4f1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "talk-codebase"
version = "0.1.48"
version = "0.1.49"
description = "talk-codebase is a powerful tool for querying and analyzing codebases."
authors = ["Saryev Rustam <[email protected]>"]
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion talk_codebase/llm.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import gpt4all
import questionary
from halo import Halo
from langchain import FAISS
from langchain.vectorstores import FAISS
from langchain.callbacks.manager import CallbackManager
from langchain.chains import RetrievalQA
from langchain.chat_models import ChatOpenAI
Expand Down
2 changes: 1 addition & 1 deletion talk_codebase/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import tiktoken
from git import Repo
from langchain import FAISS
from langchain.vectorstores import FAISS
from langchain.callbacks.streaming_stdout import StreamingStdOutCallbackHandler

from talk_codebase.consts import LOADER_MAPPING, EXCLUDE_FILES
Expand Down

0 comments on commit 53de4f1

Please sign in to comment.