Skip to content

Commit

Permalink
Bump versions; switch to faiss-gpu
Browse files Browse the repository at this point in the history
Signed-off-by: Will Killian <[email protected]>
  • Loading branch information
willkill07 committed Feb 26, 2025
1 parent 6813599 commit f3f881a
Show file tree
Hide file tree
Showing 11 changed files with 14 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ repos:
- id: isort
args: ["--filter-files", "--settings-file=./pyproject.toml"]
- repo: https://github.com/PyCQA/flake8
rev: 6.1.0
rev: 7.0.0
hooks:
- id: flake8
entry: pflake8
Expand Down
4 changes: 2 additions & 2 deletions conda/environments/all_cuda-128_arch-aarch64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ dependencies:
- pybind11-stubgen=0.10.5
- pydantic
- pylibcudf=25.02
- pylint=3.0.3
- pylint=3.3.4
- pynvml=12
- pypdf=3.17.4
- pytest-asyncio
Expand Down Expand Up @@ -130,7 +130,7 @@ dependencies:
- databricks-connect
- dgl==2.1.0
- dglgo
- faiss-cpu
- faiss-gpu
- google-search-results==2.4
- langchain-nvidia-ai-endpoints==0.0.11
- langchain-openai==0.1.3
Expand Down
4 changes: 2 additions & 2 deletions conda/environments/all_cuda-128_arch-x86_64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ dependencies:
- pybind11-stubgen=0.10.5
- pydantic
- pylibcudf=25.02
- pylint=3.0.3
- pylint=3.3.4
- pynvml=12
- pypdf=3.17.4
- pypdfium2==4.30
Expand Down Expand Up @@ -136,7 +136,7 @@ dependencies:
- databricks-connect
- dgl==2.1.0
- dglgo
- faiss-cpu
- faiss-gpu
- google-search-results==2.4
- langchain-nvidia-ai-endpoints==0.0.11
- langchain-openai==0.1.3
Expand Down
2 changes: 1 addition & 1 deletion conda/environments/dev_cuda-128_arch-aarch64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ dependencies:
- pybind11-stubgen=0.10.5
- pydantic
- pylibcudf=25.02
- pylint=3.0.3
- pylint=3.3.4
- pynvml=12
- pytest-asyncio
- pytest-benchmark=4.0
Expand Down
2 changes: 1 addition & 1 deletion conda/environments/dev_cuda-128_arch-x86_64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ dependencies:
- pybind11-stubgen=0.10.5
- pydantic
- pylibcudf=25.02
- pylint=3.0.3
- pylint=3.3.4
- pynvml=12
- pypdfium2==4.30
- pytest-asyncio
Expand Down
2 changes: 1 addition & 1 deletion conda/environments/examples_cuda-128_arch-aarch64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ dependencies:
- databricks-connect
- dgl==2.1.0
- dglgo
- faiss-cpu
- faiss-gpu
- google-search-results==2.4
- langchain-nvidia-ai-endpoints==0.0.11
- langchain-openai==0.1.3
Expand Down
2 changes: 1 addition & 1 deletion conda/environments/examples_cuda-128_arch-x86_64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ dependencies:
- databricks-connect
- dgl==2.1.0
- dglgo
- faiss-cpu
- faiss-gpu
- google-search-results==2.4
- langchain-nvidia-ai-endpoints==0.0.11
- langchain-openai==0.1.3
Expand Down
4 changes: 2 additions & 2 deletions dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -483,7 +483,7 @@ dependencies:
common:
- output_types: [requirements]
packages:
- &faiss-cpu faiss-cpu
- &faiss-gpu faiss-gpu
- &google-search-results google-search-results==2.4
- &langchain langchain==0.1.16
- &langchain-nvidia-ai-endpoints langchain-nvidia-ai-endpoints==0.0.11
Expand Down Expand Up @@ -565,7 +565,7 @@ dependencies:
- requests-toolbelt=1.0 # Transitive dep needed by nemollm, specified here to ensure we get a compatible version
- pip
- pip:
- *faiss-cpu
- *faiss-gpu
- *google-search-results
- *langchain
- *langchain-nvidia-ai-endpoints
Expand Down
1 change: 1 addition & 0 deletions python/morpheus/morpheus/io/serializers.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ def df_to_stream_json(df: DataFrameType, stream: IOBase, include_index_col=True,
lines : bool, optional
Write out the JSON in lines format, by default True.
"""
del include_index_col # Unused parameter
df.to_json(stream, orient="records", lines=lines)

return stream
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This file is generated by `rapids-dependency-file-generator`.
# To make changes, edit ../../../dependencies.yaml and run `rapids-dependency-file-generator`.
--extra-index-url https://download.pytorch.org/whl/cu124
faiss-cpu
faiss-gpu
google-search-results==2.4
langchain-nvidia-ai-endpoints==0.0.11
langchain-openai==0.1.3
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This file is generated by `rapids-dependency-file-generator`.
# To make changes, edit ../../../dependencies.yaml and run `rapids-dependency-file-generator`.
--extra-index-url https://download.pytorch.org/whl/cu124
faiss-cpu
faiss-gpu
google-search-results==2.4
langchain-nvidia-ai-endpoints==0.0.11
langchain-openai==0.1.3
Expand Down

0 comments on commit f3f881a

Please sign in to comment.