Spaces:
Runtime error
Runtime error
Add MISTRAL integration, update dependencies, and adjust `.example.env` for new API key support.
Browse files- .example.env +1 -0
- README.md +1 -1
- pyproject.toml +4 -0
- src/gaia_solving_agent/__init__.py +1 -0
- src/gaia_solving_agent/tools.py +37 -1
- uv.lock +243 -104
.example.env
CHANGED
|
@@ -12,6 +12,7 @@
|
|
| 12 |
|
| 13 |
HF_TOKEN = "hf_xxxxxx"
|
| 14 |
NEBIUS_API_TOKEN = "xxxxxxxx"
|
|
|
|
| 15 |
# See https://docs.llamaindex.ai/en/stable/module_guides/observability/#llamatrace-hosted-arize-phoenix
|
| 16 |
PHOENIX_API_KEY = "xxxxxxxxxxxxxxxxxxx:xxxxxxx"
|
| 17 |
|
|
|
|
| 12 |
|
| 13 |
HF_TOKEN = "hf_xxxxxx"
|
| 14 |
NEBIUS_API_TOKEN = "xxxxxxxx"
|
| 15 |
+
MISTRAL_API_KEY = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
|
| 16 |
# See https://docs.llamaindex.ai/en/stable/module_guides/observability/#llamatrace-hosted-arize-phoenix
|
| 17 |
PHOENIX_API_KEY = "xxxxxxxxxxxxxxxxxxx:xxxxxxx"
|
| 18 |
|
README.md
CHANGED
|
@@ -32,7 +32,7 @@ Tools :
|
|
| 32 |
- [x] Web search
|
| 33 |
- [x] Url requests
|
| 34 |
- [x] Wikipedia
|
| 35 |
-
- [
|
| 36 |
- [ ] Video queries
|
| 37 |
- [ ] Website parser
|
| 38 |
- [ ] Text chunker
|
|
|
|
| 32 |
- [x] Web search
|
| 33 |
- [x] Url requests
|
| 34 |
- [x] Wikipedia
|
| 35 |
+
- [x] Image queries
|
| 36 |
- [ ] Video queries
|
| 37 |
- [ ] Website parser
|
| 38 |
- [ ] Text chunker
|
pyproject.toml
CHANGED
|
@@ -10,9 +10,13 @@ dependencies = [
|
|
| 10 |
"llama-index>=0.12.43",
|
| 11 |
"llama-index-llms-huggingface-api>=0.5.0",
|
| 12 |
"llama-index-llms-nebius>=0.1.2",
|
|
|
|
|
|
|
|
|
|
| 13 |
"llama-index-tools-duckduckgo>=0.3.0",
|
| 14 |
"llama-index-tools-requests>=0.4.0",
|
| 15 |
"llama-index-tools-wikipedia>=0.3.0",
|
|
|
|
| 16 |
"openai-whisper>=20250625",
|
| 17 |
"openpyxl>=3.1.5",
|
| 18 |
"requests>=2.32.4",
|
|
|
|
| 10 |
"llama-index>=0.12.43",
|
| 11 |
"llama-index-llms-huggingface-api>=0.5.0",
|
| 12 |
"llama-index-llms-nebius>=0.1.2",
|
| 13 |
+
"llama-index-multi-modal-llms-huggingface>=0.4.2",
|
| 14 |
+
"llama-index-multi-modal-llms-mistralai>=0.4.0",
|
| 15 |
+
"llama-index-multi-modal-llms-nebius>=0.4.0",
|
| 16 |
"llama-index-tools-duckduckgo>=0.3.0",
|
| 17 |
"llama-index-tools-requests>=0.4.0",
|
| 18 |
"llama-index-tools-wikipedia>=0.3.0",
|
| 19 |
+
"mistralai>=1.8.2",
|
| 20 |
"openai-whisper>=20250625",
|
| 21 |
"openpyxl>=3.1.5",
|
| 22 |
"requests>=2.32.4",
|
src/gaia_solving_agent/__init__.py
CHANGED
|
@@ -5,5 +5,6 @@ from dotenv import load_dotenv
|
|
| 5 |
load_dotenv()
|
| 6 |
HF_API_TOKEN = os.getenv("HF_TOKEN")
|
| 7 |
NEBIUS_API_KEY = os.getenv("NEBIUS_API_TOKEN")
|
|
|
|
| 8 |
PHOENIX_API_KEY = os.getenv("PHOENIX_API_KEY")
|
| 9 |
TAVILY_API_KEY = os.getenv("TAVILY_API_KEY")
|
|
|
|
| 5 |
load_dotenv()
|
| 6 |
HF_API_TOKEN = os.getenv("HF_TOKEN")
|
| 7 |
NEBIUS_API_KEY = os.getenv("NEBIUS_API_TOKEN")
|
| 8 |
+
MISTRAL_API_KEY = os.getenv("MISTRAL_API_KEY")
|
| 9 |
PHOENIX_API_KEY = os.getenv("PHOENIX_API_KEY")
|
| 10 |
TAVILY_API_KEY = os.getenv("TAVILY_API_KEY")
|
src/gaia_solving_agent/tools.py
CHANGED
|
@@ -1,6 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
| 1 |
from tavily import AsyncTavilyClient
|
| 2 |
|
| 3 |
-
from gaia_solving_agent import TAVILY_API_KEY
|
| 4 |
|
| 5 |
|
| 6 |
async def tavily_search_web(query: str) -> str:
|
|
@@ -10,3 +13,36 @@ async def tavily_search_web(query: str) -> str:
|
|
| 10 |
client = AsyncTavilyClient(api_key=TAVILY_API_KEY)
|
| 11 |
return str(await client.search(query))
|
| 12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from llama_index.core.schema import ImageDocument
|
| 2 |
+
from llama_index.multi_modal_llms.mistralai import MistralAIMultiModal
|
| 3 |
+
from llama_index.multi_modal_llms.nebius import NebiusMultiModal
|
| 4 |
from tavily import AsyncTavilyClient
|
| 5 |
|
| 6 |
+
from gaia_solving_agent import TAVILY_API_KEY, NEBIUS_API_KEY, MISTRAL_API_KEY
|
| 7 |
|
| 8 |
|
| 9 |
async def tavily_search_web(query: str) -> str:
|
|
|
|
| 13 |
client = AsyncTavilyClient(api_key=TAVILY_API_KEY)
|
| 14 |
return str(await client.search(query))
|
| 15 |
|
| 16 |
+
|
| 17 |
+
async def vllm_ask_image(query: str, images: ImageDocument | list[ImageDocument]) -> str:
|
| 18 |
+
"""
|
| 19 |
+
Asynchronously processes a visual-linguistic query paired with image data
|
| 20 |
+
and returns corresponding results. This function leverages visual
|
| 21 |
+
understanding and language processing to answer the provided query based
|
| 22 |
+
on the content of the given image(s).
|
| 23 |
+
|
| 24 |
+
Parameters:
|
| 25 |
+
query: str
|
| 26 |
+
The question or request related to the provided image(s).
|
| 27 |
+
images: ImageDocument | list[ImageDocument]
|
| 28 |
+
Image data provided as a llamaindex ImageDocument or list of.
|
| 29 |
+
|
| 30 |
+
Returns:
|
| 31 |
+
str
|
| 32 |
+
The result or response to the provided query based on the processed
|
| 33 |
+
image content.
|
| 34 |
+
"""
|
| 35 |
+
multimodal_llm = MistralAIMultiModal(
|
| 36 |
+
model="mistral-small-2506",
|
| 37 |
+
api_key=MISTRAL_API_KEY,
|
| 38 |
+
temperature=.1,
|
| 39 |
+
max_retries=5,
|
| 40 |
+
)
|
| 41 |
+
|
| 42 |
+
if not isinstance(images, list):
|
| 43 |
+
images = [images]
|
| 44 |
+
vllm_output = multimodal_llm.complete(
|
| 45 |
+
prompt = query,
|
| 46 |
+
image_documents=images
|
| 47 |
+
)
|
| 48 |
+
return vllm_output.text
|
uv.lock
CHANGED
|
@@ -7,6 +7,24 @@ resolution-markers = [
|
|
| 7 |
"python_full_version < '3.12.4'",
|
| 8 |
]
|
| 9 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 10 |
[[package]]
|
| 11 |
name = "agent-course-final-assignment"
|
| 12 |
version = "0.1.0"
|
|
@@ -17,9 +35,13 @@ dependencies = [
|
|
| 17 |
{ name = "llama-index" },
|
| 18 |
{ name = "llama-index-llms-huggingface-api" },
|
| 19 |
{ name = "llama-index-llms-nebius" },
|
|
|
|
|
|
|
|
|
|
| 20 |
{ name = "llama-index-tools-duckduckgo" },
|
| 21 |
{ name = "llama-index-tools-requests" },
|
| 22 |
{ name = "llama-index-tools-wikipedia" },
|
|
|
|
| 23 |
{ name = "openai-whisper" },
|
| 24 |
{ name = "openpyxl" },
|
| 25 |
{ name = "requests" },
|
|
@@ -40,9 +62,13 @@ requires-dist = [
|
|
| 40 |
{ name = "llama-index", specifier = ">=0.12.43" },
|
| 41 |
{ name = "llama-index-llms-huggingface-api", specifier = ">=0.5.0" },
|
| 42 |
{ name = "llama-index-llms-nebius", specifier = ">=0.1.2" },
|
|
|
|
|
|
|
|
|
|
| 43 |
{ name = "llama-index-tools-duckduckgo", specifier = ">=0.3.0" },
|
| 44 |
{ name = "llama-index-tools-requests", specifier = ">=0.4.0" },
|
| 45 |
{ name = "llama-index-tools-wikipedia", specifier = ">=0.3.0" },
|
|
|
|
| 46 |
{ name = "openai-whisper", specifier = ">=20250625" },
|
| 47 |
{ name = "openpyxl", specifier = ">=3.1.5" },
|
| 48 |
{ name = "requests", specifier = ">=2.32.4" },
|
|
@@ -359,6 +385,32 @@ wheels = [
|
|
| 359 |
{ url = "https://files.pythonhosted.org/packages/84/29/587c189bbab1ccc8c86a03a5d0e13873df916380ef1be461ebe6acebf48d/authlib-1.6.0-py2.py3-none-any.whl", hash = "sha256:91685589498f79e8655e8a8947431ad6288831d643f11c55c2143ffcc738048d", size = 239981, upload-time = "2025-05-23T00:21:43.075Z" },
|
| 360 |
]
|
| 361 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 362 |
[[package]]
|
| 363 |
name = "banks"
|
| 364 |
version = "2.1.2"
|
|
@@ -626,6 +678,15 @@ wheels = [
|
|
| 626 |
{ url = "https://files.pythonhosted.org/packages/c1/8b/5fe2cc11fee489817272089c4203e679c63b570a5aaeb18d852ae3cbba6a/et_xmlfile-2.0.0-py3-none-any.whl", hash = "sha256:7a91720bc756843502c3b7504c77b8fe44217c85c537d85037f0f536151b2caa", size = 18059, upload-time = "2024-10-25T17:25:39.051Z" },
|
| 627 |
]
|
| 628 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 629 |
[[package]]
|
| 630 |
name = "executing"
|
| 631 |
version = "2.2.0"
|
|
@@ -1435,6 +1496,19 @@ wheels = [
|
|
| 1435 |
{ url = "https://files.pythonhosted.org/packages/79/1d/be41914d77910f01a8608dadd6b8902548229e7bf7fd564f5f2fdf1c1f15/llama_index_llms_huggingface_api-0.5.0-py3-none-any.whl", hash = "sha256:b3ec0452c61be163fb934c3f507906717989dfa40d81a0b9489f3348e96b0979", size = 7489, upload-time = "2025-05-30T00:09:12.494Z" },
|
| 1436 |
]
|
| 1437 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1438 |
[[package]]
|
| 1439 |
name = "llama-index-llms-nebius"
|
| 1440 |
version = "0.1.2"
|
|
@@ -1475,6 +1549,47 @@ wheels = [
|
|
| 1475 |
{ url = "https://files.pythonhosted.org/packages/b8/41/e080871437ec507377126165318f2da6713a4d6dc2767f2444a8bd818791/llama_index_llms_openai_like-0.4.0-py3-none-any.whl", hash = "sha256:52a3cb5ce78049fde5c9926898b90e02bc04e3d23adbc991842e9ff574df9ea1", size = 4593, upload-time = "2025-05-30T17:47:10.456Z" },
|
| 1476 |
]
|
| 1477 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1478 |
[[package]]
|
| 1479 |
name = "llama-index-multi-modal-llms-openai"
|
| 1480 |
version = "0.5.1"
|
|
@@ -1734,6 +1849,22 @@ wheels = [
|
|
| 1734 |
{ url = "https://files.pythonhosted.org/packages/b3/38/89ba8ad64ae25be8de66a6d463314cf1eb366222074cfda9ee839c56a4b4/mdurl-0.1.2-py3-none-any.whl", hash = "sha256:84008a41e51615a49fc9966191ff91509e3c40b939176e643fd50a5c2196b8f8", size = 9979, upload-time = "2022-08-14T12:40:09.779Z" },
|
| 1735 |
]
|
| 1736 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1737 |
[[package]]
|
| 1738 |
name = "more-itertools"
|
| 1739 |
version = "10.7.0"
|
|
@@ -1919,81 +2050,66 @@ wheels = [
|
|
| 1919 |
|
| 1920 |
[[package]]
|
| 1921 |
name = "nvidia-cublas-cu12"
|
| 1922 |
-
version = "12.
|
| 1923 |
source = { registry = "https://pypi.org/simple" }
|
| 1924 |
wheels = [
|
| 1925 |
-
{ url = "https://files.pythonhosted.org/packages/
|
| 1926 |
]
|
| 1927 |
|
| 1928 |
[[package]]
|
| 1929 |
name = "nvidia-cuda-cupti-cu12"
|
| 1930 |
-
version = "12.
|
| 1931 |
source = { registry = "https://pypi.org/simple" }
|
| 1932 |
wheels = [
|
| 1933 |
-
{ url = "https://files.pythonhosted.org/packages/
|
| 1934 |
-
{ url = "https://files.pythonhosted.org/packages/a5/24/120ee57b218d9952c379d1e026c4479c9ece9997a4fb46303611ee48f038/nvidia_cuda_cupti_cu12-12.6.80-py3-none-manylinux2014_x86_64.whl", hash = "sha256:a3eff6cdfcc6a4c35db968a06fcadb061cbc7d6dde548609a941ff8701b98b73", size = 8917972, upload-time = "2024-10-01T16:58:06.036Z" },
|
| 1935 |
]
|
| 1936 |
|
| 1937 |
[[package]]
|
| 1938 |
name = "nvidia-cuda-nvrtc-cu12"
|
| 1939 |
-
version = "12.
|
| 1940 |
source = { registry = "https://pypi.org/simple" }
|
| 1941 |
wheels = [
|
| 1942 |
-
{ url = "https://files.pythonhosted.org/packages/
|
| 1943 |
]
|
| 1944 |
|
| 1945 |
[[package]]
|
| 1946 |
name = "nvidia-cuda-runtime-cu12"
|
| 1947 |
-
version = "12.
|
| 1948 |
source = { registry = "https://pypi.org/simple" }
|
| 1949 |
wheels = [
|
| 1950 |
-
{ url = "https://files.pythonhosted.org/packages/
|
| 1951 |
-
{ url = "https://files.pythonhosted.org/packages/f0/62/65c05e161eeddbafeca24dc461f47de550d9fa8a7e04eb213e32b55cfd99/nvidia_cuda_runtime_cu12-12.6.77-py3-none-manylinux2014_x86_64.whl", hash = "sha256:a84d15d5e1da416dd4774cb42edf5e954a3e60cc945698dc1d5be02321c44dc8", size = 897678, upload-time = "2024-10-01T16:57:33.821Z" },
|
| 1952 |
]
|
| 1953 |
|
| 1954 |
[[package]]
|
| 1955 |
name = "nvidia-cudnn-cu12"
|
| 1956 |
-
version = "9.
|
| 1957 |
source = { registry = "https://pypi.org/simple" }
|
| 1958 |
dependencies = [
|
| 1959 |
{ name = "nvidia-cublas-cu12" },
|
| 1960 |
]
|
| 1961 |
wheels = [
|
| 1962 |
-
{ url = "https://files.pythonhosted.org/packages/
|
| 1963 |
]
|
| 1964 |
|
| 1965 |
[[package]]
|
| 1966 |
name = "nvidia-cufft-cu12"
|
| 1967 |
-
version = "11.
|
| 1968 |
-
source = { registry = "https://pypi.org/simple" }
|
| 1969 |
-
dependencies = [
|
| 1970 |
-
{ name = "nvidia-nvjitlink-cu12" },
|
| 1971 |
-
]
|
| 1972 |
-
wheels = [
|
| 1973 |
-
{ url = "https://files.pythonhosted.org/packages/8f/16/73727675941ab8e6ffd86ca3a4b7b47065edcca7a997920b831f8147c99d/nvidia_cufft_cu12-11.3.0.4-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:ccba62eb9cef5559abd5e0d54ceed2d9934030f51163df018532142a8ec533e5", size = 200221632, upload-time = "2024-11-20T17:41:32.357Z" },
|
| 1974 |
-
{ url = "https://files.pythonhosted.org/packages/60/de/99ec247a07ea40c969d904fc14f3a356b3e2a704121675b75c366b694ee1/nvidia_cufft_cu12-11.3.0.4-py3-none-manylinux2014_x86_64.whl", hash = "sha256:768160ac89f6f7b459bee747e8d175dbf53619cfe74b2a5636264163138013ca", size = 200221622, upload-time = "2024-10-01T17:03:58.79Z" },
|
| 1975 |
-
]
|
| 1976 |
-
|
| 1977 |
-
[[package]]
|
| 1978 |
-
name = "nvidia-cufile-cu12"
|
| 1979 |
-
version = "1.11.1.6"
|
| 1980 |
source = { registry = "https://pypi.org/simple" }
|
| 1981 |
wheels = [
|
| 1982 |
-
{ url = "https://files.pythonhosted.org/packages/
|
| 1983 |
]
|
| 1984 |
|
| 1985 |
[[package]]
|
| 1986 |
name = "nvidia-curand-cu12"
|
| 1987 |
-
version = "10.3.
|
| 1988 |
source = { registry = "https://pypi.org/simple" }
|
| 1989 |
wheels = [
|
| 1990 |
-
{ url = "https://files.pythonhosted.org/packages/
|
| 1991 |
-
{ url = "https://files.pythonhosted.org/packages/4a/aa/2c7ff0b5ee02eaef890c0ce7d4f74bc30901871c5e45dee1ae6d0083cd80/nvidia_curand_cu12-10.3.7.77-py3-none-manylinux2014_x86_64.whl", hash = "sha256:99f1a32f1ac2bd134897fc7a203f779303261268a65762a623bf30cc9fe79117", size = 56279000, upload-time = "2024-10-01T17:04:45.274Z" },
|
| 1992 |
]
|
| 1993 |
|
| 1994 |
[[package]]
|
| 1995 |
name = "nvidia-cusolver-cu12"
|
| 1996 |
-
version = "11.
|
| 1997 |
source = { registry = "https://pypi.org/simple" }
|
| 1998 |
dependencies = [
|
| 1999 |
{ name = "nvidia-cublas-cu12" },
|
|
@@ -2001,36 +2117,26 @@ dependencies = [
|
|
| 2001 |
{ name = "nvidia-nvjitlink-cu12" },
|
| 2002 |
]
|
| 2003 |
wheels = [
|
| 2004 |
-
{ url = "https://files.pythonhosted.org/packages/
|
| 2005 |
-
{ url = "https://files.pythonhosted.org/packages/9f/81/baba53585da791d043c10084cf9553e074548408e04ae884cfe9193bd484/nvidia_cusolver_cu12-11.7.1.2-py3-none-manylinux2014_x86_64.whl", hash = "sha256:6cf28f17f64107a0c4d7802be5ff5537b2130bfc112f25d5a30df227058ca0e6", size = 158229780, upload-time = "2024-10-01T17:05:39.875Z" },
|
| 2006 |
]
|
| 2007 |
|
| 2008 |
[[package]]
|
| 2009 |
name = "nvidia-cusparse-cu12"
|
| 2010 |
-
version = "12.
|
| 2011 |
source = { registry = "https://pypi.org/simple" }
|
| 2012 |
dependencies = [
|
| 2013 |
{ name = "nvidia-nvjitlink-cu12" },
|
| 2014 |
]
|
| 2015 |
wheels = [
|
| 2016 |
-
{ url = "https://files.pythonhosted.org/packages/
|
| 2017 |
-
{ url = "https://files.pythonhosted.org/packages/43/ac/64c4316ba163e8217a99680c7605f779accffc6a4bcd0c778c12948d3707/nvidia_cusparse_cu12-12.5.4.2-py3-none-manylinux2014_x86_64.whl", hash = "sha256:23749a6571191a215cb74d1cdbff4a86e7b19f1200c071b3fcf844a5bea23a2f", size = 216561357, upload-time = "2024-10-01T17:06:29.861Z" },
|
| 2018 |
-
]
|
| 2019 |
-
|
| 2020 |
-
[[package]]
|
| 2021 |
-
name = "nvidia-cusparselt-cu12"
|
| 2022 |
-
version = "0.6.3"
|
| 2023 |
-
source = { registry = "https://pypi.org/simple" }
|
| 2024 |
-
wheels = [
|
| 2025 |
-
{ url = "https://files.pythonhosted.org/packages/3b/9a/72ef35b399b0e183bc2e8f6f558036922d453c4d8237dab26c666a04244b/nvidia_cusparselt_cu12-0.6.3-py3-none-manylinux2014_x86_64.whl", hash = "sha256:e5c8a26c36445dd2e6812f1177978a24e2d37cacce7e090f297a688d1ec44f46", size = 156785796, upload-time = "2024-10-15T21:29:17.709Z" },
|
| 2026 |
]
|
| 2027 |
|
| 2028 |
[[package]]
|
| 2029 |
name = "nvidia-nccl-cu12"
|
| 2030 |
-
version = "2.
|
| 2031 |
source = { registry = "https://pypi.org/simple" }
|
| 2032 |
wheels = [
|
| 2033 |
-
{ url = "https://files.pythonhosted.org/packages/
|
| 2034 |
]
|
| 2035 |
|
| 2036 |
[[package]]
|
|
@@ -2043,11 +2149,10 @@ wheels = [
|
|
| 2043 |
|
| 2044 |
[[package]]
|
| 2045 |
name = "nvidia-nvtx-cu12"
|
| 2046 |
-
version = "12.
|
| 2047 |
source = { registry = "https://pypi.org/simple" }
|
| 2048 |
wheels = [
|
| 2049 |
-
{ url = "https://files.pythonhosted.org/packages/
|
| 2050 |
-
{ url = "https://files.pythonhosted.org/packages/9e/4e/0d0c945463719429b7bd21dece907ad0bde437a2ff12b9b12fee94722ab0/nvidia_nvtx_cu12-12.6.77-py3-none-manylinux2014_x86_64.whl", hash = "sha256:6574241a3ec5fdc9334353ab8c479fe75841dbe8f4532a8fc97ce63503330ba1", size = 89265, upload-time = "2024-10-01T17:00:38.172Z" },
|
| 2051 |
]
|
| 2052 |
|
| 2053 |
[[package]]
|
|
@@ -2080,7 +2185,8 @@ dependencies = [
|
|
| 2080 |
{ name = "tiktoken" },
|
| 2081 |
{ name = "torch" },
|
| 2082 |
{ name = "tqdm" },
|
| 2083 |
-
{ name = "triton", marker = "(platform_machine == 'x86_64' and sys_platform == 'linux') or sys_platform == 'linux2'" },
|
|
|
|
| 2084 |
]
|
| 2085 |
sdist = { url = "https://files.pythonhosted.org/packages/35/8e/d36f8880bcf18ec026a55807d02fe4c7357da9f25aebd92f85178000c0dc/openai_whisper-20250625.tar.gz", hash = "sha256:37a91a3921809d9f44748ffc73c0a55c9f366c85a3ef5c2ae0cc09540432eb96", size = 803191, upload-time = "2025-06-26T01:06:13.34Z" }
|
| 2086 |
|
|
@@ -2369,43 +2475,32 @@ wheels = [
|
|
| 2369 |
|
| 2370 |
[[package]]
|
| 2371 |
name = "pillow"
|
| 2372 |
-
version = "
|
| 2373 |
-
source = { registry = "https://pypi.org/simple" }
|
| 2374 |
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
| 2375 |
-
wheels = [
|
| 2376 |
-
{ url = "https://files.pythonhosted.org/packages/
|
| 2377 |
-
{ url = "https://files.pythonhosted.org/packages/
|
| 2378 |
-
{ url = "https://files.pythonhosted.org/packages/
|
| 2379 |
-
{ url = "https://files.pythonhosted.org/packages/
|
| 2380 |
-
{ url = "https://files.pythonhosted.org/packages/
|
| 2381 |
-
{ url = "https://files.pythonhosted.org/packages/
|
| 2382 |
-
{ url = "https://files.pythonhosted.org/packages/
|
| 2383 |
-
{ url = "https://files.pythonhosted.org/packages/
|
| 2384 |
-
{ url = "https://files.pythonhosted.org/packages/
|
| 2385 |
-
{ url = "https://files.pythonhosted.org/packages/
|
| 2386 |
-
{ url = "https://files.pythonhosted.org/packages/
|
| 2387 |
-
{ url = "https://files.pythonhosted.org/packages/
|
| 2388 |
-
{ url = "https://files.pythonhosted.org/packages/
|
| 2389 |
-
{ url = "https://files.pythonhosted.org/packages/
|
| 2390 |
-
{ url = "https://files.pythonhosted.org/packages/
|
| 2391 |
-
{ url = "https://files.pythonhosted.org/packages/
|
| 2392 |
-
{ url = "https://files.pythonhosted.org/packages/
|
| 2393 |
-
{ url = "https://files.pythonhosted.org/packages/
|
| 2394 |
-
{ url = "https://files.pythonhosted.org/packages/
|
| 2395 |
-
{ url = "https://files.pythonhosted.org/packages/
|
| 2396 |
-
{ url = "https://files.pythonhosted.org/packages/
|
| 2397 |
-
{ url = "https://files.pythonhosted.org/packages/
|
| 2398 |
-
{ url = "https://files.pythonhosted.org/packages/c4/3e/c328c48b3f0ead7bab765a84b4977acb29f101d10e4ef57a5e3400447c03/pillow-11.2.1-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:8ce2e8411c7aaef53e6bb29fe98f28cd4fbd9a1d9be2eeea434331aac0536b22", size = 3192759, upload-time = "2025-04-12T17:48:47.866Z" },
|
| 2399 |
-
{ url = "https://files.pythonhosted.org/packages/18/0e/1c68532d833fc8b9f404d3a642991441d9058eccd5606eab31617f29b6d4/pillow-11.2.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:9ee66787e095127116d91dea2143db65c7bb1e232f617aa5957c0d9d2a3f23a7", size = 3033284, upload-time = "2025-04-12T17:48:50.189Z" },
|
| 2400 |
-
{ url = "https://files.pythonhosted.org/packages/b7/cb/6faf3fb1e7705fd2db74e070f3bf6f88693601b0ed8e81049a8266de4754/pillow-11.2.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9622e3b6c1d8b551b6e6f21873bdcc55762b4b2126633014cea1803368a9aa16", size = 4445826, upload-time = "2025-04-12T17:48:52.346Z" },
|
| 2401 |
-
{ url = "https://files.pythonhosted.org/packages/07/94/8be03d50b70ca47fb434a358919d6a8d6580f282bbb7af7e4aa40103461d/pillow-11.2.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:63b5dff3a68f371ea06025a1a6966c9a1e1ee452fc8020c2cd0ea41b83e9037b", size = 4527329, upload-time = "2025-04-12T17:48:54.403Z" },
|
| 2402 |
-
{ url = "https://files.pythonhosted.org/packages/fd/a4/bfe78777076dc405e3bd2080bc32da5ab3945b5a25dc5d8acaa9de64a162/pillow-11.2.1-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:31df6e2d3d8fc99f993fd253e97fae451a8db2e7207acf97859732273e108406", size = 4549049, upload-time = "2025-04-12T17:48:56.383Z" },
|
| 2403 |
-
{ url = "https://files.pythonhosted.org/packages/65/4d/eaf9068dc687c24979e977ce5677e253624bd8b616b286f543f0c1b91662/pillow-11.2.1-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:062b7a42d672c45a70fa1f8b43d1d38ff76b63421cbbe7f88146b39e8a558d91", size = 4635408, upload-time = "2025-04-12T17:48:58.782Z" },
|
| 2404 |
-
{ url = "https://files.pythonhosted.org/packages/1d/26/0fd443365d9c63bc79feb219f97d935cd4b93af28353cba78d8e77b61719/pillow-11.2.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:4eb92eca2711ef8be42fd3f67533765d9fd043b8c80db204f16c8ea62ee1a751", size = 4614863, upload-time = "2025-04-12T17:49:00.709Z" },
|
| 2405 |
-
{ url = "https://files.pythonhosted.org/packages/49/65/dca4d2506be482c2c6641cacdba5c602bc76d8ceb618fd37de855653a419/pillow-11.2.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:f91ebf30830a48c825590aede79376cb40f110b387c17ee9bd59932c961044f9", size = 4692938, upload-time = "2025-04-12T17:49:02.946Z" },
|
| 2406 |
-
{ url = "https://files.pythonhosted.org/packages/b3/92/1ca0c3f09233bd7decf8f7105a1c4e3162fb9142128c74adad0fb361b7eb/pillow-11.2.1-cp313-cp313t-win32.whl", hash = "sha256:e0b55f27f584ed623221cfe995c912c61606be8513bfa0e07d2c674b4516d9dd", size = 2335774, upload-time = "2025-04-12T17:49:04.889Z" },
|
| 2407 |
-
{ url = "https://files.pythonhosted.org/packages/a5/ac/77525347cb43b83ae905ffe257bbe2cc6fd23acb9796639a1f56aa59d191/pillow-11.2.1-cp313-cp313t-win_amd64.whl", hash = "sha256:36d6b82164c39ce5482f649b437382c0fb2395eabc1e2b1702a6deb8ad647d6e", size = 2681895, upload-time = "2025-04-12T17:49:06.635Z" },
|
| 2408 |
-
{ url = "https://files.pythonhosted.org/packages/67/32/32dc030cfa91ca0fc52baebbba2e009bb001122a1daa8b6a79ad830b38d3/pillow-11.2.1-cp313-cp313t-win_arm64.whl", hash = "sha256:225c832a13326e34f212d2072982bb1adb210e0cc0b153e688743018c94a2681", size = 2417234, upload-time = "2025-04-12T17:49:08.399Z" },
|
| 2409 |
]
|
| 2410 |
|
| 2411 |
[[package]]
|
|
@@ -2770,6 +2865,21 @@ wheels = [
|
|
| 2770 |
{ url = "https://files.pythonhosted.org/packages/fa/de/02b54f42487e3d3c6efb3f89428677074ca7bf43aae402517bc7cca949f3/PyYAML-6.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:8388ee1976c416731879ac16da0aff3f63b286ffdd57cdeb95f3f2e085687563", size = 156446, upload-time = "2024-08-06T20:33:04.33Z" },
|
| 2771 |
]
|
| 2772 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2773 |
[[package]]
|
| 2774 |
name = "regex"
|
| 2775 |
version = "2024.11.6"
|
|
@@ -3235,7 +3345,7 @@ wheels = [
|
|
| 3235 |
|
| 3236 |
[[package]]
|
| 3237 |
name = "torch"
|
| 3238 |
-
version = "2.
|
| 3239 |
source = { registry = "https://pypi.org/simple" }
|
| 3240 |
dependencies = [
|
| 3241 |
{ name = "filelock" },
|
|
@@ -3248,32 +3358,37 @@ dependencies = [
|
|
| 3248 |
{ name = "nvidia-cuda-runtime-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" },
|
| 3249 |
{ name = "nvidia-cudnn-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" },
|
| 3250 |
{ name = "nvidia-cufft-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" },
|
| 3251 |
-
{ name = "nvidia-cufile-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" },
|
| 3252 |
{ name = "nvidia-curand-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" },
|
| 3253 |
{ name = "nvidia-cusolver-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" },
|
| 3254 |
{ name = "nvidia-cusparse-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" },
|
| 3255 |
-
{ name = "nvidia-cusparselt-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" },
|
| 3256 |
{ name = "nvidia-nccl-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" },
|
| 3257 |
-
{ name = "nvidia-nvjitlink-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" },
|
| 3258 |
{ name = "nvidia-nvtx-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" },
|
| 3259 |
{ name = "setuptools" },
|
| 3260 |
{ name = "sympy" },
|
| 3261 |
-
{ name = "triton", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" },
|
| 3262 |
{ name = "typing-extensions" },
|
| 3263 |
]
|
| 3264 |
wheels = [
|
| 3265 |
-
{ url = "https://files.pythonhosted.org/packages/
|
| 3266 |
-
{ url = "https://files.pythonhosted.org/packages/
|
| 3267 |
-
{ url = "https://files.pythonhosted.org/packages/
|
| 3268 |
-
{ url = "https://files.pythonhosted.org/packages/
|
| 3269 |
-
|
| 3270 |
-
|
| 3271 |
-
|
| 3272 |
-
|
| 3273 |
-
|
| 3274 |
-
|
| 3275 |
-
|
| 3276 |
-
{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3277 |
]
|
| 3278 |
|
| 3279 |
[[package]]
|
|
@@ -3318,12 +3433,36 @@ wheels = [
|
|
| 3318 |
{ url = "https://files.pythonhosted.org/packages/96/f2/25b27b396af03d5b64e61976b14f7209e2939e9e806c10749b6d277c273e/transformers-4.52.4-py3-none-any.whl", hash = "sha256:203f5c19416d5877e36e88633943761719538a25d9775977a24fe77a1e5adfc7", size = 10460375, upload-time = "2025-05-30T09:17:14.477Z" },
|
| 3319 |
]
|
| 3320 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3321 |
[[package]]
|
| 3322 |
name = "triton"
|
| 3323 |
version = "3.3.1"
|
| 3324 |
source = { registry = "https://pypi.org/simple" }
|
|
|
|
|
|
|
|
|
|
| 3325 |
dependencies = [
|
| 3326 |
-
{ name = "setuptools" },
|
| 3327 |
]
|
| 3328 |
wheels = [
|
| 3329 |
{ url = "https://files.pythonhosted.org/packages/24/5f/950fb373bf9c01ad4eb5a8cd5eaf32cdf9e238c02f9293557a2129b9c4ac/triton-3.3.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9999e83aba21e1a78c1f36f21bce621b77bcaa530277a50484a7cb4a822f6e43", size = 155669138, upload-time = "2025-05-29T23:39:51.771Z" },
|
|
|
|
| 7 |
"python_full_version < '3.12.4'",
|
| 8 |
]
|
| 9 |
|
| 10 |
+
[[package]]
|
| 11 |
+
name = "accelerate"
|
| 12 |
+
version = "1.8.1"
|
| 13 |
+
source = { registry = "https://pypi.org/simple" }
|
| 14 |
+
dependencies = [
|
| 15 |
+
{ name = "huggingface-hub" },
|
| 16 |
+
{ name = "numpy" },
|
| 17 |
+
{ name = "packaging" },
|
| 18 |
+
{ name = "psutil" },
|
| 19 |
+
{ name = "pyyaml" },
|
| 20 |
+
{ name = "safetensors" },
|
| 21 |
+
{ name = "torch" },
|
| 22 |
+
]
|
| 23 |
+
sdist = { url = "https://files.pythonhosted.org/packages/bd/c2/b9e33ad13232606dded4c546e654fb06a15f1dbcbd95d81c9f9dd3ccc771/accelerate-1.8.1.tar.gz", hash = "sha256:f60df931671bc4e75077b852990469d4991ce8bd3a58e72375c3c95132034db9", size = 380872, upload-time = "2025-06-20T15:36:14.618Z" }
|
| 24 |
+
wheels = [
|
| 25 |
+
{ url = "https://files.pythonhosted.org/packages/91/d9/e044c9d42d8ad9afa96533b46ecc9b7aea893d362b3c52bd78fb9fe4d7b3/accelerate-1.8.1-py3-none-any.whl", hash = "sha256:c47b8994498875a2b1286e945bd4d20e476956056c7941d512334f4eb44ff991", size = 365338, upload-time = "2025-06-20T15:36:12.71Z" },
|
| 26 |
+
]
|
| 27 |
+
|
| 28 |
[[package]]
|
| 29 |
name = "agent-course-final-assignment"
|
| 30 |
version = "0.1.0"
|
|
|
|
| 35 |
{ name = "llama-index" },
|
| 36 |
{ name = "llama-index-llms-huggingface-api" },
|
| 37 |
{ name = "llama-index-llms-nebius" },
|
| 38 |
+
{ name = "llama-index-multi-modal-llms-huggingface" },
|
| 39 |
+
{ name = "llama-index-multi-modal-llms-mistralai" },
|
| 40 |
+
{ name = "llama-index-multi-modal-llms-nebius" },
|
| 41 |
{ name = "llama-index-tools-duckduckgo" },
|
| 42 |
{ name = "llama-index-tools-requests" },
|
| 43 |
{ name = "llama-index-tools-wikipedia" },
|
| 44 |
+
{ name = "mistralai" },
|
| 45 |
{ name = "openai-whisper" },
|
| 46 |
{ name = "openpyxl" },
|
| 47 |
{ name = "requests" },
|
|
|
|
| 62 |
{ name = "llama-index", specifier = ">=0.12.43" },
|
| 63 |
{ name = "llama-index-llms-huggingface-api", specifier = ">=0.5.0" },
|
| 64 |
{ name = "llama-index-llms-nebius", specifier = ">=0.1.2" },
|
| 65 |
+
{ name = "llama-index-multi-modal-llms-huggingface", specifier = ">=0.4.2" },
|
| 66 |
+
{ name = "llama-index-multi-modal-llms-mistralai", specifier = ">=0.4.0" },
|
| 67 |
+
{ name = "llama-index-multi-modal-llms-nebius", specifier = ">=0.4.0" },
|
| 68 |
{ name = "llama-index-tools-duckduckgo", specifier = ">=0.3.0" },
|
| 69 |
{ name = "llama-index-tools-requests", specifier = ">=0.4.0" },
|
| 70 |
{ name = "llama-index-tools-wikipedia", specifier = ">=0.3.0" },
|
| 71 |
+
{ name = "mistralai", specifier = ">=1.8.2" },
|
| 72 |
{ name = "openai-whisper", specifier = ">=20250625" },
|
| 73 |
{ name = "openpyxl", specifier = ">=3.1.5" },
|
| 74 |
{ name = "requests", specifier = ">=2.32.4" },
|
|
|
|
| 385 |
{ url = "https://files.pythonhosted.org/packages/84/29/587c189bbab1ccc8c86a03a5d0e13873df916380ef1be461ebe6acebf48d/authlib-1.6.0-py2.py3-none-any.whl", hash = "sha256:91685589498f79e8655e8a8947431ad6288831d643f11c55c2143ffcc738048d", size = 239981, upload-time = "2025-05-23T00:21:43.075Z" },
|
| 386 |
]
|
| 387 |
|
| 388 |
+
[[package]]
|
| 389 |
+
name = "av"
|
| 390 |
+
version = "14.4.0"
|
| 391 |
+
source = { registry = "https://pypi.org/simple" }
|
| 392 |
+
sdist = { url = "https://files.pythonhosted.org/packages/86/f6/0b473dab52dfdea05f28f3578b1c56b6c796ce85e76951bab7c4e38d5a74/av-14.4.0.tar.gz", hash = "sha256:3ecbf803a7fdf67229c0edada0830d6bfaea4d10bfb24f0c3f4e607cd1064b42", size = 3892203, upload-time = "2025-05-16T19:13:35.737Z" }
|
| 393 |
+
wheels = [
|
| 394 |
+
{ url = "https://files.pythonhosted.org/packages/a6/75/b8641653780336c90ba89e5352cac0afa6256a86a150c7703c0b38851c6d/av-14.4.0-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:a53e682b239dd23b4e3bc9568cfb1168fc629ab01925fdb2e7556eb426339e94", size = 19954125, upload-time = "2025-05-16T19:09:54.909Z" },
|
| 395 |
+
{ url = "https://files.pythonhosted.org/packages/99/e6/37fe6fa5853a48d54d749526365780a63a4bc530be6abf2115e3a21e292a/av-14.4.0-cp312-cp312-macosx_12_0_x86_64.whl", hash = "sha256:5aa0b901751a32703fa938d2155d56ce3faf3630e4a48d238b35d2f7e49e5395", size = 23751479, upload-time = "2025-05-16T19:09:57.113Z" },
|
| 396 |
+
{ url = "https://files.pythonhosted.org/packages/f7/75/9a5f0e6bda5f513b62bafd1cff2b495441a8b07ab7fb7b8e62f0c0d1683f/av-14.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a3b316fed3597675fe2aacfed34e25fc9d5bb0196dc8c0b014ae5ed4adda48de", size = 33801401, upload-time = "2025-05-16T19:09:59.479Z" },
|
| 397 |
+
{ url = "https://files.pythonhosted.org/packages/6a/c9/e4df32a2ad1cb7f3a112d0ed610c5e43c89da80b63c60d60e3dc23793ec0/av-14.4.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a587b5c5014c3c0e16143a0f8d99874e46b5d0c50db6111aa0b54206b5687c81", size = 32364330, upload-time = "2025-05-16T19:10:02.111Z" },
|
| 398 |
+
{ url = "https://files.pythonhosted.org/packages/ca/f0/64e7444a41817fde49a07d0239c033f7e9280bec4a4bb4784f5c79af95e6/av-14.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:10d53f75e8ac1ec8877a551c0db32a83c0aaeae719d05285281eaaba211bbc30", size = 35519508, upload-time = "2025-05-16T19:10:05.008Z" },
|
| 399 |
+
{ url = "https://files.pythonhosted.org/packages/c2/a8/a370099daa9033a3b6f9b9bd815304b3d8396907a14d09845f27467ba138/av-14.4.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:c8558cfde79dd8fc92d97c70e0f0fa8c94c7a66f68ae73afdf58598f0fe5e10d", size = 36448593, upload-time = "2025-05-16T19:10:07.887Z" },
|
| 400 |
+
{ url = "https://files.pythonhosted.org/packages/27/bb/edb6ceff8fa7259cb6330c51dbfbc98dd1912bd6eb5f7bc05a4bb14a9d6e/av-14.4.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:455b6410dea0ab2d30234ffb28df7d62ca3cdf10708528e247bec3a4cdcced09", size = 34701485, upload-time = "2025-05-16T19:10:10.886Z" },
|
| 401 |
+
{ url = "https://files.pythonhosted.org/packages/a7/8a/957da1f581aa1faa9a5dfa8b47ca955edb47f2b76b949950933b457bfa1d/av-14.4.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:1661efbe9d975f927b8512d654704223d936f39016fad2ddab00aee7c40f412c", size = 37521981, upload-time = "2025-05-16T19:10:13.678Z" },
|
| 402 |
+
{ url = "https://files.pythonhosted.org/packages/28/76/3f1cf0568592f100fd68eb40ed8c491ce95ca3c1378cc2d4c1f6d1bd295d/av-14.4.0-cp312-cp312-win_amd64.whl", hash = "sha256:fbbeef1f421a3461086853d6464ad5526b56ffe8ccb0ab3fd0a1f121dfbf26ad", size = 27925944, upload-time = "2025-05-16T19:10:16.485Z" },
|
| 403 |
+
{ url = "https://files.pythonhosted.org/packages/12/4c/b0205f77352312ff457ecdf31723dbf4403b7a03fc1659075d6d32f23ef7/av-14.4.0-cp313-cp313-macosx_12_0_arm64.whl", hash = "sha256:3d2aea7c602b105363903e4017103bc4b60336e7aff80e1c22e8b4ec09fd125f", size = 19917341, upload-time = "2025-05-16T19:10:18.826Z" },
|
| 404 |
+
{ url = "https://files.pythonhosted.org/packages/e1/c4/9e783bd7d47828e9c67f9c773c99de45c5ae01b3e942f1abf6cbaf530267/av-14.4.0-cp313-cp313-macosx_12_0_x86_64.whl", hash = "sha256:38c18f036aeb6dc9abf5e867d998c867f9ec93a5f722b60721fdffc123bbb2ae", size = 23715363, upload-time = "2025-05-16T19:10:21.42Z" },
|
| 405 |
+
{ url = "https://files.pythonhosted.org/packages/b5/26/b2b406a676864d06b1c591205782d8527e7c99e5bc51a09862c3576e0087/av-14.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:58c1e18c8be73b6eada2d9ec397852ec74ebe51938451bdf83644a807189d6c8", size = 33496968, upload-time = "2025-05-16T19:10:24.178Z" },
|
| 406 |
+
{ url = "https://files.pythonhosted.org/packages/89/09/0a032bbe30c7049fca243ec8cf01f4be49dd6e7f7b9c3c7f0cc13f83c9d3/av-14.4.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e4c32ff03a357feb030634f093089a73cb474b04efe7fbfba31f229cb2fab115", size = 32075498, upload-time = "2025-05-16T19:10:27.384Z" },
|
| 407 |
+
{ url = "https://files.pythonhosted.org/packages/0b/1f/0fee20f74c1f48086366e59dbd37fa0684cd0f3c782a65cbb719d26c7acd/av-14.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:af31d16ae25964a6a02e09cc132b9decd5ee493c5dcb21bcdf0d71b2d6adbd59", size = 35224910, upload-time = "2025-05-16T19:10:30.104Z" },
|
| 408 |
+
{ url = "https://files.pythonhosted.org/packages/9e/19/1c4a201c75a2a431a85a43fd15d1fad55a28c22d596461d861c8d70f9b92/av-14.4.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:e9fb297009e528f4851d25f3bb2781b2db18b59b10aed10240e947b77c582fb7", size = 36172918, upload-time = "2025-05-16T19:10:32.789Z" },
|
| 409 |
+
{ url = "https://files.pythonhosted.org/packages/00/48/26b7e5d911c807f5f017a285362470ba16f44e8ea46f8b09ab5e348dd15b/av-14.4.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:573314cb9eafec2827dc98c416c965330dc7508193adbccd281700d8673b9f0a", size = 34414492, upload-time = "2025-05-16T19:10:36.023Z" },
|
| 410 |
+
{ url = "https://files.pythonhosted.org/packages/6d/26/2f4badfa5b5b7b8f5f83d562b143a83ed940fa458eea4cad495ce95c9741/av-14.4.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:f82ab27ee57c3b80eb50a5293222307dfdc02f810ea41119078cfc85ea3cf9a8", size = 37245826, upload-time = "2025-05-16T19:10:39.562Z" },
|
| 411 |
+
{ url = "https://files.pythonhosted.org/packages/f4/02/88dbb6f5a05998b730d2e695b05060297af127ac4250efbe0739daa446d5/av-14.4.0-cp313-cp313-win_amd64.whl", hash = "sha256:9f682003bbcaac620b52f68ff0e85830fff165dea53949e217483a615993ca20", size = 27898395, upload-time = "2025-05-16T19:13:02.653Z" },
|
| 412 |
+
]
|
| 413 |
+
|
| 414 |
[[package]]
|
| 415 |
name = "banks"
|
| 416 |
version = "2.1.2"
|
|
|
|
| 678 |
{ url = "https://files.pythonhosted.org/packages/c1/8b/5fe2cc11fee489817272089c4203e679c63b570a5aaeb18d852ae3cbba6a/et_xmlfile-2.0.0-py3-none-any.whl", hash = "sha256:7a91720bc756843502c3b7504c77b8fe44217c85c537d85037f0f536151b2caa", size = 18059, upload-time = "2024-10-25T17:25:39.051Z" },
|
| 679 |
]
|
| 680 |
|
| 681 |
+
[[package]]
|
| 682 |
+
name = "eval-type-backport"
|
| 683 |
+
version = "0.2.2"
|
| 684 |
+
source = { registry = "https://pypi.org/simple" }
|
| 685 |
+
sdist = { url = "https://files.pythonhosted.org/packages/30/ea/8b0ac4469d4c347c6a385ff09dc3c048c2d021696664e26c7ee6791631b5/eval_type_backport-0.2.2.tar.gz", hash = "sha256:f0576b4cf01ebb5bd358d02314d31846af5e07678387486e2c798af0e7d849c1", size = 9079, upload-time = "2024-12-21T20:09:46.005Z" }
|
| 686 |
+
wheels = [
|
| 687 |
+
{ url = "https://files.pythonhosted.org/packages/ce/31/55cd413eaccd39125368be33c46de24a1f639f2e12349b0361b4678f3915/eval_type_backport-0.2.2-py3-none-any.whl", hash = "sha256:cb6ad7c393517f476f96d456d0412ea80f0a8cf96f6892834cd9340149111b0a", size = 5830, upload-time = "2024-12-21T20:09:44.175Z" },
|
| 688 |
+
]
|
| 689 |
+
|
| 690 |
[[package]]
|
| 691 |
name = "executing"
|
| 692 |
version = "2.2.0"
|
|
|
|
| 1496 |
{ url = "https://files.pythonhosted.org/packages/79/1d/be41914d77910f01a8608dadd6b8902548229e7bf7fd564f5f2fdf1c1f15/llama_index_llms_huggingface_api-0.5.0-py3-none-any.whl", hash = "sha256:b3ec0452c61be163fb934c3f507906717989dfa40d81a0b9489f3348e96b0979", size = 7489, upload-time = "2025-05-30T00:09:12.494Z" },
|
| 1497 |
]
|
| 1498 |
|
| 1499 |
+
[[package]]
|
| 1500 |
+
name = "llama-index-llms-mistralai"
|
| 1501 |
+
version = "0.4.0"
|
| 1502 |
+
source = { registry = "https://pypi.org/simple" }
|
| 1503 |
+
dependencies = [
|
| 1504 |
+
{ name = "llama-index-core" },
|
| 1505 |
+
{ name = "mistralai" },
|
| 1506 |
+
]
|
| 1507 |
+
sdist = { url = "https://files.pythonhosted.org/packages/9a/a9/f186a9e36cd51b1d4b66b9b8de6efeee82be42119f02f2275e98243da108/llama_index_llms_mistralai-0.4.0.tar.gz", hash = "sha256:13e81b23d96af668ca697f17c268d2e9de8d399419879223a7060fd1ac0da9ca", size = 7090, upload-time = "2025-03-03T19:35:29.231Z" }
|
| 1508 |
+
wheels = [
|
| 1509 |
+
{ url = "https://files.pythonhosted.org/packages/89/ce/8f15e097cf9ec82ba7862daaca94d045c55a6f99a695222210923d697c16/llama_index_llms_mistralai-0.4.0-py3-none-any.whl", hash = "sha256:2839018db233ce8b7ee13c925a53fa01489badacfe1ddfff27d919f5193f8569", size = 8001, upload-time = "2025-03-03T19:35:27.483Z" },
|
| 1510 |
+
]
|
| 1511 |
+
|
| 1512 |
[[package]]
|
| 1513 |
name = "llama-index-llms-nebius"
|
| 1514 |
version = "0.1.2"
|
|
|
|
| 1549 |
{ url = "https://files.pythonhosted.org/packages/b8/41/e080871437ec507377126165318f2da6713a4d6dc2767f2444a8bd818791/llama_index_llms_openai_like-0.4.0-py3-none-any.whl", hash = "sha256:52a3cb5ce78049fde5c9926898b90e02bc04e3d23adbc991842e9ff574df9ea1", size = 4593, upload-time = "2025-05-30T17:47:10.456Z" },
|
| 1550 |
]
|
| 1551 |
|
| 1552 |
+
[[package]]
|
| 1553 |
+
name = "llama-index-multi-modal-llms-huggingface"
|
| 1554 |
+
version = "0.4.2"
|
| 1555 |
+
source = { registry = "https://pypi.org/simple" }
|
| 1556 |
+
dependencies = [
|
| 1557 |
+
{ name = "llama-index-core" },
|
| 1558 |
+
{ name = "pillow" },
|
| 1559 |
+
{ name = "qwen-vl-utils" },
|
| 1560 |
+
{ name = "torchvision" },
|
| 1561 |
+
{ name = "transformers", extra = ["torch"] },
|
| 1562 |
+
]
|
| 1563 |
+
sdist = { url = "https://files.pythonhosted.org/packages/02/5d/6ebbd19b4fcbcafe631f93e40affdac6d830ac5c472dcd2caabf26d88053/llama_index_multi_modal_llms_huggingface-0.4.2.tar.gz", hash = "sha256:7c58a6a3daf1f191e4ef80200f04e88674232aaca52fb7656657dce3ee043fbc", size = 8194, upload-time = "2025-02-27T03:31:16.794Z" }
|
| 1564 |
+
wheels = [
|
| 1565 |
+
{ url = "https://files.pythonhosted.org/packages/bb/26/7ed7412a3612d9b504f9cf789b120f80f8675718f86a3bb25e3332f21d4e/llama_index_multi_modal_llms_huggingface-0.4.2-py3-none-any.whl", hash = "sha256:d27cba95e4621b272ef245f41059c2579aafa586a6700a6cfa2eff024734467d", size = 7580, upload-time = "2025-02-27T03:31:15.801Z" },
|
| 1566 |
+
]
|
| 1567 |
+
|
| 1568 |
+
[[package]]
|
| 1569 |
+
name = "llama-index-multi-modal-llms-mistralai"
|
| 1570 |
+
version = "0.4.0"
|
| 1571 |
+
source = { registry = "https://pypi.org/simple" }
|
| 1572 |
+
dependencies = [
|
| 1573 |
+
{ name = "llama-index-llms-mistralai" },
|
| 1574 |
+
]
|
| 1575 |
+
sdist = { url = "https://files.pythonhosted.org/packages/b6/cd/f5490f0ac4e0081e4d82e4dd5d8a82e5d48453f8804cecd57751643e7536/llama_index_multi_modal_llms_mistralai-0.4.0.tar.gz", hash = "sha256:eb3b712e343e80abe8f4b8f0a3d9673b24ccc41848bdb2f0399a7a24f2e95632", size = 2799, upload-time = "2025-03-03T21:02:24.127Z" }
|
| 1576 |
+
wheels = [
|
| 1577 |
+
{ url = "https://files.pythonhosted.org/packages/08/3f/25a59bd8690cd29f835d71709a02e4564c3563e69a7fddbe13bc78f9a512/llama_index_multi_modal_llms_mistralai-0.4.0-py3-none-any.whl", hash = "sha256:8dd8d65aea441258e7d7f13208cbf20e4e536761e9d1333997fe56d7f4e3efb6", size = 3335, upload-time = "2025-03-03T21:02:22.655Z" },
|
| 1578 |
+
]
|
| 1579 |
+
|
| 1580 |
+
[[package]]
|
| 1581 |
+
name = "llama-index-multi-modal-llms-nebius"
|
| 1582 |
+
version = "0.4.0"
|
| 1583 |
+
source = { registry = "https://pypi.org/simple" }
|
| 1584 |
+
dependencies = [
|
| 1585 |
+
{ name = "llama-index-core" },
|
| 1586 |
+
{ name = "llama-index-multi-modal-llms-openai" },
|
| 1587 |
+
]
|
| 1588 |
+
sdist = { url = "https://files.pythonhosted.org/packages/c1/95/14e21285393d3b95969b6b942edbe5416d24ea2c344774d9488b83430136/llama_index_multi_modal_llms_nebius-0.4.0.tar.gz", hash = "sha256:371cb29e82e4002d3e61173ee0b2223110cf45ad249ed27df11fcabc2c1f5d6b", size = 3086, upload-time = "2025-02-27T22:40:10.933Z" }
|
| 1589 |
+
wheels = [
|
| 1590 |
+
{ url = "https://files.pythonhosted.org/packages/6b/a4/81ea33bd0de4d2d279f75bdcdef38052f0e9a1a1cb87c5696d0b18b13d42/llama_index_multi_modal_llms_nebius-0.4.0-py3-none-any.whl", hash = "sha256:6c6b8decf4aa2ca094b03c2743cd65704d3e0f7eaee15103b5aa02de950c2eaa", size = 3633, upload-time = "2025-02-27T22:40:09.289Z" },
|
| 1591 |
+
]
|
| 1592 |
+
|
| 1593 |
[[package]]
|
| 1594 |
name = "llama-index-multi-modal-llms-openai"
|
| 1595 |
version = "0.5.1"
|
|
|
|
| 1849 |
{ url = "https://files.pythonhosted.org/packages/b3/38/89ba8ad64ae25be8de66a6d463314cf1eb366222074cfda9ee839c56a4b4/mdurl-0.1.2-py3-none-any.whl", hash = "sha256:84008a41e51615a49fc9966191ff91509e3c40b939176e643fd50a5c2196b8f8", size = 9979, upload-time = "2022-08-14T12:40:09.779Z" },
|
| 1850 |
]
|
| 1851 |
|
| 1852 |
+
[[package]]
|
| 1853 |
+
name = "mistralai"
|
| 1854 |
+
version = "1.8.2"
|
| 1855 |
+
source = { registry = "https://pypi.org/simple" }
|
| 1856 |
+
dependencies = [
|
| 1857 |
+
{ name = "eval-type-backport" },
|
| 1858 |
+
{ name = "httpx" },
|
| 1859 |
+
{ name = "pydantic" },
|
| 1860 |
+
{ name = "python-dateutil" },
|
| 1861 |
+
{ name = "typing-inspection" },
|
| 1862 |
+
]
|
| 1863 |
+
sdist = { url = "https://files.pythonhosted.org/packages/34/38/6bc1ee13d73f2ca80e8dd172aee408d5699fd89eb00b5a0f3b0a96632a40/mistralai-1.8.2.tar.gz", hash = "sha256:3a2fdf35498dd71cca3ee065adf8d75331f3bc6bbfbc7ffdd20dc82ae01d9d6d", size = 176102, upload-time = "2025-06-10T17:31:11.935Z" }
|
| 1864 |
+
wheels = [
|
| 1865 |
+
{ url = "https://files.pythonhosted.org/packages/d0/85/088e4ec778879d8d3d4aa83549444c39f639d060422a6ef725029e8cfc9d/mistralai-1.8.2-py3-none-any.whl", hash = "sha256:d7f2c3c9d02475c1f1911cff2458bd01e91bbe8e15bfb57cb7ac397a9440ef8e", size = 374066, upload-time = "2025-06-10T17:31:10.461Z" },
|
| 1866 |
+
]
|
| 1867 |
+
|
| 1868 |
[[package]]
|
| 1869 |
name = "more-itertools"
|
| 1870 |
version = "10.7.0"
|
|
|
|
| 2050 |
|
| 2051 |
[[package]]
|
| 2052 |
name = "nvidia-cublas-cu12"
|
| 2053 |
+
version = "12.1.3.1"
|
| 2054 |
source = { registry = "https://pypi.org/simple" }
|
| 2055 |
wheels = [
|
| 2056 |
+
{ url = "https://files.pythonhosted.org/packages/37/6d/121efd7382d5b0284239f4ab1fc1590d86d34ed4a4a2fdb13b30ca8e5740/nvidia_cublas_cu12-12.1.3.1-py3-none-manylinux1_x86_64.whl", hash = "sha256:ee53ccca76a6fc08fb9701aa95b6ceb242cdaab118c3bb152af4e579af792728", size = 410594774, upload-time = "2023-04-19T15:50:03.519Z" },
|
| 2057 |
]
|
| 2058 |
|
| 2059 |
[[package]]
|
| 2060 |
name = "nvidia-cuda-cupti-cu12"
|
| 2061 |
+
version = "12.1.105"
|
| 2062 |
source = { registry = "https://pypi.org/simple" }
|
| 2063 |
wheels = [
|
| 2064 |
+
{ url = "https://files.pythonhosted.org/packages/7e/00/6b218edd739ecfc60524e585ba8e6b00554dd908de2c9c66c1af3e44e18d/nvidia_cuda_cupti_cu12-12.1.105-py3-none-manylinux1_x86_64.whl", hash = "sha256:e54fde3983165c624cb79254ae9818a456eb6e87a7fd4d56a2352c24ee542d7e", size = 14109015, upload-time = "2023-04-19T15:47:32.502Z" },
|
|
|
|
| 2065 |
]
|
| 2066 |
|
| 2067 |
[[package]]
|
| 2068 |
name = "nvidia-cuda-nvrtc-cu12"
|
| 2069 |
+
version = "12.1.105"
|
| 2070 |
source = { registry = "https://pypi.org/simple" }
|
| 2071 |
wheels = [
|
| 2072 |
+
{ url = "https://files.pythonhosted.org/packages/b6/9f/c64c03f49d6fbc56196664d05dba14e3a561038a81a638eeb47f4d4cfd48/nvidia_cuda_nvrtc_cu12-12.1.105-py3-none-manylinux1_x86_64.whl", hash = "sha256:339b385f50c309763ca65456ec75e17bbefcbbf2893f462cb8b90584cd27a1c2", size = 23671734, upload-time = "2023-04-19T15:48:32.42Z" },
|
| 2073 |
]
|
| 2074 |
|
| 2075 |
[[package]]
|
| 2076 |
name = "nvidia-cuda-runtime-cu12"
|
| 2077 |
+
version = "12.1.105"
|
| 2078 |
source = { registry = "https://pypi.org/simple" }
|
| 2079 |
wheels = [
|
| 2080 |
+
{ url = "https://files.pythonhosted.org/packages/eb/d5/c68b1d2cdfcc59e72e8a5949a37ddb22ae6cade80cd4a57a84d4c8b55472/nvidia_cuda_runtime_cu12-12.1.105-py3-none-manylinux1_x86_64.whl", hash = "sha256:6e258468ddf5796e25f1dc591a31029fa317d97a0a94ed93468fc86301d61e40", size = 823596, upload-time = "2023-04-19T15:47:22.471Z" },
|
|
|
|
| 2081 |
]
|
| 2082 |
|
| 2083 |
[[package]]
|
| 2084 |
name = "nvidia-cudnn-cu12"
|
| 2085 |
+
version = "9.1.0.70"
|
| 2086 |
source = { registry = "https://pypi.org/simple" }
|
| 2087 |
dependencies = [
|
| 2088 |
{ name = "nvidia-cublas-cu12" },
|
| 2089 |
]
|
| 2090 |
wheels = [
|
| 2091 |
+
{ url = "https://files.pythonhosted.org/packages/9f/fd/713452cd72343f682b1c7b9321e23829f00b842ceaedcda96e742ea0b0b3/nvidia_cudnn_cu12-9.1.0.70-py3-none-manylinux2014_x86_64.whl", hash = "sha256:165764f44ef8c61fcdfdfdbe769d687e06374059fbb388b6c89ecb0e28793a6f", size = 664752741, upload-time = "2024-04-22T15:24:15.253Z" },
|
| 2092 |
]
|
| 2093 |
|
| 2094 |
[[package]]
|
| 2095 |
name = "nvidia-cufft-cu12"
|
| 2096 |
+
version = "11.0.2.54"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2097 |
source = { registry = "https://pypi.org/simple" }
|
| 2098 |
wheels = [
|
| 2099 |
+
{ url = "https://files.pythonhosted.org/packages/86/94/eb540db023ce1d162e7bea9f8f5aa781d57c65aed513c33ee9a5123ead4d/nvidia_cufft_cu12-11.0.2.54-py3-none-manylinux1_x86_64.whl", hash = "sha256:794e3948a1aa71fd817c3775866943936774d1c14e7628c74f6f7417224cdf56", size = 121635161, upload-time = "2023-04-19T15:50:46Z" },
|
| 2100 |
]
|
| 2101 |
|
| 2102 |
[[package]]
|
| 2103 |
name = "nvidia-curand-cu12"
|
| 2104 |
+
version = "10.3.2.106"
|
| 2105 |
source = { registry = "https://pypi.org/simple" }
|
| 2106 |
wheels = [
|
| 2107 |
+
{ url = "https://files.pythonhosted.org/packages/44/31/4890b1c9abc496303412947fc7dcea3d14861720642b49e8ceed89636705/nvidia_curand_cu12-10.3.2.106-py3-none-manylinux1_x86_64.whl", hash = "sha256:9d264c5036dde4e64f1de8c50ae753237c12e0b1348738169cd0f8a536c0e1e0", size = 56467784, upload-time = "2023-04-19T15:51:04.804Z" },
|
|
|
|
| 2108 |
]
|
| 2109 |
|
| 2110 |
[[package]]
|
| 2111 |
name = "nvidia-cusolver-cu12"
|
| 2112 |
+
version = "11.4.5.107"
|
| 2113 |
source = { registry = "https://pypi.org/simple" }
|
| 2114 |
dependencies = [
|
| 2115 |
{ name = "nvidia-cublas-cu12" },
|
|
|
|
| 2117 |
{ name = "nvidia-nvjitlink-cu12" },
|
| 2118 |
]
|
| 2119 |
wheels = [
|
| 2120 |
+
{ url = "https://files.pythonhosted.org/packages/bc/1d/8de1e5c67099015c834315e333911273a8c6aaba78923dd1d1e25fc5f217/nvidia_cusolver_cu12-11.4.5.107-py3-none-manylinux1_x86_64.whl", hash = "sha256:8a7ec542f0412294b15072fa7dab71d31334014a69f953004ea7a118206fe0dd", size = 124161928, upload-time = "2023-04-19T15:51:25.781Z" },
|
|
|
|
| 2121 |
]
|
| 2122 |
|
| 2123 |
[[package]]
|
| 2124 |
name = "nvidia-cusparse-cu12"
|
| 2125 |
+
version = "12.1.0.106"
|
| 2126 |
source = { registry = "https://pypi.org/simple" }
|
| 2127 |
dependencies = [
|
| 2128 |
{ name = "nvidia-nvjitlink-cu12" },
|
| 2129 |
]
|
| 2130 |
wheels = [
|
| 2131 |
+
{ url = "https://files.pythonhosted.org/packages/65/5b/cfaeebf25cd9fdec14338ccb16f6b2c4c7fa9163aefcf057d86b9cc248bb/nvidia_cusparse_cu12-12.1.0.106-py3-none-manylinux1_x86_64.whl", hash = "sha256:f3b50f42cf363f86ab21f720998517a659a48131e8d538dc02f8768237bd884c", size = 195958278, upload-time = "2023-04-19T15:51:49.939Z" },
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2132 |
]
|
| 2133 |
|
| 2134 |
[[package]]
|
| 2135 |
name = "nvidia-nccl-cu12"
|
| 2136 |
+
version = "2.20.5"
|
| 2137 |
source = { registry = "https://pypi.org/simple" }
|
| 2138 |
wheels = [
|
| 2139 |
+
{ url = "https://files.pythonhosted.org/packages/4b/2a/0a131f572aa09f741c30ccd45a8e56316e8be8dfc7bc19bf0ab7cfef7b19/nvidia_nccl_cu12-2.20.5-py3-none-manylinux2014_x86_64.whl", hash = "sha256:057f6bf9685f75215d0c53bf3ac4a10b3e6578351de307abad9e18a99182af56", size = 176249402, upload-time = "2024-03-06T04:30:20.663Z" },
|
| 2140 |
]
|
| 2141 |
|
| 2142 |
[[package]]
|
|
|
|
| 2149 |
|
| 2150 |
[[package]]
|
| 2151 |
name = "nvidia-nvtx-cu12"
|
| 2152 |
+
version = "12.1.105"
|
| 2153 |
source = { registry = "https://pypi.org/simple" }
|
| 2154 |
wheels = [
|
| 2155 |
+
{ url = "https://files.pythonhosted.org/packages/da/d3/8057f0587683ed2fcd4dbfbdfdfa807b9160b809976099d36b8f60d08f03/nvidia_nvtx_cu12-12.1.105-py3-none-manylinux1_x86_64.whl", hash = "sha256:dc21cf308ca5691e7c04d962e213f8a4aa9bbfa23d95412f452254c2caeb09e5", size = 99138, upload-time = "2023-04-19T15:48:43.556Z" },
|
|
|
|
| 2156 |
]
|
| 2157 |
|
| 2158 |
[[package]]
|
|
|
|
| 2185 |
{ name = "tiktoken" },
|
| 2186 |
{ name = "torch" },
|
| 2187 |
{ name = "tqdm" },
|
| 2188 |
+
{ name = "triton", version = "3.0.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux') or (python_full_version < '3.13' and sys_platform == 'linux2')" },
|
| 2189 |
+
{ name = "triton", version = "3.3.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux') or (python_full_version >= '3.13' and sys_platform == 'linux2')" },
|
| 2190 |
]
|
| 2191 |
sdist = { url = "https://files.pythonhosted.org/packages/35/8e/d36f8880bcf18ec026a55807d02fe4c7357da9f25aebd92f85178000c0dc/openai_whisper-20250625.tar.gz", hash = "sha256:37a91a3921809d9f44748ffc73c0a55c9f366c85a3ef5c2ae0cc09540432eb96", size = 803191, upload-time = "2025-06-26T01:06:13.34Z" }
|
| 2192 |
|
|
|
|
| 2475 |
|
| 2476 |
[[package]]
|
| 2477 |
name = "pillow"
|
| 2478 |
+
version = "10.4.0"
|
| 2479 |
+
source = { registry = "https://pypi.org/simple" }
|
| 2480 |
+
sdist = { url = "https://files.pythonhosted.org/packages/cd/74/ad3d526f3bf7b6d3f408b73fde271ec69dfac8b81341a318ce825f2b3812/pillow-10.4.0.tar.gz", hash = "sha256:166c1cd4d24309b30d61f79f4a9114b7b2313d7450912277855ff5dfd7cd4a06", size = 46555059, upload-time = "2024-07-01T09:48:43.583Z" }
|
| 2481 |
+
wheels = [
|
| 2482 |
+
{ url = "https://files.pythonhosted.org/packages/05/cb/0353013dc30c02a8be34eb91d25e4e4cf594b59e5a55ea1128fde1e5f8ea/pillow-10.4.0-cp312-cp312-macosx_10_10_x86_64.whl", hash = "sha256:673655af3eadf4df6b5457033f086e90299fdd7a47983a13827acf7459c15d94", size = 3509350, upload-time = "2024-07-01T09:46:17.177Z" },
|
| 2483 |
+
{ url = "https://files.pythonhosted.org/packages/e7/cf/5c558a0f247e0bf9cec92bff9b46ae6474dd736f6d906315e60e4075f737/pillow-10.4.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:866b6942a92f56300012f5fbac71f2d610312ee65e22f1aa2609e491284e5597", size = 3374980, upload-time = "2024-07-01T09:46:19.169Z" },
|
| 2484 |
+
{ url = "https://files.pythonhosted.org/packages/84/48/6e394b86369a4eb68b8a1382c78dc092245af517385c086c5094e3b34428/pillow-10.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:29dbdc4207642ea6aad70fbde1a9338753d33fb23ed6956e706936706f52dd80", size = 4343799, upload-time = "2024-07-01T09:46:21.883Z" },
|
| 2485 |
+
{ url = "https://files.pythonhosted.org/packages/3b/f3/a8c6c11fa84b59b9df0cd5694492da8c039a24cd159f0f6918690105c3be/pillow-10.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bf2342ac639c4cf38799a44950bbc2dfcb685f052b9e262f446482afaf4bffca", size = 4459973, upload-time = "2024-07-01T09:46:24.321Z" },
|
| 2486 |
+
{ url = "https://files.pythonhosted.org/packages/7d/1b/c14b4197b80150fb64453585247e6fb2e1d93761fa0fa9cf63b102fde822/pillow-10.4.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:f5b92f4d70791b4a67157321c4e8225d60b119c5cc9aee8ecf153aace4aad4ef", size = 4370054, upload-time = "2024-07-01T09:46:26.825Z" },
|
| 2487 |
+
{ url = "https://files.pythonhosted.org/packages/55/77/40daddf677897a923d5d33329acd52a2144d54a9644f2a5422c028c6bf2d/pillow-10.4.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:86dcb5a1eb778d8b25659d5e4341269e8590ad6b4e8b44d9f4b07f8d136c414a", size = 4539484, upload-time = "2024-07-01T09:46:29.355Z" },
|
| 2488 |
+
{ url = "https://files.pythonhosted.org/packages/40/54/90de3e4256b1207300fb2b1d7168dd912a2fb4b2401e439ba23c2b2cabde/pillow-10.4.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:780c072c2e11c9b2c7ca37f9a2ee8ba66f44367ac3e5c7832afcfe5104fd6d1b", size = 4477375, upload-time = "2024-07-01T09:46:31.756Z" },
|
| 2489 |
+
{ url = "https://files.pythonhosted.org/packages/13/24/1bfba52f44193860918ff7c93d03d95e3f8748ca1de3ceaf11157a14cf16/pillow-10.4.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:37fb69d905be665f68f28a8bba3c6d3223c8efe1edf14cc4cfa06c241f8c81d9", size = 4608773, upload-time = "2024-07-01T09:46:33.73Z" },
|
| 2490 |
+
{ url = "https://files.pythonhosted.org/packages/55/04/5e6de6e6120451ec0c24516c41dbaf80cce1b6451f96561235ef2429da2e/pillow-10.4.0-cp312-cp312-win32.whl", hash = "sha256:7dfecdbad5c301d7b5bde160150b4db4c659cee2b69589705b6f8a0c509d9f42", size = 2235690, upload-time = "2024-07-01T09:46:36.587Z" },
|
| 2491 |
+
{ url = "https://files.pythonhosted.org/packages/74/0a/d4ce3c44bca8635bd29a2eab5aa181b654a734a29b263ca8efe013beea98/pillow-10.4.0-cp312-cp312-win_amd64.whl", hash = "sha256:1d846aea995ad352d4bdcc847535bd56e0fd88d36829d2c90be880ef1ee4668a", size = 2554951, upload-time = "2024-07-01T09:46:38.777Z" },
|
| 2492 |
+
{ url = "https://files.pythonhosted.org/packages/b5/ca/184349ee40f2e92439be9b3502ae6cfc43ac4b50bc4fc6b3de7957563894/pillow-10.4.0-cp312-cp312-win_arm64.whl", hash = "sha256:e553cad5179a66ba15bb18b353a19020e73a7921296a7979c4a2b7f6a5cd57f9", size = 2243427, upload-time = "2024-07-01T09:46:43.15Z" },
|
| 2493 |
+
{ url = "https://files.pythonhosted.org/packages/c3/00/706cebe7c2c12a6318aabe5d354836f54adff7156fd9e1bd6c89f4ba0e98/pillow-10.4.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:8bc1a764ed8c957a2e9cacf97c8b2b053b70307cf2996aafd70e91a082e70df3", size = 3525685, upload-time = "2024-07-01T09:46:45.194Z" },
|
| 2494 |
+
{ url = "https://files.pythonhosted.org/packages/cf/76/f658cbfa49405e5ecbfb9ba42d07074ad9792031267e782d409fd8fe7c69/pillow-10.4.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:6209bb41dc692ddfee4942517c19ee81b86c864b626dbfca272ec0f7cff5d9fb", size = 3374883, upload-time = "2024-07-01T09:46:47.331Z" },
|
| 2495 |
+
{ url = "https://files.pythonhosted.org/packages/46/2b/99c28c4379a85e65378211971c0b430d9c7234b1ec4d59b2668f6299e011/pillow-10.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bee197b30783295d2eb680b311af15a20a8b24024a19c3a26431ff83eb8d1f70", size = 4339837, upload-time = "2024-07-01T09:46:49.647Z" },
|
| 2496 |
+
{ url = "https://files.pythonhosted.org/packages/f1/74/b1ec314f624c0c43711fdf0d8076f82d9d802afd58f1d62c2a86878e8615/pillow-10.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1ef61f5dd14c300786318482456481463b9d6b91ebe5ef12f405afbba77ed0be", size = 4455562, upload-time = "2024-07-01T09:46:51.811Z" },
|
| 2497 |
+
{ url = "https://files.pythonhosted.org/packages/4a/2a/4b04157cb7b9c74372fa867096a1607e6fedad93a44deeff553ccd307868/pillow-10.4.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:297e388da6e248c98bc4a02e018966af0c5f92dfacf5a5ca22fa01cb3179bca0", size = 4366761, upload-time = "2024-07-01T09:46:53.961Z" },
|
| 2498 |
+
{ url = "https://files.pythonhosted.org/packages/ac/7b/8f1d815c1a6a268fe90481232c98dd0e5fa8c75e341a75f060037bd5ceae/pillow-10.4.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:e4db64794ccdf6cb83a59d73405f63adbe2a1887012e308828596100a0b2f6cc", size = 4536767, upload-time = "2024-07-01T09:46:56.664Z" },
|
| 2499 |
+
{ url = "https://files.pythonhosted.org/packages/e5/77/05fa64d1f45d12c22c314e7b97398ffb28ef2813a485465017b7978b3ce7/pillow-10.4.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:bd2880a07482090a3bcb01f4265f1936a903d70bc740bfcb1fd4e8a2ffe5cf5a", size = 4477989, upload-time = "2024-07-01T09:46:58.977Z" },
|
| 2500 |
+
{ url = "https://files.pythonhosted.org/packages/12/63/b0397cfc2caae05c3fb2f4ed1b4fc4fc878f0243510a7a6034ca59726494/pillow-10.4.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:4b35b21b819ac1dbd1233317adeecd63495f6babf21b7b2512d244ff6c6ce309", size = 4610255, upload-time = "2024-07-01T09:47:01.189Z" },
|
| 2501 |
+
{ url = "https://files.pythonhosted.org/packages/7b/f9/cfaa5082ca9bc4a6de66ffe1c12c2d90bf09c309a5f52b27759a596900e7/pillow-10.4.0-cp313-cp313-win32.whl", hash = "sha256:551d3fd6e9dc15e4c1eb6fc4ba2b39c0c7933fa113b220057a34f4bb3268a060", size = 2235603, upload-time = "2024-07-01T09:47:03.918Z" },
|
| 2502 |
+
{ url = "https://files.pythonhosted.org/packages/01/6a/30ff0eef6e0c0e71e55ded56a38d4859bf9d3634a94a88743897b5f96936/pillow-10.4.0-cp313-cp313-win_amd64.whl", hash = "sha256:030abdbe43ee02e0de642aee345efa443740aa4d828bfe8e2eb11922ea6a21ea", size = 2554972, upload-time = "2024-07-01T09:47:06.152Z" },
|
| 2503 |
+
{ url = "https://files.pythonhosted.org/packages/48/2c/2e0a52890f269435eee38b21c8218e102c621fe8d8df8b9dd06fabf879ba/pillow-10.4.0-cp313-cp313-win_arm64.whl", hash = "sha256:5b001114dd152cfd6b23befeb28d7aee43553e2402c9f159807bf55f33af8a8d", size = 2243375, upload-time = "2024-07-01T09:47:09.065Z" },
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2504 |
]
|
| 2505 |
|
| 2506 |
[[package]]
|
|
|
|
| 2865 |
{ url = "https://files.pythonhosted.org/packages/fa/de/02b54f42487e3d3c6efb3f89428677074ca7bf43aae402517bc7cca949f3/PyYAML-6.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:8388ee1976c416731879ac16da0aff3f63b286ffdd57cdeb95f3f2e085687563", size = 156446, upload-time = "2024-08-06T20:33:04.33Z" },
|
| 2866 |
]
|
| 2867 |
|
| 2868 |
+
[[package]]
|
| 2869 |
+
name = "qwen-vl-utils"
|
| 2870 |
+
version = "0.0.11"
|
| 2871 |
+
source = { registry = "https://pypi.org/simple" }
|
| 2872 |
+
dependencies = [
|
| 2873 |
+
{ name = "av" },
|
| 2874 |
+
{ name = "packaging" },
|
| 2875 |
+
{ name = "pillow" },
|
| 2876 |
+
{ name = "requests" },
|
| 2877 |
+
]
|
| 2878 |
+
sdist = { url = "https://files.pythonhosted.org/packages/42/9f/1229a40ebd49f689a0252144126f3865f31bb4151e942cf781a2936f0c4d/qwen_vl_utils-0.0.11.tar.gz", hash = "sha256:083ba1e5cfa5002165b1e3bddd4d6d26d1d6d34473884033ef12ae3fe8496cd5", size = 7924, upload-time = "2025-04-21T10:38:47.461Z" }
|
| 2879 |
+
wheels = [
|
| 2880 |
+
{ url = "https://files.pythonhosted.org/packages/0a/c2/ad7f93e1eea4ea0aefd1cc6fbe7a7095fd2f03a4d8fe2c3707e612b0866e/qwen_vl_utils-0.0.11-py3-none-any.whl", hash = "sha256:7fd5287ac04d6c1f01b93bf053b0be236a35149e414c9e864e3cc5bf2fe8cb7b", size = 7584, upload-time = "2025-04-21T10:38:45.595Z" },
|
| 2881 |
+
]
|
| 2882 |
+
|
| 2883 |
[[package]]
|
| 2884 |
name = "regex"
|
| 2885 |
version = "2024.11.6"
|
|
|
|
| 3345 |
|
| 3346 |
[[package]]
|
| 3347 |
name = "torch"
|
| 3348 |
+
version = "2.4.1"
|
| 3349 |
source = { registry = "https://pypi.org/simple" }
|
| 3350 |
dependencies = [
|
| 3351 |
{ name = "filelock" },
|
|
|
|
| 3358 |
{ name = "nvidia-cuda-runtime-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" },
|
| 3359 |
{ name = "nvidia-cudnn-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" },
|
| 3360 |
{ name = "nvidia-cufft-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" },
|
|
|
|
| 3361 |
{ name = "nvidia-curand-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" },
|
| 3362 |
{ name = "nvidia-cusolver-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" },
|
| 3363 |
{ name = "nvidia-cusparse-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" },
|
|
|
|
| 3364 |
{ name = "nvidia-nccl-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" },
|
|
|
|
| 3365 |
{ name = "nvidia-nvtx-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" },
|
| 3366 |
{ name = "setuptools" },
|
| 3367 |
{ name = "sympy" },
|
| 3368 |
+
{ name = "triton", version = "3.0.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux'" },
|
| 3369 |
{ name = "typing-extensions" },
|
| 3370 |
]
|
| 3371 |
wheels = [
|
| 3372 |
+
{ url = "https://files.pythonhosted.org/packages/cc/df/5204a13a7a973c23c7ade615bafb1a3112b5d0ec258d8390f078fa4ab0f7/torch-2.4.1-cp312-cp312-manylinux1_x86_64.whl", hash = "sha256:fdc4fe11db3eb93c1115d3e973a27ac7c1a8318af8934ffa36b0370efe28e042", size = 797019590, upload-time = "2024-09-04T19:10:42.948Z" },
|
| 3373 |
+
{ url = "https://files.pythonhosted.org/packages/4f/16/d23a689e5ef8001ed2ace1a3a59f2fda842889b0c3f3877799089925282a/torch-2.4.1-cp312-cp312-manylinux2014_aarch64.whl", hash = "sha256:18835374f599207a9e82c262153c20ddf42ea49bc76b6eadad8e5f49729f6e4d", size = 89613802, upload-time = "2024-09-04T19:13:19.273Z" },
|
| 3374 |
+
{ url = "https://files.pythonhosted.org/packages/a8/e0/ca8354dfb8d834a76da51b06e8248b70fc182bc163540507919124974bdf/torch-2.4.1-cp312-cp312-win_amd64.whl", hash = "sha256:ebea70ff30544fc021d441ce6b219a88b67524f01170b1c538d7d3ebb5e7f56c", size = 199387694, upload-time = "2024-09-04T19:13:06.167Z" },
|
| 3375 |
+
{ url = "https://files.pythonhosted.org/packages/ac/30/8b6f77ea4ce84f015ee024b8dfef0dac289396254e8bfd493906d4cbb848/torch-2.4.1-cp312-none-macosx_11_0_arm64.whl", hash = "sha256:72b484d5b6cec1a735bf3fa5a1c4883d01748698c5e9cfdbeb4ffab7c7987e0d", size = 62123443, upload-time = "2024-09-04T19:12:59.242Z" },
|
| 3376 |
+
]
|
| 3377 |
+
|
| 3378 |
+
[[package]]
|
| 3379 |
+
name = "torchvision"
|
| 3380 |
+
version = "0.19.1"
|
| 3381 |
+
source = { registry = "https://pypi.org/simple" }
|
| 3382 |
+
dependencies = [
|
| 3383 |
+
{ name = "numpy" },
|
| 3384 |
+
{ name = "pillow" },
|
| 3385 |
+
{ name = "torch" },
|
| 3386 |
+
]
|
| 3387 |
+
wheels = [
|
| 3388 |
+
{ url = "https://files.pythonhosted.org/packages/a4/d0/b1029ab95d9219cac2dfc0d835e9ab4cebb01f5cb6b48e736778020fb995/torchvision-0.19.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:27ece277ff0f6cdc7fed0627279c632dcb2e58187da771eca24b0fbcf3f8590d", size = 1660230, upload-time = "2024-09-04T19:15:10.799Z" },
|
| 3389 |
+
{ url = "https://files.pythonhosted.org/packages/8b/34/fdd2d9e01228a069b28473a7c020bf1812c8ecab8565666feb247659ed30/torchvision-0.19.1-cp312-cp312-manylinux1_x86_64.whl", hash = "sha256:c659ff92a61f188a1a7baef2850f3c0b6c85685447453c03d0e645ba8f1dcc1c", size = 7026404, upload-time = "2024-09-04T19:15:06.316Z" },
|
| 3390 |
+
{ url = "https://files.pythonhosted.org/packages/da/b2/9da42d67dfc30d9e3b161f7a37f6c7eca86a80e6caef4a9aa11727faa4f5/torchvision-0.19.1-cp312-cp312-manylinux2014_aarch64.whl", hash = "sha256:c07bf43c2a145d792ecd9d0503d6c73577147ece508d45600d8aac77e4cdfcf9", size = 14072022, upload-time = "2024-09-04T19:14:59.312Z" },
|
| 3391 |
+
{ url = "https://files.pythonhosted.org/packages/6b/b2/fd577e1622b43cdeb74782a60cea4909f88f471813c215ea7b4e7ea84a74/torchvision-0.19.1-cp312-cp312-win_amd64.whl", hash = "sha256:b4283d283675556bb0eae31d29996f53861b17cbdcdf3509e6bc050414ac9289", size = 1288328, upload-time = "2024-09-04T19:15:04.278Z" },
|
| 3392 |
]
|
| 3393 |
|
| 3394 |
[[package]]
|
|
|
|
| 3433 |
{ url = "https://files.pythonhosted.org/packages/96/f2/25b27b396af03d5b64e61976b14f7209e2939e9e806c10749b6d277c273e/transformers-4.52.4-py3-none-any.whl", hash = "sha256:203f5c19416d5877e36e88633943761719538a25d9775977a24fe77a1e5adfc7", size = 10460375, upload-time = "2025-05-30T09:17:14.477Z" },
|
| 3434 |
]
|
| 3435 |
|
| 3436 |
+
[package.optional-dependencies]
|
| 3437 |
+
torch = [
|
| 3438 |
+
{ name = "accelerate" },
|
| 3439 |
+
{ name = "torch" },
|
| 3440 |
+
]
|
| 3441 |
+
|
| 3442 |
+
[[package]]
|
| 3443 |
+
name = "triton"
|
| 3444 |
+
version = "3.0.0"
|
| 3445 |
+
source = { registry = "https://pypi.org/simple" }
|
| 3446 |
+
resolution-markers = [
|
| 3447 |
+
"python_full_version >= '3.12.4' and python_full_version < '3.13'",
|
| 3448 |
+
"python_full_version < '3.12.4'",
|
| 3449 |
+
]
|
| 3450 |
+
dependencies = [
|
| 3451 |
+
{ name = "filelock", marker = "python_full_version < '3.13'" },
|
| 3452 |
+
]
|
| 3453 |
+
wheels = [
|
| 3454 |
+
{ url = "https://files.pythonhosted.org/packages/fe/7b/7757205dee3628f75e7991021d15cd1bd0c9b044ca9affe99b50879fc0e1/triton-3.0.0-1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:34e509deb77f1c067d8640725ef00c5cbfcb2052a1a3cb6a6d343841f92624eb", size = 209464695, upload-time = "2024-07-19T20:57:22.532Z" },
|
| 3455 |
+
]
|
| 3456 |
+
|
| 3457 |
[[package]]
|
| 3458 |
name = "triton"
|
| 3459 |
version = "3.3.1"
|
| 3460 |
source = { registry = "https://pypi.org/simple" }
|
| 3461 |
+
resolution-markers = [
|
| 3462 |
+
"python_full_version >= '3.13'",
|
| 3463 |
+
]
|
| 3464 |
dependencies = [
|
| 3465 |
+
{ name = "setuptools", marker = "python_full_version >= '3.13'" },
|
| 3466 |
]
|
| 3467 |
wheels = [
|
| 3468 |
{ url = "https://files.pythonhosted.org/packages/24/5f/950fb373bf9c01ad4eb5a8cd5eaf32cdf9e238c02f9293557a2129b9c4ac/triton-3.3.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9999e83aba21e1a78c1f36f21bce621b77bcaa530277a50484a7cb4a822f6e43", size = 155669138, upload-time = "2025-05-29T23:39:51.771Z" },
|