From ebf757b7a24d7c9a555bb6dabc39d12a04765bbe Mon Sep 17 00:00:00 2001 From: Haotian Zhang <socool.king@gmail.com> Date: Fri, 23 Feb 2024 19:42:12 -0500 Subject: [PATCH] fix pkg for Fireworks (#11339) --- .../llama-index-embeddings-fireworks/pyproject.toml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/llama-index-integrations/embeddings/llama-index-embeddings-fireworks/pyproject.toml b/llama-index-integrations/embeddings/llama-index-embeddings-fireworks/pyproject.toml index b70613264a..4eb400aa05 100644 --- a/llama-index-integrations/embeddings/llama-index-embeddings-fireworks/pyproject.toml +++ b/llama-index-integrations/embeddings/llama-index-embeddings-fireworks/pyproject.toml @@ -8,19 +8,20 @@ check-hidden = true skip = "*.csv,*.html,*.json,*.jsonl,*.pdf,*.txt,*.ipynb" [tool.llamahub] -classes = ["FireworksEmbedding"] contains_example = false import_path = "llama_index.embeddings.fireworks" +[tool.llamahub.class_authors] +FireworksEmbedding = "benjibc" + [tool.mypy] disallow_untyped_defs = true exclude = ["_static", "build", "examples", "notebooks", "venv"] -explicit_package_bases = true ignore_missing_imports = true python_version = "3.8" [tool.poetry] -authors = ["Your Name <you@example.com>"] +authors = ["benjibc"] description = "llama-index embeddings fireworks integration" license = "MIT" name = "llama-index-embeddings-fireworks" @@ -29,7 +30,7 @@ version = "0.1.1" [tool.poetry.dependencies] python = ">=3.8.1,<3.12" -llama-index-core = "^0.10.1" +llama-index-core = "^0.10.12" llama-index-llms-openai = "^0.1.1" [tool.poetry.group.dev.dependencies] -- GitLab