mirror of
https://github.com/imartinez/privateGPT.git
synced 2025-04-28 19:43:23 +00:00
fix: ffmpy dependency (#2020)
* fix: ffmpy dependency * fix: block ffmpy to commit sha
This commit is contained in:
parent
05a986231c
commit
dabf556dae
17
poetry.lock
generated
17
poetry.lock
generated
@ -1253,13 +1253,18 @@ standard = ["fastapi", "uvicorn[standard] (>=0.15.0)"]
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "ffmpy"
|
name = "ffmpy"
|
||||||
version = "0.3.1"
|
version = "0.3.2"
|
||||||
description = "A simple Python wrapper for ffmpeg"
|
description = "A simple Python wrapper for ffmpeg"
|
||||||
optional = true
|
optional = true
|
||||||
python-versions = "*"
|
python-versions = "*"
|
||||||
files = [
|
files = []
|
||||||
{file = "ffmpy-0.3.1.tar.gz", hash = "sha256:a173b8f42c7c669ff722df7fb31e1e870067713697f745224fa6e621b82f0004"},
|
develop = false
|
||||||
]
|
|
||||||
|
[package.source]
|
||||||
|
type = "git"
|
||||||
|
url = "https://github.com/EuDs63/ffmpy.git"
|
||||||
|
reference = "HEAD"
|
||||||
|
resolved_reference = "333a19ee4d21f32537c0508aa1942ef1aa7afe24"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "filelock"
|
name = "filelock"
|
||||||
@ -6851,7 +6856,7 @@ llms-openai-like = ["llama-index-llms-openai-like"]
|
|||||||
llms-sagemaker = ["boto3"]
|
llms-sagemaker = ["boto3"]
|
||||||
rerank-sentence-transformers = ["sentence-transformers", "torch"]
|
rerank-sentence-transformers = ["sentence-transformers", "torch"]
|
||||||
storage-nodestore-postgres = ["asyncpg", "llama-index-storage-docstore-postgres", "llama-index-storage-index-store-postgres", "psycopg2-binary"]
|
storage-nodestore-postgres = ["asyncpg", "llama-index-storage-docstore-postgres", "llama-index-storage-index-store-postgres", "psycopg2-binary"]
|
||||||
ui = ["gradio"]
|
ui = ["ffmpy", "gradio"]
|
||||||
vector-stores-chroma = ["llama-index-vector-stores-chroma"]
|
vector-stores-chroma = ["llama-index-vector-stores-chroma"]
|
||||||
vector-stores-clickhouse = ["clickhouse-connect", "llama-index-vector-stores-clickhouse"]
|
vector-stores-clickhouse = ["clickhouse-connect", "llama-index-vector-stores-clickhouse"]
|
||||||
vector-stores-milvus = ["llama-index-vector-stores-milvus"]
|
vector-stores-milvus = ["llama-index-vector-stores-milvus"]
|
||||||
@ -6861,4 +6866,4 @@ vector-stores-qdrant = ["llama-index-vector-stores-qdrant"]
|
|||||||
[metadata]
|
[metadata]
|
||||||
lock-version = "2.0"
|
lock-version = "2.0"
|
||||||
python-versions = ">=3.11,<3.12"
|
python-versions = ">=3.11,<3.12"
|
||||||
content-hash = "5e916cce1a7805965795dbaee0e2d24612e54305af4b1936d6bc1fa469b8012f"
|
content-hash = "66edb004ccbe7915d68567ea31a7851c87717185e2b504048cc645d1d511a66e"
|
||||||
|
@ -56,12 +56,14 @@ sentence-transformers = {version ="^3.0.1", optional = true}
|
|||||||
|
|
||||||
# Optional UI
|
# Optional UI
|
||||||
gradio = {version ="^4.37.2", optional = true}
|
gradio = {version ="^4.37.2", optional = true}
|
||||||
|
# Fix: https://github.com/AUTOMATIC1111/stable-diffusion-webui/issues/16289#issuecomment-2255106490
|
||||||
|
ffmpy = {git = "https://github.com/EuDs63/ffmpy.git", rev = "333a19ee4d21f32537c0508aa1942ef1aa7afe24", optional = true}
|
||||||
|
|
||||||
# Optional Google Gemini dependency
|
# Optional Google Gemini dependency
|
||||||
google-generativeai = {version ="^0.5.4", optional = true}
|
google-generativeai = {version ="^0.5.4", optional = true}
|
||||||
|
|
||||||
[tool.poetry.extras]
|
[tool.poetry.extras]
|
||||||
ui = ["gradio"]
|
ui = ["gradio", "ffmpy"]
|
||||||
llms-llama-cpp = ["llama-index-llms-llama-cpp"]
|
llms-llama-cpp = ["llama-index-llms-llama-cpp"]
|
||||||
llms-openai = ["llama-index-llms-openai"]
|
llms-openai = ["llama-index-llms-openai"]
|
||||||
llms-openai-like = ["llama-index-llms-openai-like"]
|
llms-openai-like = ["llama-index-llms-openai-like"]
|
||||||
|
Loading…
Reference in New Issue
Block a user