forked from run-llama/llama_index
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement local Nomic Embed with the inference_mode parameter (run-ll…
- Loading branch information
1 parent
e648b8e
commit 8f1e978
Showing
2 changed files
with
41 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,20 +21,19 @@ ignore_missing_imports = true | |
python_version = "3.8" | ||
|
||
[tool.poetry] | ||
authors = ["Your Name <[email protected]>"] | ||
authors = ["Jared Van Bortel <[email protected]>", "Zach Nussbaum <[email protected]>"] | ||
description = "llama-index embeddings nomic integration" | ||
exclude = ["**/BUILD"] | ||
license = "MIT" | ||
name = "llama-index-embeddings-nomic" | ||
readme = "README.md" | ||
version = "0.1.6" | ||
version = "0.2.0" | ||
|
||
[tool.poetry.dependencies] | ||
python = ">=3.8.1,<4.0" | ||
llama-index-core = "^0.10.11.post1" | ||
llama-index-embeddings-huggingface = "^0.1.3" | ||
einops = "^0.7.0" | ||
nomic = "^3.0.12" | ||
nomic = "^3.0.29" | ||
|
||
[tool.poetry.group.dev.dependencies] | ||
ipython = "8.10.0" | ||
|