Spaces:
				
			
			
	
			
			
		Running
		
			on 
			
			Zero
	
	
	
			
			
	
	
	
	
		
		
		Running
		
			on 
			
			Zero
	Update
Browse files- .pre-commit-config.yaml +4 -22
- .vscode/settings.json +1 -5
- README.md +1 -1
- pyproject.toml +4 -4
- requirements.txt +12 -12
- uv.lock +145 -150
    	
        .pre-commit-config.yaml
    CHANGED
    
    | @@ -14,38 +14,20 @@ repos: | |
| 14 | 
             
                  - id: requirements-txt-fixer
         | 
| 15 | 
             
                  - id: trailing-whitespace
         | 
| 16 | 
             
              - repo: https://github.com/astral-sh/ruff-pre-commit
         | 
| 17 | 
            -
                rev: v0.8. | 
| 18 | 
             
                hooks:
         | 
| 19 | 
             
                  - id: ruff
         | 
| 20 | 
             
                    args: ["--fix"]
         | 
| 21 | 
             
                  - id: ruff-format
         | 
| 22 | 
            -
                    args: ["--line-length", "119"]
         | 
| 23 | 
             
              - repo: https://github.com/pre-commit/mirrors-mypy
         | 
| 24 | 
            -
                rev: v1.14. | 
| 25 | 
             
                hooks:
         | 
| 26 | 
             
                  - id: mypy
         | 
| 27 | 
             
                    args: ["--ignore-missing-imports"]
         | 
| 28 | 
             
                    additional_dependencies:
         | 
| 29 | 
             
                      [
         | 
| 30 | 
             
                        "types-python-slugify",
         | 
| 31 | 
            -
                        "types-requests",
         | 
| 32 | 
            -
                        "types-PyYAML",
         | 
| 33 | 
             
                        "types-pytz",
         | 
|  | |
|  | |
| 34 | 
             
                      ]
         | 
| 35 | 
            -
              - repo: https://github.com/kynan/nbstripout
         | 
| 36 | 
            -
                rev: 0.8.1
         | 
| 37 | 
            -
                hooks:
         | 
| 38 | 
            -
                  - id: nbstripout
         | 
| 39 | 
            -
                    args:
         | 
| 40 | 
            -
                      [
         | 
| 41 | 
            -
                        "--extra-keys",
         | 
| 42 | 
            -
                        "metadata.interpreter metadata.kernelspec cell.metadata.pycharm",
         | 
| 43 | 
            -
                      ]
         | 
| 44 | 
            -
              - repo: https://github.com/nbQA-dev/nbQA
         | 
| 45 | 
            -
                rev: 1.9.1
         | 
| 46 | 
            -
                hooks:
         | 
| 47 | 
            -
                  - id: nbqa-black
         | 
| 48 | 
            -
                  - id: nbqa-pyupgrade
         | 
| 49 | 
            -
                    args: ["--py37-plus"]
         | 
| 50 | 
            -
                  - id: nbqa-isort
         | 
| 51 | 
            -
                    args: ["--float-to-top"]
         | 
|  | |
| 14 | 
             
                  - id: requirements-txt-fixer
         | 
| 15 | 
             
                  - id: trailing-whitespace
         | 
| 16 | 
             
              - repo: https://github.com/astral-sh/ruff-pre-commit
         | 
| 17 | 
            +
                rev: v0.8.6
         | 
| 18 | 
             
                hooks:
         | 
| 19 | 
             
                  - id: ruff
         | 
| 20 | 
             
                    args: ["--fix"]
         | 
| 21 | 
             
                  - id: ruff-format
         | 
|  | |
| 22 | 
             
              - repo: https://github.com/pre-commit/mirrors-mypy
         | 
| 23 | 
            +
                rev: v1.14.1
         | 
| 24 | 
             
                hooks:
         | 
| 25 | 
             
                  - id: mypy
         | 
| 26 | 
             
                    args: ["--ignore-missing-imports"]
         | 
| 27 | 
             
                    additional_dependencies:
         | 
| 28 | 
             
                      [
         | 
| 29 | 
             
                        "types-python-slugify",
         | 
|  | |
|  | |
| 30 | 
             
                        "types-pytz",
         | 
| 31 | 
            +
                        "types-PyYAML",
         | 
| 32 | 
            +
                        "types-requests",
         | 
| 33 | 
             
                      ]
         | 
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | 
    	
        .vscode/settings.json
    CHANGED
    
    | @@ -13,9 +13,5 @@ | |
| 13 | 
             
                    "files.insertFinalNewline": false
         | 
| 14 | 
             
                },
         | 
| 15 | 
             
                "notebook.output.scrolling": true,
         | 
| 16 | 
            -
                "notebook. | 
| 17 | 
            -
                "notebook.formatOnSave.enabled": true,
         | 
| 18 | 
            -
                "notebook.codeActionsOnSave": {
         | 
| 19 | 
            -
                    "source.organizeImports": "explicit"
         | 
| 20 | 
            -
                }
         | 
| 21 | 
             
            }
         | 
|  | |
| 13 | 
             
                    "files.insertFinalNewline": false
         | 
| 14 | 
             
                },
         | 
| 15 | 
             
                "notebook.output.scrolling": true,
         | 
| 16 | 
            +
                "notebook.formatOnSave.enabled": true
         | 
|  | |
|  | |
|  | |
|  | |
| 17 | 
             
            }
         | 
    	
        README.md
    CHANGED
    
    | @@ -4,7 +4,7 @@ emoji: 😻 | |
| 4 | 
             
            colorFrom: indigo
         | 
| 5 | 
             
            colorTo: pink
         | 
| 6 | 
             
            sdk: gradio
         | 
| 7 | 
            -
            sdk_version: 5. | 
| 8 | 
             
            app_file: app.py
         | 
| 9 | 
             
            pinned: false
         | 
| 10 | 
             
            short_description: Chatbot
         | 
|  | |
| 4 | 
             
            colorFrom: indigo
         | 
| 5 | 
             
            colorTo: pink
         | 
| 6 | 
             
            sdk: gradio
         | 
| 7 | 
            +
            sdk_version: 5.12.0
         | 
| 8 | 
             
            app_file: app.py
         | 
| 9 | 
             
            pinned: false
         | 
| 10 | 
             
            short_description: Chatbot
         | 
    	
        pyproject.toml
    CHANGED
    
    | @@ -6,11 +6,11 @@ readme = "README.md" | |
| 6 | 
             
            requires-python = ">=3.10"
         | 
| 7 | 
             
            dependencies = [
         | 
| 8 | 
             
                "accelerate>=1.2.1",
         | 
| 9 | 
            -
                "gradio>=5. | 
| 10 | 
            -
                "hf-transfer>=0.1. | 
| 11 | 
            -
                "spaces>=0. | 
| 12 | 
             
                "torch==2.4.0",
         | 
| 13 | 
            -
                "transformers>=4. | 
| 14 | 
             
            ]
         | 
| 15 |  | 
| 16 | 
             
            [tool.ruff]
         | 
|  | |
| 6 | 
             
            requires-python = ">=3.10"
         | 
| 7 | 
             
            dependencies = [
         | 
| 8 | 
             
                "accelerate>=1.2.1",
         | 
| 9 | 
            +
                "gradio>=5.12.0",
         | 
| 10 | 
            +
                "hf-transfer>=0.1.9",
         | 
| 11 | 
            +
                "spaces>=0.32.0",
         | 
| 12 | 
             
                "torch==2.4.0",
         | 
| 13 | 
            +
                "transformers>=4.48.0",
         | 
| 14 | 
             
            ]
         | 
| 15 |  | 
| 16 | 
             
            [tool.ruff]
         | 
    	
        requirements.txt
    CHANGED
    
    | @@ -6,7 +6,7 @@ aiofiles==23.2.1 | |
| 6 | 
             
                # via gradio
         | 
| 7 | 
             
            annotated-types==0.7.0
         | 
| 8 | 
             
                # via pydantic
         | 
| 9 | 
            -
            anyio==4. | 
| 10 | 
             
                # via
         | 
| 11 | 
             
                #   gradio
         | 
| 12 | 
             
                #   httpx
         | 
| @@ -39,17 +39,17 @@ fsspec==2024.12.0 | |
| 39 | 
             
                #   gradio-client
         | 
| 40 | 
             
                #   huggingface-hub
         | 
| 41 | 
             
                #   torch
         | 
| 42 | 
            -
            gradio==5. | 
| 43 | 
             
                # via
         | 
| 44 | 
             
                #   llama-3-2-3b-instruct (pyproject.toml)
         | 
| 45 | 
             
                #   spaces
         | 
| 46 | 
            -
            gradio-client==1.5. | 
| 47 | 
             
                # via gradio
         | 
| 48 | 
             
            h11==0.14.0
         | 
| 49 | 
             
                # via
         | 
| 50 | 
             
                #   httpcore
         | 
| 51 | 
             
                #   uvicorn
         | 
| 52 | 
            -
            hf-transfer==0.1. | 
| 53 | 
             
                # via llama-3-2-3b-instruct (pyproject.toml)
         | 
| 54 | 
             
            httpcore==1.0.7
         | 
| 55 | 
             
                # via httpx
         | 
| @@ -59,7 +59,7 @@ httpx==0.28.1 | |
| 59 | 
             
                #   gradio-client
         | 
| 60 | 
             
                #   safehttpx
         | 
| 61 | 
             
                #   spaces
         | 
| 62 | 
            -
            huggingface-hub==0.27. | 
| 63 | 
             
                # via
         | 
| 64 | 
             
                #   accelerate
         | 
| 65 | 
             
                #   gradio
         | 
| @@ -124,7 +124,7 @@ nvidia-nvjitlink-cu12==12.6.85 | |
| 124 | 
             
                #   nvidia-cusparse-cu12
         | 
| 125 | 
             
            nvidia-nvtx-cu12==12.1.105
         | 
| 126 | 
             
                # via torch
         | 
| 127 | 
            -
            orjson==3.10. | 
| 128 | 
             
                # via gradio
         | 
| 129 | 
             
            packaging==24.2
         | 
| 130 | 
             
                # via
         | 
| @@ -142,7 +142,7 @@ psutil==5.9.8 | |
| 142 | 
             
                # via
         | 
| 143 | 
             
                #   accelerate
         | 
| 144 | 
             
                #   spaces
         | 
| 145 | 
            -
            pydantic==2.10. | 
| 146 | 
             
                # via
         | 
| 147 | 
             
                #   fastapi
         | 
| 148 | 
             
                #   gradio
         | 
| @@ -151,7 +151,7 @@ pydantic-core==2.27.2 | |
| 151 | 
             
                # via pydantic
         | 
| 152 | 
             
            pydub==0.25.1
         | 
| 153 | 
             
                # via gradio
         | 
| 154 | 
            -
            pygments==2. | 
