Skip to content

Commit

Permalink
Update package versions and dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
coolbeevip committed Jul 4, 2024
1 parent 3cefccc commit 03032f0
Show file tree
Hide file tree
Showing 4 changed files with 63 additions and 67 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
install:
@poetry install

lock:
update:
@poetry update
@poetry lock

Expand Down
107 changes: 51 additions & 56 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 9 additions & 9 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,20 +9,20 @@ packages = [{ include = "langchain_lab", from = "src" }]

[tool.poetry.dependencies]
python = "^3.11"
streamlit = "1.32.2"
streamlit = "1.36.0"
langchain = "0.2.6"
langchain-openai = "0.1.14"
langchain-experimental = "0.0.62"
langchainhub = "0.1.20"
faiss-cpu = "^1.7.4"
pandas = "^2.1.0"
python-dotenv = "^1.0.0"
docx2txt = "^0.8"
pymupdf = "^1.23.3"
faiss-cpu = "1.7.4"
pandas = "2.2.2"
python-dotenv = "1.0.1"
docx2txt = "0.8"
pymupdf = "1.24.7"
sentence-transformers = "^2.2.2"
langdetect = "^1.0.9"
chardet = "^5.2.0"
beautifulsoup4 = "^4.12.2"
langdetect = "1.0.9"
chardet = "5.2.0"
beautifulsoup4 = "4.12.3"
SQLAlchemy = "2.0.22"
wikipedia = "1.4.0"

Expand Down
3 changes: 2 additions & 1 deletion src/langchain_lab/core/llm.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@
from langchain.callbacks.base import BaseCallbackHandler
from langchain.chat_models.base import BaseChatModel
from langchain.schema import LLMResult
from langchain_community.chat_models import ChatOpenAI
from langchain_openai import ChatOpenAI

from openai import OpenAI

from langchain_lab import logger
Expand Down

0 comments on commit 03032f0

Please sign in to comment.