| 155 | 
             
                # via rich
         | 
| 156 | 
             
            python-dateutil==2.9.0.post0
         | 
| 157 | 
             
                # via pandas
         | 
| @@ -174,11 +174,11 @@ requests==2.32.3 | |
| 174 | 
             
                #   transformers
         | 
| 175 | 
             
            rich==13.9.4
         | 
| 176 | 
             
                # via typer
         | 
| 177 | 
            -
            ruff==0. | 
| 178 | 
             
                # via gradio
         | 
| 179 | 
             
            safehttpx==0.1.6
         | 
| 180 | 
             
                # via gradio
         | 
| 181 | 
            -
            safetensors==0.5. | 
| 182 | 
             
                # via
         | 
| 183 | 
             
                #   accelerate
         | 
| 184 | 
             
                #   transformers
         | 
| @@ -190,7 +190,7 @@ six==1.17.0 | |
| 190 | 
             
                # via python-dateutil
         | 
| 191 | 
             
            sniffio==1.3.1
         | 
| 192 | 
             
                # via anyio
         | 
| 193 | 
            -
            spaces==0. | 
| 194 | 
             
                # via llama-3-2-3b-instruct (pyproject.toml)
         | 
| 195 | 
             
            starlette==0.41.3
         | 
| 196 | 
             
                # via
         | 
| @@ -210,7 +210,7 @@ tqdm==4.67.1 | |
| 210 | 
             
                # via
         | 
| 211 | 
             
                #   huggingface-hub
         | 
| 212 | 
             
                #   transformers
         | 
| 213 | 
            -
            transformers==4. | 
| 214 | 
             
                # via llama-3-2-3b-instruct (pyproject.toml)
         | 
| 215 | 
             
            triton==3.0.0
         | 
| 216 | 
             
                # via torch
         | 
|  | |
| 6 | 
             
                # via gradio
         | 
| 7 | 
             
            annotated-types==0.7.0
         | 
| 8 | 
             
                # via pydantic
         | 
| 9 | 
            +
            anyio==4.8.0
         | 
| 10 | 
             
                # via
         | 
| 11 | 
             
                #   gradio
         | 
| 12 | 
             
                #   httpx
         | 
|  | |
| 39 | 
             
                #   gradio-client
         | 
| 40 | 
             
                #   huggingface-hub
         | 
| 41 | 
             
                #   torch
         | 
| 42 | 
            +
            gradio==5.12.0
         | 
| 43 | 
             
                # via
         | 
| 44 | 
             
                #   llama-3-2-3b-instruct (pyproject.toml)
         | 
| 45 | 
             
                #   spaces
         | 
| 46 | 
            +
            gradio-client==1.5.4
         | 
| 47 | 
             
                # via gradio
         | 
| 48 | 
             
            h11==0.14.0
         | 
| 49 | 
             
                # via
         | 
| 50 | 
             
                #   httpcore
         | 
| 51 | 
             
                #   uvicorn
         | 
| 52 | 
            +
            hf-transfer==0.1.9
         | 
| 53 | 
             
                # via llama-3-2-3b-instruct (pyproject.toml)
         | 
| 54 | 
             
            httpcore==1.0.7
         | 
| 55 | 
             
                # via httpx
         | 
|  | |
| 59 | 
             
                #   gradio-client
         | 
| 60 | 
             
                #   safehttpx
         | 
| 61 | 
             
                #   spaces
         | 
| 62 | 
            +
            huggingface-hub==0.27.1
         | 
| 63 | 
             
                # via
         | 
| 64 | 
             
                #   accelerate
         | 
| 65 | 
             
                #   gradio
         | 
|  | |
| 124 | 
             
                #   nvidia-cusparse-cu12
         | 
| 125 | 
             
            nvidia-nvtx-cu12==12.1.105
         | 
| 126 | 
             
                # via torch
         | 
| 127 | 
            +
            orjson==3.10.14
         | 
| 128 | 
             
                # via gradio
         | 
| 129 | 
             
            packaging==24.2
         | 
| 130 | 
             
                # via
         | 
|  | |
| 142 | 
             
                # via
         | 
| 143 | 
             
                #   accelerate
         | 
| 144 | 
             
                #   spaces
         | 
| 145 | 
            +
            pydantic==2.10.5
         | 
| 146 | 
             
                # via
         | 
| 147 | 
             
                #   fastapi
         | 
| 148 | 
             
                #   gradio
         | 
|  | |
| 151 | 
             
                # via pydantic
         | 
| 152 | 
             
            pydub==0.25.1
         | 
| 153 | 
             
                # via gradio
         | 
| 154 | 
            +
            pygments==2.19.1
         | 
| 155 | 
             
                # via rich
         | 
| 156 | 
             
            python-dateutil==2.9.0.post0
         | 
| 157 | 
             
                # via pandas
         | 
|  | |
| 174 | 
             
                #   transformers
         | 
| 175 | 
             
            rich==13.9.4
         | 
| 176 | 
             
                # via typer
         | 
| 177 | 
            +
            ruff==0.9.1
         | 
| 178 | 
             
                # via gradio
         | 
| 179 | 
             
            safehttpx==0.1.6
         | 
| 180 | 
             
                # via gradio
         | 
| 181 | 
            +
            safetensors==0.5.2
         | 
| 182 | 
             
                # via
         | 
| 183 | 
             
                #   accelerate
         | 
| 184 | 
             
                #   transformers
         | 
|  | |
| 190 | 
             
                # via python-dateutil
         | 
| 191 | 
             
            sniffio==1.3.1
         | 
| 192 | 
             
                # via anyio
         | 
| 193 | 
            +
            spaces==0.32.0
         | 
| 194 | 
             
                # via llama-3-2-3b-instruct (pyproject.toml)
         | 
| 195 | 
             
            starlette==0.41.3
         | 
| 196 | 
             
                # via
         | 
|  | |
| 210 | 
             
                # via
         | 
| 211 | 
             
                #   huggingface-hub
         | 
| 212 | 
             
                #   transformers
         | 
| 213 | 
            +
            transformers==4.48.0
         | 
| 214 | 
             
                # via llama-3-2-3b-instruct (pyproject.toml)
         | 
| 215 | 
             
            triton==3.0.0
         | 
| 216 | 
             
                # via torch
         | 
    	
        uv.lock
    CHANGED
    
    | @@ -45,7 +45,7 @@ wheels = [ | |
| 45 |  | 
| 46 | 
             
            [[package]]
         | 
| 47 | 
             
            name = "anyio"
         | 
| 48 | 
            -
            version = "4. | 
| 49 | 
             
            source = { registry = "https://pypi.org/simple" }
         | 
| 50 | 
             
            dependencies = [
         | 
| 51 | 
             
                { name = "exceptiongroup", marker = "python_full_version < '3.11'" },
         | 
| @@ -53,9 +53,9 @@ dependencies = [ | |
| 53 | 
             
                { name = "sniffio" },
         | 
| 54 | 
             
                { name = "typing-extensions", marker = "python_full_version < '3.13'" },
         | 
| 55 | 
             
            ]
         | 
| 56 | 
            -
            sdist = { url = "https://files.pythonhosted.org/packages/ | 
| 57 | 
             
            wheels = [
         | 
| 58 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 59 | 
             
            ]
         | 
| 60 |  | 
| 61 | 
             
            [[package]]
         | 
| @@ -241,7 +241,7 @@ wheels = [ | |
| 241 |  | 
| 242 | 
             
            [[package]]
         | 
| 243 | 
             
            name = "gradio"
         | 
| 244 | 
            -
            version = "5. | 
| 245 | 
             
            source = { registry = "https://pypi.org/simple" }
         | 
| 246 | 
             
            dependencies = [
         | 
| 247 | 
             
                { name = "aiofiles" },
         | 
| @@ -274,12 +274,12 @@ dependencies = [ | |
| 274 | 
             
                { name = "uvicorn", marker = "sys_platform != 'emscripten'" },
         | 
| 275 | 
             
            ]
         | 
| 276 | 
             
            wheels = [
         | 
| 277 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 278 | 
             
            ]
         | 
| 279 |  | 
| 280 | 
             
            [[package]]
         | 
| 281 | 
             
            name = "gradio-client"
         | 
| 282 | 
            -
            version = "1.5. | 
| 283 | 
             
            source = { registry = "https://pypi.org/simple" }
         | 
| 284 | 
             
            dependencies = [
         | 
| 285 | 
             
                { name = "fsspec" },
         | 
| @@ -289,9 +289,9 @@ dependencies = [ | |
| 289 | 
             
                { name = "typing-extensions" },
         | 
| 290 | 
             
                { name = "websockets" },
         | 
| 291 | 
             
            ]
         | 
| 292 | 
            -
            sdist = { url = "https://files.pythonhosted.org/packages/ | 
| 293 | 
             
            wheels = [
         | 
| 294 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 295 | 
             
            ]
         | 
| 296 |  | 
| 297 | 
             
            [[package]]
         | 
| @@ -305,39 +305,34 @@ wheels = [ | |
| 305 |  | 
| 306 | 
             
            [[package]]
         | 
| 307 | 
             
            name = "hf-transfer"
         | 
| 308 | 
            -
            version = "0.1. | 
| 309 | 
            -
            source = { registry = "https://pypi.org/simple" }
         | 
| 310 | 
            -
            sdist = { url = "https://files.pythonhosted.org/packages/ | 
| 311 | 
            -
            wheels = [
         | 
| 312 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 313 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 314 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 315 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 316 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 317 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 318 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 319 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 320 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 321 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 322 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 323 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 324 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 325 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 326 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 327 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 328 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 329 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 330 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 331 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 332 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 333 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 334 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 335 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 336 | 
            -
                { url = "https://files.pythonhosted.org/packages/37/7f/914b684779dae9d2db4cdb6efa50426da7411754d820b8ddc9c10eef5042/hf_transfer-0.1.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:060c661691f85a61392e57579c80eb64b5ee277434e81fb582f605c1c8ff05d5", size = 3560705 },
         | 
| 337 | 
            -
                { url = "https://files.pythonhosted.org/packages/de/17/e9ff11be0ab52d113091462f65fa280bd5c04c80e5b1dadb7f8de9645848/hf_transfer-0.1.8-cp312-none-win32.whl", hash = "sha256:f7840e32379820c3e1571a480238e05ea043e970c99d2e999578004a2eb17788", size = 1130448 },
         | 
| 338 | 
            -
                { url = "https://files.pythonhosted.org/packages/58/60/04c18bbeb46cc2dc6fd237323c03f2e4c700bca122f28567dbb344ff5bab/hf_transfer-0.1.8-cp312-none-win_amd64.whl", hash = "sha256:9a3204ec423cc5e659872e8179f8704ad9ce2abb1e6a991f8838aedf1dc07830", size = 1206317 },
         | 
| 339 | 
            -
                { url = "https://files.pythonhosted.org/packages/ae/e1/647dbd310042c11638ef330060777084f3394a82adc8274624b0f0601198/hf_transfer-0.1.8-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:928ff036c3e98e10dcfbdb4fcdfc4592d37a5cc8e365a7ba8dfd4337e849d675", size = 3591149 },
         | 
| 340 | 
            -
                { url = "https://files.pythonhosted.org/packages/13/c4/aaf060b26e720a7b4cb90d7f02dc18a56b18894cbd72fb610f75b11fb9dc/hf_transfer-0.1.8-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d49ba3ce67035f460ae1924fe2feafec155cb535eec7f31ed5109c19064cd294", size = 3564510 },
         | 
| 341 | 
             
            ]
         | 
| 342 |  | 
| 343 | 
             
            [[package]]
         | 
| @@ -370,7 +365,7 @@ wheels = [ | |
| 370 |  | 
| 371 | 
             
            [[package]]
         | 
| 372 | 
             
            name = "huggingface-hub"
         | 
| 373 | 
            -
            version = "0.27. | 
| 374 | 
             
            source = { registry = "https://pypi.org/simple" }
         | 
| 375 | 
             
            dependencies = [
         | 
| 376 | 
             
                { name = "filelock" },
         | 
| @@ -381,9 +376,9 @@ dependencies = [ | |
| 381 | 
             
                { name = "tqdm" },
         | 
| 382 | 
             
                { name = "typing-extensions" },
         | 
| 383 | 
             
            ]
         | 
| 384 | 
            -
            sdist = { url = "https://files.pythonhosted.org/packages/ | 
| 385 | 
             
            wheels = [
         | 
| 386 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 387 | 
             
            ]
         | 
| 388 |  | 
| 389 | 
             
            [[package]]
         | 
| @@ -423,11 +418,11 @@ dependencies = [ | |
| 423 | 
             
            [package.metadata]
         | 
| 424 | 
             
            requires-dist = [
         | 
| 425 | 
             
                { name = "accelerate", specifier = ">=1.2.1" },
         | 
| 426 | 
            -
                { name = "gradio", specifier = ">=5. | 
| 427 | 
            -
                { name = "hf-transfer", specifier = ">=0.1. | 
| 428 | 
            -
                { name = "spaces", specifier = ">=0. | 
| 429 | 
             
                { name = "torch", specifier = "==2.4.0" },
         | 
| 430 | 
            -
                { name = "transformers", specifier = ">=4. | 
| 431 | 
             
            ]
         | 
| 432 |  | 
| 433 | 
             
            [[package]]
         | 
| @@ -680,58 +675,58 @@ wheels = [ | |
| 680 |  | 
| 681 | 
             
            [[package]]
         | 
| 682 | 
             
            name = "orjson"
         | 
| 683 | 
            -
            version = "3.10. | 
| 684 | 
            -
            source = { registry = "https://pypi.org/simple" }
         | 
| 685 | 
            -
            sdist = { url = "https://files.pythonhosted.org/packages/ | 
| 686 | 
            -
            wheels = [
         | 
| 687 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 688 | 
            -
                { url = "https://files.pythonhosted.org/packages/9f/ | 
| 689 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 690 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 691 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 692 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 693 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 694 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 695 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 696 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 697 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 698 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 699 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 700 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 701 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 702 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 703 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 704 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 705 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 706 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 707 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 708 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 709 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 710 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 711 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 712 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 713 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 714 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 715 | 
            -
                { url = "https://files.pythonhosted.org/packages/39/ | 
| 716 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 717 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 718 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 719 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 720 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 721 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 722 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 723 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 724 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 725 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 726 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 727 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 728 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 729 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 730 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 731 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 732 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 733 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 734 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 735 | 
             
            ]
         | 
| 736 |  | 
| 737 | 
             
            [[package]]
         | 
| @@ -874,16 +869,16 @@ wheels = [ | |
| 874 |  | 
| 875 | 
             
            [[package]]
         | 
| 876 | 
             
            name = "pydantic"
         | 
| 877 | 
            -
            version = "2.10. | 
| 878 | 
             
            source = { registry = "https://pypi.org/simple" }
         | 
| 879 | 
             
            dependencies = [
         | 
| 880 | 
             
                { name = "annotated-types" },
         | 
| 881 | 
             
                { name = "pydantic-core" },
         | 
| 882 | 
             
                { name = "typing-extensions" },
         | 
| 883 | 
             
            ]
         | 
| 884 | 
            -
            sdist = { url = "https://files.pythonhosted.org/packages/ | 
| 885 | 
             
            wheels = [
         | 
| 886 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 887 | 
             
            ]
         | 
| 888 |  | 
| 889 | 
             
            [[package]]
         | 
| @@ -972,11 +967,11 @@ wheels = [ | |
| 972 |  | 
| 973 | 
             
            [[package]]
         | 
| 974 | 
             
            name = "pygments"
         | 
| 975 | 
            -
            version = "2. | 
| 976 | 
             
            source = { registry = "https://pypi.org/simple" }
         | 
| 977 | 
            -
            sdist = { url = "https://files.pythonhosted.org/packages/ | 
| 978 | 
             
            wheels = [
         | 
| 979 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 980 | 
             
            ]
         | 
| 981 |  | 
| 982 | 
             
            [[package]]
         | 
| @@ -1153,27 +1148,27 @@ wheels = [ | |
| 1153 |  | 
| 1154 | 
             
            [[package]]
         | 
| 1155 | 
             
            name = "ruff"
         | 
| 1156 | 
            -
            version = "0. | 
| 1157 | 
            -
            source = { registry = "https://pypi.org/simple" }
         | 
| 1158 | 
            -
            sdist = { url = "https://files.pythonhosted.org/packages/ | 
| 1159 | 
            -
            wheels = [
         | 
| 1160 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 1161 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 1162 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 1163 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 1164 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 1165 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 1166 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 1167 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 1168 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 1169 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 1170 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 1171 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 1172 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 1173 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 1174 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 1175 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 1176 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 1177 | 
             
            ]
         | 
| 1178 |  | 
| 1179 | 
             
            [[package]]
         | 
| @@ -1190,24 +1185,24 @@ wheels = [ | |
| 1190 |  | 
| 1191 | 
             
            [[package]]
         | 
| 1192 | 
             
            name = "safetensors"
         | 
| 1193 | 
            -
            version = "0.5. | 
| 1194 | 
             
            source = { registry = "https://pypi.org/simple" }
         | 
| 1195 | 
            -
            sdist = { url = "https://files.pythonhosted.org/packages/ | 
| 1196 | 
             
            wheels = [
         | 
| 1197 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 1198 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 1199 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 1200 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 1201 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 1202 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 1203 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 1204 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 1205 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 1206 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 1207 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 1208 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 1209 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 1210 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 1211 | 
             
            ]
         | 
| 1212 |  | 
| 1213 | 
             
            [[package]]
         | 
| @@ -1248,7 +1243,7 @@ wheels = [ | |
| 1248 |  | 
| 1249 | 
             
            [[package]]
         | 
| 1250 | 
             
            name = "spaces"
         | 
| 1251 | 
            -
            version = "0. | 
| 1252 | 
             
            source = { registry = "https://pypi.org/simple" }
         | 
| 1253 | 
             
            dependencies = [
         | 
| 1254 | 
             
                { name = "gradio" },
         | 
| @@ -1259,9 +1254,9 @@ dependencies = [ | |
| 1259 | 
             
                { name = "requests" },
         | 
| 1260 | 
             
                { name = "typing-extensions" },
         | 
| 1261 | 
             
            ]
         | 
| 1262 | 
            -
            sdist = { url = "https://files.pythonhosted.org/packages/ | 
| 1263 | 
             
            wheels = [
         | 
| 1264 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 1265 | 
             
            ]
         | 
| 1266 |  | 
| 1267 | 
             
            [[package]]
         | 
| @@ -1375,7 +1370,7 @@ wheels = [ | |
| 1375 |  | 
| 1376 | 
             
            [[package]]
         | 
| 1377 | 
             
            name = "transformers"
         | 
| 1378 | 
            -
            version = "4. | 
| 1379 | 
             
            source = { registry = "https://pypi.org/simple" }
         | 
| 1380 | 
             
            dependencies = [
         | 
| 1381 | 
             
                { name = "filelock" },
         | 
| @@ -1389,9 +1384,9 @@ dependencies = [ | |
| 1389 | 
             
                { name = "tokenizers" },
         | 
| 1390 | 
             
                { name = "tqdm" },
         | 
| 1391 | 
             
            ]
         | 
| 1392 | 
            -
            sdist = { url = "https://files.pythonhosted.org/packages/ | 
| 1393 | 
             
            wheels = [
         | 
| 1394 | 
            -
                { url = "https://files.pythonhosted.org/packages/ | 
| 1395 | 
             
            ]
         | 
| 1396 |  | 
| 1397 | 
             
            [[package]]
         | 
| @@ -1399,7 +1394,7 @@ name = "triton" | |
| 1399 | 
             
            version = "3.0.0"
         | 
| 1400 | 
             
            source = { registry = "https://pypi.org/simple" }
         | 
| 1401 | 
             
            dependencies = [
         | 
| 1402 | 
            -
                { name = "filelock" | 
| 1403 | 
             
            ]
         | 
| 1404 | 
             
            wheels = [
         | 
| 1405 | 
             
                { url = "https://files.pythonhosted.org/packages/45/27/14cc3101409b9b4b9241d2ba7deaa93535a217a211c86c4cc7151fb12181/triton-3.0.0-1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:e1efef76935b2febc365bfadf74bcb65a6f959a9872e5bddf44cc9e0adce1e1a", size = 209376304 },
         | 
|  | |
| 45 |  | 
| 46 | 
             
            [[package]]
         | 
| 47 | 
             
            name = "anyio"
         | 
| 48 | 
            +
            version = "4.8.0"
         | 
| 49 | 
             
            source = { registry = "https://pypi.org/simple" }
         | 
| 50 | 
             
            dependencies = [
         | 
| 51 | 
             
                { name = "exceptiongroup", marker = "python_full_version < '3.11'" },
         | 
|  | |
| 53 | 
             
                { name = "sniffio" },
         | 
| 54 | 
             
                { name = "typing-extensions", marker = "python_full_version < '3.13'" },
         | 
| 55 | 
             
            ]
         | 
| 56 | 
            +
            sdist = { url = "https://files.pythonhosted.org/packages/a3/73/199a98fc2dae33535d6b8e8e6ec01f8c1d76c9adb096c6b7d64823038cde/anyio-4.8.0.tar.gz", hash = "sha256:1d9fe889df5212298c0c0723fa20479d1b94883a2df44bd3897aa91083316f7a", size = 181126 }
         | 
| 57 | 
             
            wheels = [
         | 
| 58 | 
            +
                { url = "https://files.pythonhosted.org/packages/46/eb/e7f063ad1fec6b3178a3cd82d1a3c4de82cccf283fc42746168188e1cdd5/anyio-4.8.0-py3-none-any.whl", hash = "sha256:b5011f270ab5eb0abf13385f851315585cc37ef330dd88e27ec3d34d651fd47a", size = 96041 },
         | 
| 59 | 
             
            ]
         | 
| 60 |  | 
| 61 | 
             
            [[package]]
         | 
|  | |
| 241 |  | 
| 242 | 
             
            [[package]]
         | 
| 243 | 
             
            name = "gradio"
         | 
| 244 | 
            +
            version = "5.12.0"
         | 
| 245 | 
             
            source = { registry = "https://pypi.org/simple" }
         | 
| 246 | 
             
            dependencies = [
         | 
| 247 | 
             
                { name = "aiofiles" },
         | 
|  | |
| 274 | 
             
                { name = "uvicorn", marker = "sys_platform != 'emscripten'" },
         | 
| 275 | 
             
            ]
         | 
| 276 | 
             
            wheels = [
         | 
| 277 | 
            +
                { url = "https://files.pythonhosted.org/packages/7a/70/fb8611fabeb432d05946ef89d7acc6fde6c7e85ca9a05d39626b4cdf1a17/gradio-5.12.0-py3-none-any.whl", hash = "sha256:b4b79a2c537131a8a5e23046565e64da40156ac24f9082e563e734e89641e160", size = 57580407 },
         | 
| 278 | 
             
            ]
         | 
| 279 |  | 
| 280 | 
             
            [[package]]
         | 
| 281 | 
             
            name = "gradio-client"
         | 
| 282 | 
            +
            version = "1.5.4"
         | 
| 283 | 
             
            source = { registry = "https://pypi.org/simple" }
         | 
| 284 | 
             
            dependencies = [
         | 
| 285 | 
             
                { name = "fsspec" },
         | 
|  | |
| 289 | 
             
                { name = "typing-extensions" },
         | 
| 290 | 
             
                { name = "websockets" },
         | 
| 291 | 
             
            ]
         | 
| 292 | 
            +
            sdist = { url = "https://files.pythonhosted.org/packages/cb/60/e822beb21c93497285b10c34a20da5ef0e4b18fb736e89077b599e2783d1/gradio_client-1.5.4.tar.gz", hash = "sha256:281a1b6c4e45210c70b60888bb6f329c27f30645d7aa376e1f20966de82273dc", size = 319517 }
         | 
| 293 | 
             
            wheels = [
         | 
| 294 | 
            +
                { url = "https://files.pythonhosted.org/packages/a6/3d/e05202dd42581c2a1e93c730d10a0ef45bc40921332c9aa0d6645bbf0e2b/gradio_client-1.5.4-py3-none-any.whl", hash = "sha256:ad38c9a6f7fc590e822627f5bf5685321a7822b8f1a88b76d00a0621a43162d6", size = 321364 },
         | 
| 295 | 
             
            ]
         | 
| 296 |  | 
| 297 | 
             
            [[package]]
         | 
|  | |
| 305 |  | 
| 306 | 
             
            [[package]]
         | 
| 307 | 
             
            name = "hf-transfer"
         | 
| 308 | 
            +
            version = "0.1.9"
         | 
| 309 | 
            +
            source = { registry = "https://pypi.org/simple" }
         | 
| 310 | 
            +
            sdist = { url = "https://files.pythonhosted.org/packages/1a/eb/8fc64f40388c29ce8ce3b2b180a089d4d6b25b1d0d232d016704cb852104/hf_transfer-0.1.9.tar.gz", hash = "sha256:035572865dab29d17e783fbf1e84cf1cb24f3fcf8f1b17db1cfc7fdf139f02bf", size = 25201 }
         | 
| 311 | 
            +
            wheels = [
         | 
| 312 | 
            +
                { url = "https://files.pythonhosted.org/packages/a4/78/0dce00208f585fae675f40033ef9a30dedfa83665d5ac79f16beb4a0a6c2/hf_transfer-0.1.9-cp313-cp313t-macosx_10_12_x86_64.whl", hash = "sha256:6e94e8822da79573c9b6ae4d6b2f847c59a7a06c5327d7db20751b68538dc4f6", size = 1386084 },
         | 
| 313 | 
            +
                { url = "https://files.pythonhosted.org/packages/ea/2e/3d60b1a9e9f29a2152aa66c823bf5e399ae7be3fef310ff0de86779c5d2d/hf_transfer-0.1.9-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:3ebc4ab9023414880c8b1d3c38174d1c9989eb5022d37e814fa91a3060123eb0", size = 1343558 },
         | 
| 314 | 
            +
                { url = "https://files.pythonhosted.org/packages/fb/38/130a5ac3747f104033591bcac1c961cb1faadfdc91704f59b09c0b465ff2/hf_transfer-0.1.9-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8674026f21ed369aa2a0a4b46000aca850fc44cd2b54af33a172ce5325b4fc82", size = 3726676 },
         | 
| 315 | 
            +
                { url = "https://files.pythonhosted.org/packages/15/a1/f4e27c5ad17aac616ae0849e2aede5aae31db8267a948c6b3eeb9fd96446/hf_transfer-0.1.9-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:3a736dfbb2c84f5a2c975478ad200c0c8bfcb58a25a35db402678fb87ce17fa4", size = 3062920 },
         | 
| 316 | 
            +
                { url = "https://files.pythonhosted.org/packages/8d/0d/727abdfba39bc3f1132cfa4c970588c2c0bb0d82fe2d645cc10f4e2f8e0b/hf_transfer-0.1.9-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:504b8427fd785dd8546d53b9fafe6e436bd7a3adf76b9dce556507650a7b4567", size = 3578681 },
         | 
| 317 | 
            +
                { url = "https://files.pythonhosted.org/packages/50/d0/2b213eb1ea8b1252ccaf1a6c804d0aba03fea38aae4124df6a3acb70511a/hf_transfer-0.1.9-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2c7fc1b85f4d0f76e452765d7648c9f4bfd0aedb9ced2ae1ebfece2d8cfaf8e2", size = 3398837 },
         | 
| 318 | 
            +
                { url = "https://files.pythonhosted.org/packages/8c/8a/79dbce9006e0bd6b74516f97451a7b7c64dbbb426df15d901dd438cfeee3/hf_transfer-0.1.9-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0d991376f0eac70a60f0cbc95602aa708a6f7c8617f28b4945c1431d67b8e3c8", size = 3546986 },
         | 
| 319 | 
            +
                { url = "https://files.pythonhosted.org/packages/a9/f7/9ac239b6ee6fe0bad130325d987a93ea58c4118e50479f0786f1733b37e8/hf_transfer-0.1.9-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:e6ac4eddcd99575ed3735ed911ddf9d1697e2bd13aa3f0ad7e3904dd4863842e", size = 4071715 },
         | 
| 320 | 
            +
                { url = "https://files.pythonhosted.org/packages/d8/a3/0ed697279f5eeb7a40f279bd783cf50e6d0b91f24120dcf66ef2cf8822b4/hf_transfer-0.1.9-cp313-cp313t-musllinux_1_2_armv7l.whl", hash = "sha256:57fd9880da1ee0f47250f735f791fab788f0aa1ee36afc49f761349869c8b4d9", size = 3388081 },
         | 
| 321 | 
            +
                { url = "https://files.pythonhosted.org/packages/dc/eb/47e477bdf1d784f31c7540db6cc8c354b777e51a186897a7abda34517f36/hf_transfer-0.1.9-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:5d561f0520f493c66b016d99ceabe69c23289aa90be38dd802d2aef279f15751", size = 3658654 },
         | 
| 322 | 
            +
                { url = "https://files.pythonhosted.org/packages/45/07/6661e43fbee09594a8a5e9bb778107d95fe38dac4c653982afe03d32bd4d/hf_transfer-0.1.9-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:a5b366d34cd449fe9b20ef25941e6eef0460a2f74e7389f02e673e1f88ebd538", size = 3690551 },
         | 
| 323 | 
            +
                { url = "https://files.pythonhosted.org/packages/81/f5/461d2e5f307e5048289b1168d5c642ae3bb2504e88dff1a38b92ed990a21/hf_transfer-0.1.9-cp38-abi3-macosx_10_12_x86_64.whl", hash = "sha256:e66acf91df4a8b72f60223059df3003062a5ae111757187ed1a06750a30e911b", size = 1393046 },
         | 
| 324 | 
            +
                { url = "https://files.pythonhosted.org/packages/41/ba/8d9fd9f1083525edfcb389c93738c802f3559cb749324090d7109c8bf4c2/hf_transfer-0.1.9-cp38-abi3-macosx_11_0_arm64.whl", hash = "sha256:8669dbcc7a3e2e8d61d42cd24da9c50d57770bd74b445c65123291ca842a7e7a", size = 1348126 },
         | 
| 325 | 
            +
                { url = "https://files.pythonhosted.org/packages/8e/a2/cd7885bc9959421065a6fae0fe67b6c55becdeda4e69b873e52976f9a9f0/hf_transfer-0.1.9-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8fd0167c4407a3bc4cdd0307e65ada2294ec04f1813d8a69a5243e379b22e9d8", size = 3728604 },
         | 
| 326 | 
            +
                { url = "https://files.pythonhosted.org/packages/f6/2e/a072cf196edfeda3310c9a5ade0a0fdd785e6154b3ce24fc738c818da2a7/hf_transfer-0.1.9-cp38-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ee8b10afedcb75f71091bcc197c526a6ebf5c58bbbadb34fdeee6160f55f619f", size = 3064995 },
         | 
| 327 | 
            +
                { url = "https://files.pythonhosted.org/packages/c2/84/aec9ef4c0fab93c1ea2b1badff38c78b4b2f86f0555b26d2051dbc920cde/hf_transfer-0.1.9-cp38-abi3-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5828057e313de59300dd1abb489444bc452efe3f479d3c55b31a8f680936ba42", size = 3580908 },
         | 
| 328 | 
            +
                { url = "https://files.pythonhosted.org/packages/29/63/b560d39651a56603d64f1a0212d0472a44cbd965db2fa62b99d99cb981bf/hf_transfer-0.1.9-cp38-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:fc6bd19e1cc177c66bdef15ef8636ad3bde79d5a4f608c158021153b4573509d", size = 3400839 },
         | 
| 329 | 
            +
                { url = "https://files.pythonhosted.org/packages/d6/d8/f87ea6f42456254b48915970ed98e993110521e9263472840174d32c880d/hf_transfer-0.1.9-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cdca9bfb89e6f8f281890cc61a8aff2d3cecaff7e1a4d275574d96ca70098557", size = 3552664 },
         | 
| 330 | 
            +
                { url = "https://files.pythonhosted.org/packages/d6/56/1267c39b65fc8f4e2113b36297320f102718bf5799b544a6cbe22013aa1d/hf_transfer-0.1.9-cp38-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:89a23f58b7b7effbc047b8ca286f131b17728c99a9f972723323003ffd1bb916", size = 4073732 },
         | 
| 331 | 
            +
                { url = "https://files.pythonhosted.org/packages/82/1a/9c748befbe3decf7cb415e34f8a0c3789a0a9c55910dea73d581e48c0ce5/hf_transfer-0.1.9-cp38-abi3-musllinux_1_2_armv7l.whl", hash = "sha256:dc7fff1345980d6c0ebb92c811d24afa4b98b3e07ed070c8e38cc91fd80478c5", size = 3390096 },
         | 
| 332 | 
            +
                { url = "https://files.pythonhosted.org/packages/72/85/4c03da147b6b4b7cb12e074d3d44eee28604a387ed0eaf7eaaead5069c57/hf_transfer-0.1.9-cp38-abi3-musllinux_1_2_i686.whl", hash = "sha256:1a6bd16c667ebe89a069ca163060127a794fa3a3525292c900b8c8cc47985b0d", size = 3664743 },
         | 
| 333 | 
            +
                { url = "https://files.pythonhosted.org/packages/e7/6e/e597b04f753f1b09e6893075d53a82a30c13855cbaa791402695b01e369f/hf_transfer-0.1.9-cp38-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:d2fde99d502093ade3ab1b53f80da18480e9902aa960dab7f74fb1b9e5bc5746", size = 3695243 },
         | 
| 334 | 
            +
                { url = "https://files.pythonhosted.org/packages/09/89/d4e234727a26b2546c8fb70a276cd924260d60135f2165bf8b9ed67bb9a4/hf_transfer-0.1.9-cp38-abi3-win32.whl", hash = "sha256:435cc3cdc8524ce57b074032b8fd76eed70a4224d2091232fa6a8cef8fd6803e", size = 1086605 },
         | 
| 335 | 
            +
                { url = "https://files.pythonhosted.org/packages/a1/14/f1e15b851d1c2af5b0b1a82bf8eb10bda2da62d98180220ba6fd8879bb5b/hf_transfer-0.1.9-cp38-abi3-win_amd64.whl", hash = "sha256:16f208fc678911c37e11aa7b586bc66a37d02e636208f18b6bc53d29b5df40ad", size = 1160240 },
         | 
|  | |
|  | |
|  | |
|  | |
|  | |
| 336 | 
             
            ]
         | 
| 337 |  | 
| 338 | 
             
            [[package]]
         | 
|  | |
| 365 |  | 
| 366 | 
             
            [[package]]
         | 
| 367 | 
             
            name = "huggingface-hub"
         | 
| 368 | 
            +
            version = "0.27.1"
         | 
| 369 | 
             
            source = { registry = "https://pypi.org/simple" }
         | 
| 370 | 
             
            dependencies = [
         | 
| 371 | 
             
                { name = "filelock" },
         | 
|  | |
| 376 | 
             
                { name = "tqdm" },
         | 
| 377 | 
             
                { name = "typing-extensions" },
         | 
| 378 | 
             
            ]
         | 
| 379 | 
            +
            sdist = { url = "https://files.pythonhosted.org/packages/e1/d2/d6976de7542792fc077b498d64af64882b6d8bb40679284ec0bff77d5929/huggingface_hub-0.27.1.tar.gz", hash = "sha256:c004463ca870283909d715d20f066ebd6968c2207dae9393fdffb3c1d4d8f98b", size = 379407 }
         | 
| 380 | 
             
            wheels = [
         | 
| 381 | 
            +
                { url = "https://files.pythonhosted.org/packages/6c/3f/50f6b25fafdcfb1c089187a328c95081abf882309afd86f4053951507cd1/huggingface_hub-0.27.1-py3-none-any.whl", hash = "sha256:1c5155ca7d60b60c2e2fc38cbb3ffb7f7c3adf48f824015b219af9061771daec", size = 450658 },
         | 
| 382 | 
             
            ]
         | 
| 383 |  | 
| 384 | 
             
            [[package]]
         | 
|  | |
| 418 | 
             
            [package.metadata]
         | 
| 419 | 
             
            requires-dist = [
         | 
| 420 | 
             
                { name = "accelerate", specifier = ">=1.2.1" },
         | 
| 421 | 
            +
                { name = "gradio", specifier = ">=5.12.0" },
         | 
| 422 | 
            +
                { name = "hf-transfer", specifier = ">=0.1.9" },
         | 
| 423 | 
            +
                { name = "spaces", specifier = ">=0.32.0" },
         | 
| 424 | 
             
                { name = "torch", specifier = "==2.4.0" },
         | 
| 425 | 
            +
                { name = "transformers", specifier = ">=4.48.0" },
         | 
| 426 | 
             
            ]
         | 
| 427 |  | 
| 428 | 
             
            [[package]]
         | 
|  | |
| 675 |  | 
| 676 | 
             
            [[package]]
         | 
| 677 | 
             
            name = "orjson"
         | 
| 678 | 
            +
            version = "3.10.14"
         | 
| 679 | 
            +
            source = { registry = "https://pypi.org/simple" }
         | 
| 680 | 
            +
            sdist = { url = "https://files.pythonhosted.org/packages/92/f7/3219b56f47b4f5e864fb11cdf4ac0aaa3de608730ad2dc4c6e16382f35ec/orjson-3.10.14.tar.gz", hash = "sha256:cf31f6f071a6b8e7aa1ead1fa27b935b48d00fbfa6a28ce856cfff2d5dd68eed", size = 5282116 }
         | 
| 681 | 
            +
            wheels = [
         | 
| 682 | 
            +
                { url = "https://files.pythonhosted.org/packages/b3/62/64348b8b29a14c7342f6aa45c8be0a87fdda2ce7716bc123717376537077/orjson-3.10.14-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:849ea7845a55f09965826e816cdc7689d6cf74fe9223d79d758c714af955bcb6", size = 249439 },
         | 
| 683 | 
            +
                { url = "https://files.pythonhosted.org/packages/9f/51/48f4dfbca7b4db630316b170db4a150a33cd405650258bd62a2d619b43b4/orjson-3.10.14-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b5947b139dfa33f72eecc63f17e45230a97e741942955a6c9e650069305eb73d", size = 135811 },
         | 
| 684 | 
            +
                { url = "https://files.pythonhosted.org/packages/a1/1c/e18770843e6d045605c8e00a1be801da5668fa934b323b0492a49c9dee4f/orjson-3.10.14-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:cde6d76910d3179dae70f164466692f4ea36da124d6fb1a61399ca589e81d69a", size = 150154 },
         | 
| 685 | 
            +
                { url = "https://files.pythonhosted.org/packages/51/1e/3817dc79164f1fc17fc53102f74f62d31f5f4ec042abdd24d94c5e06e51c/orjson-3.10.14-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c6dfbaeb7afa77ca608a50e2770a0461177b63a99520d4928e27591b142c74b1", size = 139740 },
         | 
| 686 | 
            +
                { url = "https://files.pythonhosted.org/packages/ff/fc/fbf9e25448f7a2d67c1a2b6dad78a9340666bf9fda3339ff59b1e93f0b6f/orjson-3.10.14-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fa45e489ef80f28ff0e5ba0a72812b8cfc7c1ef8b46a694723807d1b07c89ebb", size = 154479 },
         | 
| 687 | 
            +
                { url = "https://files.pythonhosted.org/packages/d4/df/c8b7ea21ff658f6a9a26d562055631c01d445bda5eb613c02c7d0934607d/orjson-3.10.14-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4f5007abfdbb1d866e2aa8990bd1c465f0f6da71d19e695fc278282be12cffa5", size = 130414 },
         | 
| 688 | 
            +
                { url = "https://files.pythonhosted.org/packages/df/f7/e29c2d42bef8fbf696a5e54e6339b0b9ea5179326950fee6ae80acf59d09/orjson-3.10.14-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:1b49e2af011c84c3f2d541bb5cd1e3c7c2df672223e7e3ea608f09cf295e5f8a", size = 138545 },
         | 
| 689 | 
            +
                { url = "https://files.pythonhosted.org/packages/8e/97/afdf2908fe8eaeecb29e97fa82dc934f275acf330e5271def0b8fbac5478/orjson-3.10.14-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:164ac155109226b3a2606ee6dda899ccfbe6e7e18b5bdc3fbc00f79cc074157d", size = 130952 },
         | 
| 690 | 
            +
                { url = "https://files.pythonhosted.org/packages/4a/dd/04e01c1305694f47e9794c60ec7cece02e55fa9d57c5d72081eaaa62ad1d/orjson-3.10.14-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:6b1225024cf0ef5d15934b5ffe9baf860fe8bc68a796513f5ea4f5056de30bca", size = 414673 },
         | 
| 691 | 
            +
                { url = "https://files.pythonhosted.org/packages/fa/12/28c4d5f6a395ac9693b250f0662366968c47fc99c8f3cd803a65b1f5ba46/orjson-3.10.14-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:d6546e8073dc382e60fcae4a001a5a1bc46da5eab4a4878acc2d12072d6166d5", size = 141002 },
         | 
| 692 | 
            +
                { url = "https://files.pythonhosted.org/packages/21/f6/357cb167c2d2fd9542251cfd9f68681b67ed4dcdac82aa6ee2f4f3ab952e/orjson-3.10.14-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:9f1d2942605c894162252d6259b0121bf1cb493071a1ea8cb35d79cb3e6ac5bc", size = 129626 },
         | 
| 693 | 
            +
                { url = "https://files.pythonhosted.org/packages/df/07/d9062353500df9db8bfa7c6a5982687c97d0b69a5b158c4166d407ac94e2/orjson-3.10.14-cp310-cp310-win32.whl", hash = "sha256:397083806abd51cf2b3bbbf6c347575374d160331a2d33c5823e22249ad3118b", size = 142429 },
         | 
| 694 | 
            +
                { url = "https://files.pythonhosted.org/packages/50/ba/6ba2bf69ac0526d143aebe78bc39e6e5fbb51d5336fbc5efb9aab6687cd9/orjson-3.10.14-cp310-cp310-win_amd64.whl", hash = "sha256:fa18f949d3183a8d468367056be989666ac2bef3a72eece0bade9cdb733b3c28", size = 133512 },
         | 
| 695 | 
            +
                { url = "https://files.pythonhosted.org/packages/bf/18/26721760368e12b691fb6811692ed21ae5275ea918db409ba26866cacbe8/orjson-3.10.14-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:f506fd666dd1ecd15a832bebc66c4df45c1902fd47526292836c339f7ba665a9", size = 249437 },
         | 
| 696 | 
            +
                { url = "https://files.pythonhosted.org/packages/d5/5b/2adfe7cc301edeb3bffc1942956659c19ec00d51a21c53c17c0767bebf47/orjson-3.10.14-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:efe5fd254cfb0eeee13b8ef7ecb20f5d5a56ddda8a587f3852ab2cedfefdb5f6", size = 135812 },
         | 
| 697 | 
            +
                { url = "https://files.pythonhosted.org/packages/8a/68/07df7787fd9ff6dba815b2d793eec5e039d288fdf150431ed48a660bfcbb/orjson-3.10.14-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4ddc8c866d7467f5ee2991397d2ea94bcf60d0048bdd8ca555740b56f9042725", size = 150153 },
         | 
| 698 | 
            +
                { url = "https://files.pythonhosted.org/packages/02/71/f68562734461b801b53bacd5365e079dcb3c78656a662f0639494880e522/orjson-3.10.14-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3af8e42ae4363773658b8d578d56dedffb4f05ceeb4d1d4dd3fb504950b45526", size = 139742 },
         | 
| 699 | 
            +
                { url = "https://files.pythonhosted.org/packages/04/03/1355fb27652582f00d3c62e93a32b982fa42bc31d2e07f0a317867069096/orjson-3.10.14-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:84dd83110503bc10e94322bf3ffab8bc49150176b49b4984dc1cce4c0a993bf9", size = 154479 },
         | 
| 700 | 
            +
                { url = "https://files.pythonhosted.org/packages/7c/47/1c2a840f27715e8bc2bbafffc851512ede6e53483593eded190919bdcaf4/orjson-3.10.14-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:36f5bfc0399cd4811bf10ec7a759c7ab0cd18080956af8ee138097d5b5296a95", size = 130413 },
         | 
| 701 | 
            +
                { url = "https://files.pythonhosted.org/packages/dd/b2/5bb51006cbae85b052d1bbee7ff43ae26fa155bb3d31a71b0c07d384d5e3/orjson-3.10.14-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:868943660fb2a1e6b6b965b74430c16a79320b665b28dd4511d15ad5038d37d5", size = 138545 },
         | 
| 702 | 
            +
                { url = "https://files.pythonhosted.org/packages/79/30/7841a5dd46bb46b8e868791d5469c9d4788d3e26b7e69d40256647997baf/orjson-3.10.14-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:33449c67195969b1a677533dee9d76e006001213a24501333624623e13c7cc8e", size = 130953 },
         | 
| 703 | 
            +
                { url = "https://files.pythonhosted.org/packages/08/49/720e7c2040c0f1df630a36d83d449bd7e4d4471071d5ece47a4f7211d570/orjson-3.10.14-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:e4c9f60f9fb0b5be66e416dcd8c9d94c3eabff3801d875bdb1f8ffc12cf86905", size = 414675 },
         | 
| 704 | 
            +
                { url = "https://files.pythonhosted.org/packages/50/b0/ca7619f34280e7dcbd50dbc9c5fe5200c12cd7269b8858652beb3887483f/orjson-3.10.14-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:0de4d6315cfdbd9ec803b945c23b3a68207fd47cbe43626036d97e8e9561a436", size = 141004 },
         | 
| 705 | 
            +
                { url = "https://files.pythonhosted.org/packages/75/1b/7548e3a711543f438e87a4349e00439ab7f37807942e5659f29363f35765/orjson-3.10.14-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:83adda3db595cb1a7e2237029b3249c85afbe5c747d26b41b802e7482cb3933e", size = 129629 },
         | 
| 706 | 
            +
                { url = "https://files.pythonhosted.org/packages/b0/1e/4930a6ff46debd6be1ff18e869b7bc43a7ad762c865610b7e745038d6f68/orjson-3.10.14-cp311-cp311-win32.whl", hash = "sha256:998019ef74a4997a9d741b1473533cdb8faa31373afc9849b35129b4b8ec048d", size = 142430 },
         | 
| 707 | 
            +
                { url = "https://files.pythonhosted.org/packages/28/e0/6cc1cd1dfde36555e81ac869f7847e86bb11c27f97b72fde2f1509b12163/orjson-3.10.14-cp311-cp311-win_amd64.whl", hash = "sha256:9d034abdd36f0f0f2240f91492684e5043d46f290525d1117712d5b8137784eb", size = 133516 },
         | 
| 708 | 
            +
                { url = "https://files.pythonhosted.org/packages/8c/dc/dc5a882be016ee8688bd867ad3b4e3b2ab039d91383099702301a1adb6ac/orjson-3.10.14-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:2ad4b7e367efba6dc3f119c9a0fcd41908b7ec0399a696f3cdea7ec477441b09", size = 249396 },
         | 
| 709 | 
            +
                { url = "https://files.pythonhosted.org/packages/f0/95/4c23ff5c0505cd687928608e0b7910ccb44ce59490079e1c17b7610aa0d0/orjson-3.10.14-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f496286fc85e93ce0f71cc84fc1c42de2decf1bf494094e188e27a53694777a7", size = 135689 },
         | 
| 710 | 
            +
                { url = "https://files.pythonhosted.org/packages/ad/39/b4bdd19604dce9d6509c4d86e8e251a1373a24204b4c4169866dcecbe5f5/orjson-3.10.14-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c7f189bbfcded40e41a6969c1068ba305850ba016665be71a217918931416fbf", size = 150136 },
         | 
| 711 | 
            +
                { url = "https://files.pythonhosted.org/packages/1d/92/7b9bad96353abd3e89947960252dcf1022ce2df7f29056e434de05e18b6d/orjson-3.10.14-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8cc8204f0b75606869c707da331058ddf085de29558b516fc43c73ee5ee2aadb", size = 139766 },
         | 
| 712 | 
            +
                { url = "https://files.pythonhosted.org/packages/a6/bd/abb13c86540b7a91b40d7d9f8549d03a026bc22d78fa93f71d68b8f4c36e/orjson-3.10.14-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:deaa2899dff7f03ab667e2ec25842d233e2a6a9e333efa484dfe666403f3501c", size = 154533 },
         | 
| 713 | 
            +
                { url = "https://files.pythonhosted.org/packages/c0/02/0bcb91ec9c7143012359983aca44f567f87df379957cd4af11336217b12f/orjson-3.10.14-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f1c3ea52642c9714dc6e56de8a451a066f6d2707d273e07fe8a9cc1ba073813d", size = 130658 },
         | 
| 714 | 
            +
                { url = "https://files.pythonhosted.org/packages/b4/1e/b304596bb1f800d47d6e92305bd09f0eef693ed4f7b2095db63f9808b229/orjson-3.10.14-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9d3f9ed72e7458ded9a1fb1b4d4ed4c4fdbaf82030ce3f9274b4dc1bff7ace2b", size = 138546 },
         | 
| 715 | 
            +
                { url = "https://files.pythonhosted.org/packages/56/c7/65d72b22080186ef618a46afeb9386e20056f3237664090f3a2f8da1cd6d/orjson-3.10.14-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:07520685d408a2aba514c17ccc16199ff2934f9f9e28501e676c557f454a37fe", size = 130774 },
         | 
| 716 | 
            +
                { url = "https://files.pythonhosted.org/packages/4d/85/1ab35a832f32b37ccd673721e845cf302f23453603112255af611c91d1d1/orjson-3.10.14-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:76344269b550ea01488d19a2a369ab572c1ac4449a72e9f6ac0d70eb1cbfb953", size = 414649 },
         | 
| 717 | 
            +
                { url = "https://files.pythonhosted.org/packages/d1/7d/1d6575f779bab8fe698fa6d52e8aa3aa0a9fca4885d0bf6197700455713a/orjson-3.10.14-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:e2979d0f2959990620f7e62da6cd954e4620ee815539bc57a8ae46e2dacf90e3", size = 141060 },
         | 
| 718 | 
            +
                { url = "https://files.pythonhosted.org/packages/f8/26/68513e28b3bd1d7633318ed2818e86d1bfc8b782c87c520c7b363092837f/orjson-3.10.14-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:03f61ca3674555adcb1aa717b9fc87ae936aa7a63f6aba90a474a88701278780", size = 129798 },
         | 
| 719 | 
            +
                { url = "https://files.pythonhosted.org/packages/44/ca/020fb99c98ff7267ba18ce798ff0c8c3aa97cd949b611fc76cad3c87e534/orjson-3.10.14-cp312-cp312-win32.whl", hash = "sha256:d5075c54edf1d6ad81d4c6523ce54a748ba1208b542e54b97d8a882ecd810fd1", size = 142524 },
         | 
| 720 | 
            +
                { url = "https://files.pythonhosted.org/packages/70/7f/f2d346819a273653825e7c92dc26418c8da506003c9fc1dfe8157e733b2e/orjson-3.10.14-cp312-cp312-win_amd64.whl", hash = "sha256:175cafd322e458603e8ce73510a068d16b6e6f389c13f69bf16de0e843d7d406", size = 133663 },
         | 
| 721 | 
            +
                { url = "https://files.pythonhosted.org/packages/46/bb/f1b037d89f580c79eda0940772384cc226a697be1cb4eb94ae4e792aa34c/orjson-3.10.14-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:0905ca08a10f7e0e0c97d11359609300eb1437490a7f32bbaa349de757e2e0c7", size = 249333 },
         | 
| 722 | 
            +
                { url = "https://files.pythonhosted.org/packages/e4/72/12958a073cace3f8acef0f9a30739d95f46bbb1544126fecad11527d4508/orjson-3.10.14-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:92d13292249f9f2a3e418cbc307a9fbbef043c65f4bd8ba1eb620bc2aaba3d15", size = 125038 },
         | 
| 723 | 
            +
                { url = "https://files.pythonhosted.org/packages/c0/ae/461f78b1c98de1bc034af88bc21c6a792cc63373261fbc10a6ee560814fa/orjson-3.10.14-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:90937664e776ad316d64251e2fa2ad69265e4443067668e4727074fe39676414", size = 130604 },
         | 
| 724 | 
            +
                { url = "https://files.pythonhosted.org/packages/ae/d2/17f50513f56bff7898840fddf7fb88f501305b9b2605d2793ff224789665/orjson-3.10.14-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:9ed3d26c4cb4f6babaf791aa46a029265850e80ec2a566581f5c2ee1a14df4f1", size = 130756 },
         | 
| 725 | 
            +
                { url = "https://files.pythonhosted.org/packages/fa/bc/673856e4af94c9890dfd8e2054c05dc2ddc16d1728c2aa0c5bd198943105/orjson-3.10.14-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:56ee546c2bbe9599aba78169f99d1dc33301853e897dbaf642d654248280dc6e", size = 414613 },
         | 
| 726 | 
            +
                { url = "https://files.pythonhosted.org/packages/09/01/08c5b69b0756dd1790fcffa569d6a28dedcd7b97f825e4b46537b788908c/orjson-3.10.14-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:901e826cb2f1bdc1fcef3ef59adf0c451e8f7c0b5deb26c1a933fb66fb505eae", size = 141010 },
         | 
| 727 | 
            +
                { url = "https://files.pythonhosted.org/packages/5b/98/72883bb6cf88fd364996e62d2026622ca79bfb8dbaf96ccdd2018ada25b1/orjson-3.10.14-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:26336c0d4b2d44636e1e1e6ed1002f03c6aae4a8a9329561c8883f135e9ff010", size = 129732 },
         | 
| 728 | 
            +
                { url = "https://files.pythonhosted.org/packages/e4/99/347418f7ef56dcb478ba131a6112b8ddd5b747942652b6e77a53155a7e21/orjson-3.10.14-cp313-cp313-win32.whl", hash = "sha256:e2bc525e335a8545c4e48f84dd0328bc46158c9aaeb8a1c2276546e94540ea3d", size = 142504 },
         | 
| 729 | 
            +
                { url = "https://files.pythonhosted.org/packages/59/ac/5e96cad01083015f7bfdb02ccafa489da8e6caa7f4c519e215f04d2bd856/orjson-3.10.14-cp313-cp313-win_amd64.whl", hash = "sha256:eca04dfd792cedad53dc9a917da1a522486255360cb4e77619343a20d9f35364", size = 133388 },
         | 
| 730 | 
             
            ]
         | 
| 731 |  | 
| 732 | 
             
            [[package]]
         | 
|  | |
| 869 |  | 
| 870 | 
             
            [[package]]
         | 
| 871 | 
             
            name = "pydantic"
         | 
| 872 | 
            +
            version = "2.10.5"
         | 
| 873 | 
             
            source = { registry = "https://pypi.org/simple" }
         | 
| 874 | 
             
            dependencies = [
         | 
| 875 | 
             
                { name = "annotated-types" },
         | 
| 876 | 
             
                { name = "pydantic-core" },
         | 
| 877 | 
             
                { name = "typing-extensions" },
         | 
| 878 | 
             
            ]
         | 
| 879 | 
            +
            sdist = { url = "https://files.pythonhosted.org/packages/6a/c7/ca334c2ef6f2e046b1144fe4bb2a5da8a4c574e7f2ebf7e16b34a6a2fa92/pydantic-2.10.5.tar.gz", hash = "sha256:278b38dbbaec562011d659ee05f63346951b3a248a6f3642e1bc68894ea2b4ff", size = 761287 }
         | 
| 880 | 
             
            wheels = [
         | 
| 881 | 
            +
                { url = "https://files.pythonhosted.org/packages/58/26/82663c79010b28eddf29dcdd0ea723439535fa917fce5905885c0e9ba562/pydantic-2.10.5-py3-none-any.whl", hash = "sha256:4dd4e322dbe55472cb7ca7e73f4b63574eecccf2835ffa2af9021ce113c83c53", size = 431426 },
         | 
| 882 | 
             
            ]
         | 
| 883 |  | 
| 884 | 
             
            [[package]]
         | 
|  | |
| 967 |  | 
| 968 | 
             
            [[package]]
         | 
| 969 | 
             
            name = "pygments"
         | 
| 970 | 
            +
            version = "2.19.1"
         | 
| 971 | 
             
            source = { registry = "https://pypi.org/simple" }
         | 
| 972 | 
            +
            sdist = { url = "https://files.pythonhosted.org/packages/7c/2d/c3338d48ea6cc0feb8446d8e6937e1408088a72a39937982cc6111d17f84/pygments-2.19.1.tar.gz", hash = "sha256:61c16d2a8576dc0649d9f39e089b5f02bcd27fba10d8fb4dcc28173f7a45151f", size = 4968581 }
         | 
| 973 | 
             
            wheels = [
         | 
| 974 | 
            +
                { url = "https://files.pythonhosted.org/packages/8a/0b/9fcc47d19c48b59121088dd6da2488a49d5f72dacf8262e2790a1d2c7d15/pygments-2.19.1-py3-none-any.whl", hash = "sha256:9ea1544ad55cecf4b8242fab6dd35a93bbce657034b0611ee383099054ab6d8c", size = 1225293 },
         | 
| 975 | 
             
            ]
         | 
| 976 |  | 
| 977 | 
             
            [[package]]
         | 
|  | |
| 1148 |  | 
| 1149 | 
             
            [[package]]
         | 
| 1150 | 
             
            name = "ruff"
         | 
| 1151 | 
            +
            version = "0.9.1"
         | 
| 1152 | 
            +
            source = { registry = "https://pypi.org/simple" }
         | 
| 1153 | 
            +
            sdist = { url = "https://files.pythonhosted.org/packages/67/3e/e89f736f01aa9517a97e2e7e0ce8d34a4d8207087b3cfdec95133fee13b5/ruff-0.9.1.tar.gz", hash = "sha256:fd2b25ecaf907d6458fa842675382c8597b3c746a2dde6717fe3415425df0c17", size = 3498844 }
         | 
| 1154 | 
            +
            wheels = [
         | 
| 1155 | 
            +
                { url = "https://files.pythonhosted.org/packages/dc/05/c3a2e0feb3d5d394cdfd552de01df9d3ec8a3a3771bbff247fab7e668653/ruff-0.9.1-py3-none-linux_armv6l.whl", hash = "sha256:84330dda7abcc270e6055551aca93fdde1b0685fc4fd358f26410f9349cf1743", size = 10645241 },
         | 
| 1156 | 
            +
                { url = "https://files.pythonhosted.org/packages/dd/da/59f0a40e5f88ee5c054ad175caaa2319fc96571e1d29ab4730728f2aad4f/ruff-0.9.1-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:3cae39ba5d137054b0e5b472aee3b78a7c884e61591b100aeb544bcd1fc38d4f", size = 10391066 },
         | 
| 1157 | 
            +
                { url = "https://files.pythonhosted.org/packages/b7/fe/85e1c1acf0ba04a3f2d54ae61073da030f7a5dc386194f96f3c6ca444a78/ruff-0.9.1-py3-none-macosx_11_0_arm64.whl", hash = "sha256:50c647ff96f4ba288db0ad87048257753733763b409b2faf2ea78b45c8bb7fcb", size = 10012308 },
         | 
| 1158 | 
            +
                { url = "https://files.pythonhosted.org/packages/6f/9b/780aa5d4bdca8dcea4309264b8faa304bac30e1ce0bcc910422bfcadd203/ruff-0.9.1-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f0c8b149e9c7353cace7d698e1656ffcf1e36e50f8ea3b5d5f7f87ff9986a7ca", size = 10881960 },
         | 
| 1159 | 
            +
                { url = "https://files.pythonhosted.org/packages/12/f4/dac4361afbfe520afa7186439e8094e4884ae3b15c8fc75fb2e759c1f267/ruff-0.9.1-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:beb3298604540c884d8b282fe7625651378e1986c25df51dec5b2f60cafc31ce", size = 10414803 },
         | 
| 1160 | 
            +
                { url = "https://files.pythonhosted.org/packages/f0/a2/057a3cb7999513cb78d6cb33a7d1cc6401c82d7332583786e4dad9e38e44/ruff-0.9.1-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:39d0174ccc45c439093971cc06ed3ac4dc545f5e8bdacf9f067adf879544d969", size = 11464929 },
         | 
| 1161 | 
            +
                { url = "https://files.pythonhosted.org/packages/eb/c6/1ccfcc209bee465ced4874dcfeaadc88aafcc1ea9c9f31ef66f063c187f0/ruff-0.9.1-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:69572926c0f0c9912288915214ca9b2809525ea263603370b9e00bed2ba56dbd", size = 12170717 },
         | 
| 1162 | 
            +
                { url = "https://files.pythonhosted.org/packages/84/97/4a524027518525c7cf6931e9fd3b2382be5e4b75b2b61bec02681a7685a5/ruff-0.9.1-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:937267afce0c9170d6d29f01fcd1f4378172dec6760a9f4dface48cdabf9610a", size = 11708921 },
         | 
| 1163 | 
            +
                { url = "https://files.pythonhosted.org/packages/a6/a4/4e77cf6065c700d5593b25fca6cf725b1ab6d70674904f876254d0112ed0/ruff-0.9.1-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:186c2313de946f2c22bdf5954b8dd083e124bcfb685732cfb0beae0c47233d9b", size = 13058074 },
         | 
| 1164 | 
            +
                { url = "https://files.pythonhosted.org/packages/f9/d6/fcb78e0531e863d0a952c4c5600cc5cd317437f0e5f031cd2288b117bb37/ruff-0.9.1-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3f94942a3bb767675d9a051867c036655fe9f6c8a491539156a6f7e6b5f31831", size = 11281093 },
         | 
| 1165 | 
            +
                { url = "https://files.pythonhosted.org/packages/e4/3b/7235bbeff00c95dc2d073cfdbf2b871b5bbf476754c5d277815d286b4328/ruff-0.9.1-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:728d791b769cc28c05f12c280f99e8896932e9833fef1dd8756a6af2261fd1ab", size = 10882610 },
         | 
| 1166 | 
            +
                { url = "https://files.pythonhosted.org/packages/2a/66/5599d23257c61cf038137f82999ca8f9d0080d9d5134440a461bef85b461/ruff-0.9.1-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:2f312c86fb40c5c02b44a29a750ee3b21002bd813b5233facdaf63a51d9a85e1", size = 10489273 },
         | 
| 1167 | 
            +
                { url = "https://files.pythonhosted.org/packages/78/85/de4aa057e2532db0f9761e2c2c13834991e087787b93e4aeb5f1cb10d2df/ruff-0.9.1-py3-none-musllinux_1_2_i686.whl", hash = "sha256:ae017c3a29bee341ba584f3823f805abbe5fe9cd97f87ed07ecbf533c4c88366", size = 11003314 },
         | 
| 1168 | 
            +
                { url = "https://files.pythonhosted.org/packages/00/42/afedcaa089116d81447347f76041ff46025849fedb0ed2b187d24cf70fca/ruff-0.9.1-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:5dc40a378a0e21b4cfe2b8a0f1812a6572fc7b230ef12cd9fac9161aa91d807f", size = 11342982 },
         | 
| 1169 | 
            +
                { url = "https://files.pythonhosted.org/packages/39/c6/fe45f3eb27e3948b41a305d8b768e949bf6a39310e9df73f6c576d7f1d9f/ruff-0.9.1-py3-none-win32.whl", hash = "sha256:46ebf5cc106cf7e7378ca3c28ce4293b61b449cd121b98699be727d40b79ba72", size = 8819750 },
         | 
| 1170 | 
            +
                { url = "https://files.pythonhosted.org/packages/38/8d/580db77c3b9d5c3d9479e55b0b832d279c30c8f00ab0190d4cd8fc67831c/ruff-0.9.1-py3-none-win_amd64.whl", hash = "sha256:342a824b46ddbcdddd3abfbb332fa7fcaac5488bf18073e841236aadf4ad5c19", size = 9701331 },
         | 
| 1171 | 
            +
                { url = "https://files.pythonhosted.org/packages/b2/94/0498cdb7316ed67a1928300dd87d659c933479f44dec51b4f62bfd1f8028/ruff-0.9.1-py3-none-win_arm64.whl", hash = "sha256:1cd76c7f9c679e6e8f2af8f778367dca82b95009bc7b1a85a47f1521ae524fa7", size = 9145708 },
         | 
| 1172 | 
             
            ]
         | 
| 1173 |  | 
| 1174 | 
             
            [[package]]
         | 
|  | |
| 1185 |  | 
| 1186 | 
             
            [[package]]
         | 
| 1187 | 
             
            name = "safetensors"
         | 
| 1188 | 
            +
            version = "0.5.2"
         | 
| 1189 | 
             
            source = { registry = "https://pypi.org/simple" }
         | 
| 1190 | 
            +
            sdist = { url = "https://files.pythonhosted.org/packages/f4/4f/2ef9ef1766f8c194b01b67a63a444d2e557c8fe1d82faf3ebd85f370a917/safetensors-0.5.2.tar.gz", hash = "sha256:cb4a8d98ba12fa016f4241932b1fc5e702e5143f5374bba0bbcf7ddc1c4cf2b8", size = 66957 }
         | 
| 1191 | 
             
            wheels = [
         | 
| 1192 | 
            +
                { url = "https://files.pythonhosted.org/packages/96/d1/017e31e75e274492a11a456a9e7c171f8f7911fe50735b4ec6ff37221220/safetensors-0.5.2-cp38-abi3-macosx_10_12_x86_64.whl", hash = "sha256:45b6092997ceb8aa3801693781a71a99909ab9cc776fbc3fa9322d29b1d3bef2", size = 427067 },
         | 
| 1193 | 
            +
                { url = "https://files.pythonhosted.org/packages/24/84/e9d3ff57ae50dd0028f301c9ee064e5087fe8b00e55696677a0413c377a7/safetensors-0.5.2-cp38-abi3-macosx_11_0_arm64.whl", hash = "sha256:6d0d6a8ee2215a440e1296b843edf44fd377b055ba350eaba74655a2fe2c4bae", size = 408856 },
         | 
| 1194 | 
            +
                { url = "https://files.pythonhosted.org/packages/f1/1d/fe95f5dd73db16757b11915e8a5106337663182d0381811c81993e0014a9/safetensors-0.5.2-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:86016d40bcaa3bcc9a56cd74d97e654b5f4f4abe42b038c71e4f00a089c4526c", size = 450088 },
         | 
| 1195 | 
            +
                { url = "https://files.pythonhosted.org/packages/cf/21/e527961b12d5ab528c6e47b92d5f57f33563c28a972750b238b871924e49/safetensors-0.5.2-cp38-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:990833f70a5f9c7d3fc82c94507f03179930ff7d00941c287f73b6fcbf67f19e", size = 458966 },
         | 
| 1196 | 
            +
                { url = "https://files.pythonhosted.org/packages/a5/8b/1a037d7a57f86837c0b41905040369aea7d8ca1ec4b2a77592372b2ec380/safetensors-0.5.2-cp38-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3dfa7c2f3fe55db34eba90c29df94bcdac4821043fc391cb5d082d9922013869", size = 509915 },
         | 
| 1197 | 
            +
                { url = "https://files.pythonhosted.org/packages/61/3d/03dd5cfd33839df0ee3f4581a20bd09c40246d169c0e4518f20b21d5f077/safetensors-0.5.2-cp38-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:46ff2116150ae70a4e9c490d2ab6b6e1b1b93f25e520e540abe1b81b48560c3a", size = 527664 },
         | 
| 1198 | 
            +
                { url = "https://files.pythonhosted.org/packages/c5/dc/8952caafa9a10a3c0f40fa86bacf3190ae7f55fa5eef87415b97b29cb97f/safetensors-0.5.2-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3ab696dfdc060caffb61dbe4066b86419107a24c804a4e373ba59be699ebd8d5", size = 461978 },
         | 
| 1199 | 
            +
                { url = "https://files.pythonhosted.org/packages/60/da/82de1fcf1194e3dbefd4faa92dc98b33c06bed5d67890e0962dd98e18287/safetensors-0.5.2-cp38-abi3-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:03c937100f38c9ff4c1507abea9928a6a9b02c9c1c9c3609ed4fb2bf413d4975", size = 491253 },
         | 
| 1200 | 
            +
                { url = "https://files.pythonhosted.org/packages/5a/9a/d90e273c25f90c3ba1b0196a972003786f04c39e302fbd6649325b1272bb/safetensors-0.5.2-cp38-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:a00e737948791b94dad83cf0eafc09a02c4d8c2171a239e8c8572fe04e25960e", size = 628644 },
         | 
| 1201 | 
            +
                { url = "https://files.pythonhosted.org/packages/70/3c/acb23e05aa34b4f5edd2e7f393f8e6480fbccd10601ab42cd03a57d4ab5f/safetensors-0.5.2-cp38-abi3-musllinux_1_2_armv7l.whl", hash = "sha256:d3a06fae62418ec8e5c635b61a8086032c9e281f16c63c3af46a6efbab33156f", size = 721648 },
         | 
| 1202 | 
            +
                { url = "https://files.pythonhosted.org/packages/71/45/eaa3dba5253a7c6931230dc961641455710ab231f8a89cb3c4c2af70f8c8/safetensors-0.5.2-cp38-abi3-musllinux_1_2_i686.whl", hash = "sha256:1506e4c2eda1431099cebe9abf6c76853e95d0b7a95addceaa74c6019c65d8cf", size = 659588 },
         | 
| 1203 | 
            +
                { url = "https://files.pythonhosted.org/packages/b0/71/2f9851164f821064d43b481ddbea0149c2d676c4f4e077b178e7eeaa6660/safetensors-0.5.2-cp38-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:5c5b5d9da594f638a259fca766046f44c97244cc7ab8bef161b3e80d04becc76", size = 632533 },
         | 
| 1204 | 
            +
                { url = "https://files.pythonhosted.org/packages/00/f1/5680e2ef61d9c61454fad82c344f0e40b8741a9dbd1e31484f0d31a9b1c3/safetensors-0.5.2-cp38-abi3-win32.whl", hash = "sha256:fe55c039d97090d1f85277d402954dd6ad27f63034fa81985a9cc59655ac3ee2", size = 291167 },
         | 
| 1205 | 
            +
                { url = "https://files.pythonhosted.org/packages/86/ca/aa489392ec6fb59223ffce825461e1f811a3affd417121a2088be7a5758b/safetensors-0.5.2-cp38-abi3-win_amd64.whl", hash = "sha256:78abdddd03a406646107f973c7843276e7b64e5e32623529dc17f3d94a20f589", size = 303756 },
         | 
| 1206 | 
             
            ]
         | 
| 1207 |  | 
| 1208 | 
             
            [[package]]
         | 
|  | |
| 1243 |  | 
| 1244 | 
             
            [[package]]
         | 
| 1245 | 
             
            name = "spaces"
         | 
| 1246 | 
            +
            version = "0.32.0"
         | 
| 1247 | 
             
            source = { registry = "https://pypi.org/simple" }
         | 
| 1248 | 
             
            dependencies = [
         | 
| 1249 | 
             
                { name = "gradio" },
         | 
|  | |
| 1254 | 
             
                { name = "requests" },
         | 
| 1255 | 
             
                { name = "typing-extensions" },
         | 
| 1256 | 
             
            ]
         | 
| 1257 | 
            +
            sdist = { url = "https://files.pythonhosted.org/packages/21/ae/4596612a45812600fc20defc4f50f17a02244b5bec9311bdf3cef79737c7/spaces-0.32.0.tar.gz", hash = "sha256:4e340a8c7a291a822cb3727466729b57924ee0315117d8833fdd3ef3e227cb2d", size = 22912 }
         | 
| 1258 | 
             
            wheels = [
         | 
| 1259 | 
            +
                { url = "https://files.pythonhosted.org/packages/03/53/31eeabf41685dd814e78779d43ba4fda12eb9a8007f94efaffae43fb3cbc/spaces-0.32.0-py3-none-any.whl", hash = "sha256:928f3c3efeb792b55a51204478f48d9e6c5613e47e680b344a71226acb760e43", size = 29591 },
         | 
| 1260 | 
             
            ]
         | 
| 1261 |  | 
| 1262 | 
             
            [[package]]
         | 
|  | |
| 1370 |  | 
| 1371 | 
             
            [[package]]
         | 
| 1372 | 
             
            name = "transformers"
         | 
| 1373 | 
            +
            version = "4.48.0"
         | 
| 1374 | 
             
            source = { registry = "https://pypi.org/simple" }
         | 
| 1375 | 
             
            dependencies = [
         | 
| 1376 | 
             
                { name = "filelock" },
         | 
|  | |
| 1384 | 
             
                { name = "tokenizers" },
         | 
| 1385 | 
             
                { name = "tqdm" },
         | 
| 1386 | 
             
            ]
         | 
| 1387 | 
            +
            sdist = { url = "https://files.pythonhosted.org/packages/ea/71/93a6331682d6f15adf7d646956db0c43e5f1759bbbd05f2ef53029bae107/transformers-4.48.0.tar.gz", hash = "sha256:03fdfcbfb8b0367fb6c9fbe9d1c9aa54dfd847618be9b52400b2811d22799cb1", size = 8372101 }
         | 
| 1388 | 
             
            wheels = [
         | 
| 1389 | 
            +
                { url = "https://files.pythonhosted.org/packages/45/d6/a69764e89fc5c2c957aa473881527c8c35521108d553df703e9ba703daeb/transformers-4.48.0-py3-none-any.whl", hash = "sha256:6d3de6d71cb5f2a10f9775ccc17abce9620195caaf32ec96542bd2a6937f25b0", size = 9673380 },
         | 
| 1390 | 
             
            ]
         | 
| 1391 |  | 
| 1392 | 
             
            [[package]]
         | 
|  | |
| 1394 | 
             
            version = "3.0.0"
         | 
| 1395 | 
             
            source = { registry = "https://pypi.org/simple" }
         | 
| 1396 | 
             
            dependencies = [
         | 
| 1397 | 
            +
                { name = "filelock" },
         | 
| 1398 | 
             
            ]
         | 
| 1399 | 
             
            wheels = [
         | 
| 1400 | 
             
                { url = "https://files.pythonhosted.org/packages/45/27/14cc3101409b9b4b9241d2ba7deaa93535a217a211c86c4cc7151fb12181/triton-3.0.0-1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:e1efef76935b2febc365bfadf74bcb65a6f959a9872e5bddf44cc9e0adce1e1a", size = 209376304 },
         | 
 
			
