Spaces:
Sleeping
Sleeping
File size: 62,429 Bytes
b0ed2e6 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 |
version: 6
environments:
default:
channels:
- url: https://conda.modular.com/max-nightly/
- url: https://conda.modular.com/max/
- url: https://repo.prefix.dev/modular-community/
- url: https://conda.anaconda.org/conda-forge/
indexes:
- https://pypi.org/simple
packages:
linux-64:
- conda: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2025.4.26-hbd8a1cb_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.43-h712a8e2_4.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.7.0-h5888daf_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.6-h2dba641_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-14.2.0-h767d61c_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-14.2.0-h69a702a_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgomp-14.2.0-h767d61c_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/liblzma-5.8.1-hb9d3cd8_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libmpdec-4.0.0-h4bc722e_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.49.1-hee588c1_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-h2d0b736_3.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.5.0-h7b32b05_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.13.3-hf636f53_101_cp313.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/python_abi-3.13-7_cp313.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8c095d6_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda
- pypi: https://files.pythonhosted.org/packages/a5/45/30bb92d442636f570cb5651bc661f52b610e2eec3f891a5dc3a4c3667db0/aiofiles-24.1.0-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/78/b6/6307fbef88d9b5ee7421e68d78a9f162e0da4900bc5f5793f6d3d0e34fb8/annotated_types-0.7.0-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/a1/ee/48ca1a7c89ffec8b6a0c5d02b89c305671d5ffd8d3c94acf8b8c408575bb/anyio-4.9.0-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/7a/1d/54f4c58bae8dc8c64a75071c7e98e105ddaca35449376fcb0180f6e3c9df/audioop_lts-0.2.1-cp313-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- pypi: https://files.pythonhosted.org/packages/50/cd/30110dc0ffcf3b131156077b90e9f60ed75711223f306da4db08eff8403b/beautifulsoup4-4.13.4-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/4a/7e/3db2bd1b1f9e95f7cddca6d6e75e2f2bd9f51b1246e546d88addca0106bd/certifi-2025.4.26-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/52/ed/b7f4f07de100bdb95c1756d3a4d17b90c1a3c53715c1a476f8738058e0fa/charset_normalizer-3.4.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- pypi: https://files.pythonhosted.org/packages/7e/d4/7ebdbd03970677812aac39c869717059dbb71a4cfc033ca6e5221787892c/click-8.1.8-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/83/a2/66adca41164860dee6d2d47b506fef3262c8879aab727b687c798d67313f/duckduckgo_search-8.0.1-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/50/b3/b51f09c2ba432a576fe63758bddc81f78f0c6309d9e5c10d194313bf021e/fastapi-0.115.12-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/53/5d/65f40bd333463b3230b3a72d93873caaf49b0cbb5228598fafb75fcc5357/ffmpy-0.5.0-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/4d/36/2a115987e2d8c300a974597416d9de88f2444426de9571f4b59b2cca3acc/filelock-3.18.0-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/44/4b/e0cfc1a6f17e990f3e64b7d941ddc4acdc7b19d6edd51abf495f32b1a9e4/fsspec-2025.3.2-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/c2/81/c02b50e8cf0e82a1ec284ee413f377fb755d93fdc9e9d3eba2400c321117/gradio-5.27.1-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/7f/8a/46f40c96306abf6c9be48ac826425711a9b005fbc8cd6edc1661fd5d85ac/gradio_client-1.9.1-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/28/27/3d6dcadc8a3214d8522c1e7f6a19554e33659be44546d44a2f7572ac7d2a/groovy-0.1.2-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/04/4b/29cac41a4d98d144bf5f6d33995617b185d14b22401f75ca86f384e87ff1/h11-0.16.0-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/7e/f5/f66802a942d491edb555dd61e3a9961140fd64c90bce1eafd741609d334d/httpcore-1.0.9-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/2a/39/e50c7c3a983047577ee07d2a9e53faf5a69493943ec3f6a384bdc792deb2/httpx-0.28.1-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/93/27/1fb384a841e9661faad1c31cbfa62864f59632e876df5d795234da51c395/huggingface_hub-0.30.2-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/76/c6/c88e154df9c4e1a2a66ccf0005a88dfb2650c1dffb6f5ce603dfbd452ce3/idna-3.10-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/62/a1/3d680cbfd5f4b8f15abc1d571870c5fc3e594bb582bc3b64ea099db13e56/jinja2-3.1.6-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/2f/04/6ef935dc74e729932e39478e44d8cfe6a83550552eaa072b7c05f6f22488/lxml-5.4.0-cp313-cp313-manylinux_2_28_x86_64.whl
- pypi: https://files.pythonhosted.org/packages/42/d7/1ec15b46af6af88f19b8e5ffea08fa375d433c998b8a7639e76935c14f1f/markdown_it_py-3.0.0-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/64/11/b751af7ad41b254a802cf52f7bc1fca7cabe2388132f2ce60a1a6b9b9622/markdownify-1.1.0-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/0c/91/96cf928db8236f1bfab6ce15ad070dfdd02ed88261c2afafd4b43575e9e9/MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- pypi: https://files.pythonhosted.org/packages/b3/38/89ba8ad64ae25be8de66a6d463314cf1eb366222074cfda9ee839c56a4b4/mdurl-0.1.2-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/aa/fc/ebfd32c3e124e6a1043e19c0ab0769818aa69050ce5589b63d05ff185526/numpy-2.2.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- pypi: https://files.pythonhosted.org/packages/d1/d0/e9e38aff63e1d7bbcb818e6f8d4df1056b7f8aeb3b660370e0d41dbc394c/orjson-3.10.17-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- pypi: https://files.pythonhosted.org/packages/20/12/38679034af332785aac8774540895e234f4d07f7545804097de4b666afd8/packaging-25.0-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/e8/31/aa8da88ca0eadbabd0a639788a6da13bb2ff6edbbb9f29aa786450a30a91/pandas-2.2.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- pypi: https://files.pythonhosted.org/packages/13/eb/2552ecebc0b887f539111c2cd241f538b8ff5891b8903dfe672e997529be/pillow-11.2.1-cp313-cp313-manylinux_2_28_x86_64.whl
- pypi: https://files.pythonhosted.org/packages/c3/7b/cbd5d999a07ff2a21465975d4eb477ae6f69765e8fe8c9087dab250180d8/primp-0.15.0-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- pypi: https://files.pythonhosted.org/packages/e7/12/46b65f3534d099349e38ef6ec98b1a5a81f42536d17e0ba382c28c67ba67/pydantic-2.11.4-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/eb/3c/f4abd740877a35abade05e437245b192f9d0ffb48bbbbd708df33d3cda37/pydantic_core-2.33.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- pypi: https://files.pythonhosted.org/packages/a6/53/d78dc063216e62fc55f6b2eebb447f6a4b0a59f55c8406376f76bf959b08/pydub-0.25.1-py2.py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/8a/0b/9fcc47d19c48b59121088dd6da2488a49d5f72dacf8262e2790a1d2c7d15/pygments-2.19.1-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/ec/57/56b9bcc3c9c6a792fcbaf139543cee77261f3651ca9da0c93f5c1221264b/python_dateutil-2.9.0.post0-py2.py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/1e/18/98a99ad95133c6a6e2005fe89faedf294a748bd5dc803008059409ac9b1e/python_dotenv-1.1.0-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/45/58/38b5afbc1a800eeea951b9285d3912613f2603bdf897a4ab0f4bd7f405fc/python_multipart-0.0.20-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/81/c4/34e93fe5f5429d7570ec1fa436f1986fb1f00c3e0f43a589fe2bbcd22c3f/pytz-2025.2-py2.py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/04/24/b7721e4845c2f162d26f50521b825fb061bc0a5afcf9a386840f23ea19fa/PyYAML-6.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- pypi: https://files.pythonhosted.org/packages/f9/9b/335f9764261e915ed497fcdeb11df5dfd6f7bf257d4a6a2a686d80da4d54/requests-2.32.3-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/0d/9b/63f4c7ebc259242c89b3acafdb37b41d1185c07ff0011164674e9076b491/rich-14.0.0-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/0e/2c/1e364cc92970075d7d04c69c928430b23e43a433f044474f57e425cbed37/ruff-0.11.7-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- pypi: https://files.pythonhosted.org/packages/4d/c0/1108ad9f01567f66b3154063605b350b69c3c9366732e09e45f9fd0d1deb/safehttpx-0.1.6-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/6a/23/8146aad7d88f4fcb3a6218f41a60f6c2d4e3a72de72da1825dc7c8f7877c/semantic_version-2.10.0-py2.py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/e0/f9/0595336914c5619e5f28a1fb793285925a8cd4b432c9da0a987836c7f822/shellingham-1.5.4-py2.py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/b7/ce/149a00dd41f10bc29e5921b496af8b574d8413afcd5e30dfa0ed46c2cc5e/six-1.17.0-py2.py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/2f/ce/dedad549d2b37e73d14c56aef25bd42a5f87fdb8e97bf2a78cac5aac8287/smolagents-1.14.0-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/e9/44/75a9c9421471a6c4805dbf2356f7c181a29c1879239abab1ea2cc8f38b40/sniffio-1.3.1-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/e7/9c/0e6afc12c269578be5c0c1c9f4b49a8d32770a080260c333ac04cc1c832d/soupsieve-2.7-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/8b/0c/9d30a4ebeb6db2b25a841afbb80f6ef9a854fc3b41be131d249a977b4959/starlette-0.46.2-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/f9/b6/a447b5e4ec71e13871be01ba81f5dfc9d0af7e473da256ff46bc0e24026f/tomlkit-0.13.2-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/d0/30/dc54f88dd4a2b5dc8a0279bdd7270e735851848b762aeb1c1184ed1f6b14/tqdm-4.67.1-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/48/20/9d953de6f4367163d23ec823200eb3ecb0050a2609691e512c8b95827a9b/typer-0.15.3-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/8b/54/b1ae86c0973cc6f0210b53d508ca3641fb6d0c56823f288d108bc7ab3cc8/typing_extensions-4.13.2-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/31/08/aa4fdfb71f7de5176385bd9e90852eaf6b5d622735020ad600f2bab54385/typing_inspection-0.4.0-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/5c/23/c7abc0ca0a1526a0774eca151daeb8de62ec457e77262b66b359c3c7679e/tzdata-2025.2-py2.py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/6b/11/cc635220681e93a0183390e26485430ca2c7b5f9d33b15c74c2861cb8091/urllib3-2.4.0-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/b1/4b/4cef6ce21a2aaca9d852a6e84ef4f135d99fcd74fa75105e2fc0c8308acd/uvicorn-0.34.2-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/ff/b2/83a6ddf56cdcbad4e3d841fcc55d6ba7d19aeb89c50f24dd7e859ec0805f/websockets-15.0.1-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- pypi: .
packages:
- conda: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2
sha256: fe51de6107f9edc7aa4f786a70f4a883943bc9d39b3bb7307c04c41410990726
md5: d7c89558ba9fa0495403155b64376d81
license: None
purls: []
size: 2562
timestamp: 1578324546067
- conda: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2
build_number: 16
sha256: fbe2c5e56a653bebb982eda4876a9178aedfc2b545f25d0ce9c4c0b508253d22
md5: 73aaf86a425cc6e73fcf236a5a46396d
depends:
- _libgcc_mutex 0.1 conda_forge
- libgomp >=7.5.0
constrains:
- openmp_impl 9999
license: BSD-3-Clause
license_family: BSD
purls: []
size: 23621
timestamp: 1650670423406
- pypi: https://files.pythonhosted.org/packages/a5/45/30bb92d442636f570cb5651bc661f52b610e2eec3f891a5dc3a4c3667db0/aiofiles-24.1.0-py3-none-any.whl
name: aiofiles
version: 24.1.0
sha256: b4ec55f4195e3eb5d7abd1bf7e061763e864dd4954231fb8539a0ef8bb8260e5
requires_python: '>=3.8'
- pypi: https://files.pythonhosted.org/packages/78/b6/6307fbef88d9b5ee7421e68d78a9f162e0da4900bc5f5793f6d3d0e34fb8/annotated_types-0.7.0-py3-none-any.whl
name: annotated-types
version: 0.7.0
sha256: 1f02e8b43a8fbbc3f3e0d4f0f4bfc8131bcb4eebe8849b8e5c773f3a1c582a53
requires_dist:
- typing-extensions>=4.0.0 ; python_full_version < '3.9'
requires_python: '>=3.8'
- pypi: https://files.pythonhosted.org/packages/a1/ee/48ca1a7c89ffec8b6a0c5d02b89c305671d5ffd8d3c94acf8b8c408575bb/anyio-4.9.0-py3-none-any.whl
name: anyio
version: 4.9.0
sha256: 9f76d541cad6e36af7beb62e978876f3b41e3e04f2c1fbf0884604c0a9c4d93c
requires_dist:
- exceptiongroup>=1.0.2 ; python_full_version < '3.11'
- idna>=2.8
- sniffio>=1.1
- typing-extensions>=4.5 ; python_full_version < '3.13'
- trio>=0.26.1 ; extra == 'trio'
- anyio[trio] ; extra == 'test'
- blockbuster>=1.5.23 ; extra == 'test'
- coverage[toml]>=7 ; extra == 'test'
- exceptiongroup>=1.2.0 ; extra == 'test'
- hypothesis>=4.0 ; extra == 'test'
- psutil>=5.9 ; extra == 'test'
- pytest>=7.0 ; extra == 'test'
- trustme ; extra == 'test'
- truststore>=0.9.1 ; python_full_version >= '3.10' and extra == 'test'
- uvloop>=0.21 ; python_full_version < '3.14' and platform_python_implementation == 'CPython' and sys_platform != 'win32' and extra == 'test'
- packaging ; extra == 'doc'
- sphinx~=8.2 ; extra == 'doc'
- sphinx-rtd-theme ; extra == 'doc'
- sphinx-autodoc-typehints>=1.2.0 ; extra == 'doc'
requires_python: '>=3.9'
- pypi: https://files.pythonhosted.org/packages/7a/1d/54f4c58bae8dc8c64a75071c7e98e105ddaca35449376fcb0180f6e3c9df/audioop_lts-0.2.1-cp313-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
name: audioop-lts
version: 0.2.1
sha256: c589f06407e8340e81962575fcffbba1e92671879a221186c3d4662de9fe804e
requires_python: '>=3.13'
- pypi: https://files.pythonhosted.org/packages/50/cd/30110dc0ffcf3b131156077b90e9f60ed75711223f306da4db08eff8403b/beautifulsoup4-4.13.4-py3-none-any.whl
name: beautifulsoup4
version: 4.13.4
sha256: 9bbbb14bfde9d79f38b8cd5f8c7c85f4b8f2523190ebed90e950a8dea4cb1c4b
requires_dist:
- soupsieve>1.2
- typing-extensions>=4.0.0
- cchardet ; extra == 'cchardet'
- chardet ; extra == 'chardet'
- charset-normalizer ; extra == 'charset-normalizer'
- html5lib ; extra == 'html5lib'
- lxml ; extra == 'lxml'
requires_python: '>=3.7.0'
- conda: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda
sha256: 5ced96500d945fb286c9c838e54fa759aa04a7129c59800f0846b4335cee770d
md5: 62ee74e96c5ebb0af99386de58cf9553
depends:
- __glibc >=2.17,<3.0.a0
- libgcc-ng >=12
license: bzip2-1.0.6
license_family: BSD
purls: []
size: 252783
timestamp: 1720974456583
- conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2025.4.26-hbd8a1cb_0.conda
sha256: 2a70ed95ace8a3f8a29e6cd1476a943df294a7111dfb3e152e3478c4c889b7ac
md5: 95db94f75ba080a22eb623590993167b
depends:
- __unix
license: ISC
purls: []
size: 152283
timestamp: 1745653616541
- pypi: https://files.pythonhosted.org/packages/4a/7e/3db2bd1b1f9e95f7cddca6d6e75e2f2bd9f51b1246e546d88addca0106bd/certifi-2025.4.26-py3-none-any.whl
name: certifi
version: 2025.4.26
sha256: 30350364dfe371162649852c63336a15c70c6510c2ad5015b21c2345311805f3
requires_python: '>=3.6'
- pypi: https://files.pythonhosted.org/packages/52/ed/b7f4f07de100bdb95c1756d3a4d17b90c1a3c53715c1a476f8738058e0fa/charset_normalizer-3.4.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
name: charset-normalizer
version: 3.4.1
sha256: 955f8851919303c92343d2f66165294848d57e9bba6cf6e3625485a70a038d11
requires_python: '>=3.7'
- pypi: https://files.pythonhosted.org/packages/7e/d4/7ebdbd03970677812aac39c869717059dbb71a4cfc033ca6e5221787892c/click-8.1.8-py3-none-any.whl
name: click
version: 8.1.8
sha256: 63c132bbbed01578a06712a2d1f497bb62d9c1c0d329b7903a866228027263b2
requires_dist:
- colorama ; sys_platform == 'win32'
- importlib-metadata ; python_full_version < '3.8'
requires_python: '>=3.7'
- pypi: https://files.pythonhosted.org/packages/83/a2/66adca41164860dee6d2d47b506fef3262c8879aab727b687c798d67313f/duckduckgo_search-8.0.1-py3-none-any.whl
name: duckduckgo-search
version: 8.0.1
sha256: 87ea18d9abb1cd5dc8f63fc70ac867996acce2cb5e0129d191b9491c202420be
requires_dist:
- click>=8.1.8
- primp>=0.15.0
- lxml>=5.3.0
- mypy>=1.14.1 ; extra == 'dev'
- pytest>=8.3.4 ; extra == 'dev'
- pytest-dependency>=0.6.0 ; extra == 'dev'
- ruff>=0.9.2 ; extra == 'dev'
requires_python: '>=3.9'
- pypi: https://files.pythonhosted.org/packages/50/b3/b51f09c2ba432a576fe63758bddc81f78f0c6309d9e5c10d194313bf021e/fastapi-0.115.12-py3-none-any.whl
name: fastapi
version: 0.115.12
sha256: e94613d6c05e27be7ffebdd6ea5f388112e5e430c8f7d6494a9d1d88d43e814d
requires_dist:
- starlette>=0.40.0,<0.47.0
- pydantic>=1.7.4,!=1.8,!=1.8.1,!=2.0.0,!=2.0.1,!=2.1.0,<3.0.0
- typing-extensions>=4.8.0
- fastapi-cli[standard]>=0.0.5 ; extra == 'standard'
- httpx>=0.23.0 ; extra == 'standard'
- jinja2>=3.1.5 ; extra == 'standard'
- python-multipart>=0.0.18 ; extra == 'standard'
- email-validator>=2.0.0 ; extra == 'standard'
- uvicorn[standard]>=0.12.0 ; extra == 'standard'
- fastapi-cli[standard]>=0.0.5 ; extra == 'all'
- httpx>=0.23.0 ; extra == 'all'
- jinja2>=3.1.5 ; extra == 'all'
- python-multipart>=0.0.18 ; extra == 'all'
- itsdangerous>=1.1.0 ; extra == 'all'
- pyyaml>=5.3.1 ; extra == 'all'
- ujson>=4.0.1,!=4.0.2,!=4.1.0,!=4.2.0,!=4.3.0,!=5.0.0,!=5.1.0 ; extra == 'all'
- orjson>=3.2.1 ; extra == 'all'
- email-validator>=2.0.0 ; extra == 'all'
- uvicorn[standard]>=0.12.0 ; extra == 'all'
- pydantic-settings>=2.0.0 ; extra == 'all'
- pydantic-extra-types>=2.0.0 ; extra == 'all'
requires_python: '>=3.8'
- pypi: https://files.pythonhosted.org/packages/53/5d/65f40bd333463b3230b3a72d93873caaf49b0cbb5228598fafb75fcc5357/ffmpy-0.5.0-py3-none-any.whl
name: ffmpy
version: 0.5.0
sha256: df3799cf5816daa56d4959a023630ee53c6768b66009dae6d131519ba4b80233
requires_python: '>=3.8,<4.0'
- pypi: https://files.pythonhosted.org/packages/4d/36/2a115987e2d8c300a974597416d9de88f2444426de9571f4b59b2cca3acc/filelock-3.18.0-py3-none-any.whl
name: filelock
version: 3.18.0
sha256: c401f4f8377c4464e6db25fff06205fd89bdd83b65eb0488ed1b160f780e21de
requires_dist:
- furo>=2024.8.6 ; extra == 'docs'
- sphinx-autodoc-typehints>=3 ; extra == 'docs'
- sphinx>=8.1.3 ; extra == 'docs'
- covdefaults>=2.3 ; extra == 'testing'
- coverage>=7.6.10 ; extra == 'testing'
- diff-cover>=9.2.1 ; extra == 'testing'
- pytest-asyncio>=0.25.2 ; extra == 'testing'
- pytest-cov>=6 ; extra == 'testing'
- pytest-mock>=3.14 ; extra == 'testing'
- pytest-timeout>=2.3.1 ; extra == 'testing'
- pytest>=8.3.4 ; extra == 'testing'
- virtualenv>=20.28.1 ; extra == 'testing'
- typing-extensions>=4.12.2 ; python_full_version < '3.11' and extra == 'typing'
requires_python: '>=3.9'
- pypi: .
name: final-assignment-template
version: 0.1.0
sha256: a05c68e03552cf851f097ff5f9e3403a789313efb75704b90c26bf2d87409030
requires_dist:
- smolagents>=1.14.0,<2
- gradio>=5.27.1,<6
- requests>=2.32.3,<3
- httpx>=0.28.1,<0.29
- beautifulsoup4>=4.13.4,<5
requires_python: '>=3.11'
editable: true
- pypi: https://files.pythonhosted.org/packages/44/4b/e0cfc1a6f17e990f3e64b7d941ddc4acdc7b19d6edd51abf495f32b1a9e4/fsspec-2025.3.2-py3-none-any.whl
name: fsspec
version: 2025.3.2
sha256: 2daf8dc3d1dfa65b6aa37748d112773a7a08416f6c70d96b264c96476ecaf711
requires_dist:
- adlfs ; extra == 'abfs'
- adlfs ; extra == 'adl'
- pyarrow>=1 ; extra == 'arrow'
- dask ; extra == 'dask'
- distributed ; extra == 'dask'
- pre-commit ; extra == 'dev'
- ruff ; extra == 'dev'
- numpydoc ; extra == 'doc'
- sphinx ; extra == 'doc'
- sphinx-design ; extra == 'doc'
- sphinx-rtd-theme ; extra == 'doc'
- yarl ; extra == 'doc'
- dropbox ; extra == 'dropbox'
- dropboxdrivefs ; extra == 'dropbox'
- requests ; extra == 'dropbox'
- adlfs ; extra == 'full'
- aiohttp!=4.0.0a0,!=4.0.0a1 ; extra == 'full'
- dask ; extra == 'full'
- distributed ; extra == 'full'
- dropbox ; extra == 'full'
- dropboxdrivefs ; extra == 'full'
- fusepy ; extra == 'full'
- gcsfs ; extra == 'full'
- libarchive-c ; extra == 'full'
- ocifs ; extra == 'full'
- panel ; extra == 'full'
- paramiko ; extra == 'full'
- pyarrow>=1 ; extra == 'full'
- pygit2 ; extra == 'full'
- requests ; extra == 'full'
- s3fs ; extra == 'full'
- smbprotocol ; extra == 'full'
- tqdm ; extra == 'full'
- fusepy ; extra == 'fuse'
- gcsfs ; extra == 'gcs'
- pygit2 ; extra == 'git'
- requests ; extra == 'github'
- gcsfs ; extra == 'gs'
- panel ; extra == 'gui'
- pyarrow>=1 ; extra == 'hdfs'
- aiohttp!=4.0.0a0,!=4.0.0a1 ; extra == 'http'
- libarchive-c ; extra == 'libarchive'
- ocifs ; extra == 'oci'
- s3fs ; extra == 's3'
- paramiko ; extra == 'sftp'
- smbprotocol ; extra == 'smb'
- paramiko ; extra == 'ssh'
- aiohttp!=4.0.0a0,!=4.0.0a1 ; extra == 'test'
- numpy ; extra == 'test'
- pytest ; extra == 'test'
- pytest-asyncio!=0.22.0 ; extra == 'test'
- pytest-benchmark ; extra == 'test'
- pytest-cov ; extra == 'test'
- pytest-mock ; extra == 'test'
- pytest-recording ; extra == 'test'
- pytest-rerunfailures ; extra == 'test'
- requests ; extra == 'test'
- aiobotocore>=2.5.4,<3.0.0 ; extra == 'test-downstream'
- dask[dataframe,test] ; extra == 'test-downstream'
- moto[server]>4,<5 ; extra == 'test-downstream'
- pytest-timeout ; extra == 'test-downstream'
- xarray ; extra == 'test-downstream'
- adlfs ; extra == 'test-full'
- aiohttp!=4.0.0a0,!=4.0.0a1 ; extra == 'test-full'
- cloudpickle ; extra == 'test-full'
- dask ; extra == 'test-full'
- distributed ; extra == 'test-full'
- dropbox ; extra == 'test-full'
- dropboxdrivefs ; extra == 'test-full'
- fastparquet ; extra == 'test-full'
- fusepy ; extra == 'test-full'
- gcsfs ; extra == 'test-full'
- jinja2 ; extra == 'test-full'
- kerchunk ; extra == 'test-full'
- libarchive-c ; extra == 'test-full'
- lz4 ; extra == 'test-full'
- notebook ; extra == 'test-full'
- numpy ; extra == 'test-full'
- ocifs ; extra == 'test-full'
- pandas ; extra == 'test-full'
- panel ; extra == 'test-full'
- paramiko ; extra == 'test-full'
- pyarrow ; extra == 'test-full'
- pyarrow>=1 ; extra == 'test-full'
- pyftpdlib ; extra == 'test-full'
- pygit2 ; extra == 'test-full'
- pytest ; extra == 'test-full'
- pytest-asyncio!=0.22.0 ; extra == 'test-full'
- pytest-benchmark ; extra == 'test-full'
- pytest-cov ; extra == 'test-full'
- pytest-mock ; extra == 'test-full'
- pytest-recording ; extra == 'test-full'
- pytest-rerunfailures ; extra == 'test-full'
- python-snappy ; extra == 'test-full'
- requests ; extra == 'test-full'
- smbprotocol ; extra == 'test-full'
- tqdm ; extra == 'test-full'
- urllib3 ; extra == 'test-full'
- zarr ; extra == 'test-full'
- zstandard ; extra == 'test-full'
- tqdm ; extra == 'tqdm'
requires_python: '>=3.9'
- pypi: https://files.pythonhosted.org/packages/c2/81/c02b50e8cf0e82a1ec284ee413f377fb755d93fdc9e9d3eba2400c321117/gradio-5.27.1-py3-none-any.whl
name: gradio
version: 5.27.1
sha256: b13c621a445e7d3fe688e7ecf0481329c309eaac59c842cb598420bdf4188a0e
requires_dist:
- aiofiles>=22.0,<25.0
- anyio>=3.0,<5.0
- audioop-lts<1.0 ; python_full_version >= '3.13'
- fastapi>=0.115.2,<1.0
- ffmpy
- gradio-client==1.9.1
- groovy~=0.1
- httpx>=0.24.1
- huggingface-hub>=0.28.1
- jinja2<4.0
- markupsafe>=2.0,<4.0
- numpy>=1.0,<3.0
- orjson~=3.0
- packaging
- pandas>=1.0,<3.0
- pillow>=8.0,<12.0
- pydantic>=2.0,<2.12
- pydub
- python-multipart>=0.0.18
- pyyaml>=5.0,<7.0
- ruff>=0.9.3 ; sys_platform != 'emscripten'
- safehttpx>=0.1.6,<0.2.0
- semantic-version~=2.0
- starlette>=0.40.0,<1.0 ; sys_platform != 'emscripten'
- tomlkit>=0.12.0,<0.14.0
- typer>=0.12,<1.0 ; sys_platform != 'emscripten'
- typing-extensions~=4.0
- urllib3~=2.0 ; sys_platform == 'emscripten'
- uvicorn>=0.14.0 ; sys_platform != 'emscripten'
- authlib ; extra == 'oauth'
- itsdangerous ; extra == 'oauth'
requires_python: '>=3.10'
- pypi: https://files.pythonhosted.org/packages/7f/8a/46f40c96306abf6c9be48ac826425711a9b005fbc8cd6edc1661fd5d85ac/gradio_client-1.9.1-py3-none-any.whl
name: gradio-client
version: 1.9.1
sha256: 1db4ccc5777f987c5c4e4b5b13d67ebe1f4514de526fbf9619abe69c55aeac8a
requires_dist:
- fsspec
- httpx>=0.24.1
- huggingface-hub>=0.19.3
- packaging
- typing-extensions~=4.0
- websockets>=10.0,<16.0
requires_python: '>=3.10'
- pypi: https://files.pythonhosted.org/packages/28/27/3d6dcadc8a3214d8522c1e7f6a19554e33659be44546d44a2f7572ac7d2a/groovy-0.1.2-py3-none-any.whl
name: groovy
version: 0.1.2
sha256: 7f7975bab18c729a257a8b1ae9dcd70b7cafb1720481beae47719af57c35fa64
requires_dist:
- pytest ; extra == 'dev'
- ruff==0.9.3 ; extra == 'dev'
requires_python: '>3.9'
- pypi: https://files.pythonhosted.org/packages/04/4b/29cac41a4d98d144bf5f6d33995617b185d14b22401f75ca86f384e87ff1/h11-0.16.0-py3-none-any.whl
name: h11
version: 0.16.0
sha256: 63cf8bbe7522de3bf65932fda1d9c2772064ffb3dae62d55932da54b31cb6c86
requires_python: '>=3.8'
- pypi: https://files.pythonhosted.org/packages/7e/f5/f66802a942d491edb555dd61e3a9961140fd64c90bce1eafd741609d334d/httpcore-1.0.9-py3-none-any.whl
name: httpcore
version: 1.0.9
sha256: 2d400746a40668fc9dec9810239072b40b4484b640a8c38fd654a024c7a1bf55
requires_dist:
- certifi
- h11>=0.16
- anyio>=4.0,<5.0 ; extra == 'asyncio'
- h2>=3,<5 ; extra == 'http2'
- socksio==1.* ; extra == 'socks'
- trio>=0.22.0,<1.0 ; extra == 'trio'
requires_python: '>=3.8'
- pypi: https://files.pythonhosted.org/packages/2a/39/e50c7c3a983047577ee07d2a9e53faf5a69493943ec3f6a384bdc792deb2/httpx-0.28.1-py3-none-any.whl
name: httpx
version: 0.28.1
sha256: d909fcccc110f8c7faf814ca82a9a4d816bc5a6dbfea25d6591d6985b8ba59ad
requires_dist:
- anyio
- certifi
- httpcore==1.*
- idna
- brotli ; platform_python_implementation == 'CPython' and extra == 'brotli'
- brotlicffi ; platform_python_implementation != 'CPython' and extra == 'brotli'
- click==8.* ; extra == 'cli'
- pygments==2.* ; extra == 'cli'
- rich>=10,<14 ; extra == 'cli'
- h2>=3,<5 ; extra == 'http2'
- socksio==1.* ; extra == 'socks'
- zstandard>=0.18.0 ; extra == 'zstd'
requires_python: '>=3.8'
- pypi: https://files.pythonhosted.org/packages/93/27/1fb384a841e9661faad1c31cbfa62864f59632e876df5d795234da51c395/huggingface_hub-0.30.2-py3-none-any.whl
name: huggingface-hub
version: 0.30.2
sha256: 68ff05969927058cfa41df4f2155d4bb48f5f54f719dd0390103eefa9b191e28
requires_dist:
- filelock
- fsspec>=2023.5.0
- packaging>=20.9
- pyyaml>=5.1
- requests
- tqdm>=4.42.1
- typing-extensions>=3.7.4.3
- inquirerpy==0.3.4 ; extra == 'all'
- aiohttp ; extra == 'all'
- jedi ; extra == 'all'
- jinja2 ; extra == 'all'
- pytest>=8.1.1,<8.2.2 ; extra == 'all'
- pytest-cov ; extra == 'all'
- pytest-env ; extra == 'all'
- pytest-xdist ; extra == 'all'
- pytest-vcr ; extra == 'all'
- pytest-asyncio ; extra == 'all'
- pytest-rerunfailures ; extra == 'all'
- pytest-mock ; extra == 'all'
- urllib3<2.0 ; extra == 'all'
- soundfile ; extra == 'all'
- pillow ; extra == 'all'
- gradio>=4.0.0 ; extra == 'all'
- numpy ; extra == 'all'
- fastapi ; extra == 'all'
- ruff>=0.9.0 ; extra == 'all'
- mypy==1.5.1 ; extra == 'all'
- libcst==1.4.0 ; extra == 'all'
- typing-extensions>=4.8.0 ; extra == 'all'
- types-pyyaml ; extra == 'all'
- types-requests ; extra == 'all'
- types-simplejson ; extra == 'all'
- types-toml ; extra == 'all'
- types-tqdm ; extra == 'all'
- types-urllib3 ; extra == 'all'
- inquirerpy==0.3.4 ; extra == 'cli'
- inquirerpy==0.3.4 ; extra == 'dev'
- aiohttp ; extra == 'dev'
- jedi ; extra == 'dev'
- jinja2 ; extra == 'dev'
- pytest>=8.1.1,<8.2.2 ; extra == 'dev'
- pytest-cov ; extra == 'dev'
- pytest-env ; extra == 'dev'
- pytest-xdist ; extra == 'dev'
- pytest-vcr ; extra == 'dev'
- pytest-asyncio ; extra == 'dev'
- pytest-rerunfailures ; extra == 'dev'
- pytest-mock ; extra == 'dev'
- urllib3<2.0 ; extra == 'dev'
- soundfile ; extra == 'dev'
- pillow ; extra == 'dev'
- gradio>=4.0.0 ; extra == 'dev'
- numpy ; extra == 'dev'
- fastapi ; extra == 'dev'
- ruff>=0.9.0 ; extra == 'dev'
- mypy==1.5.1 ; extra == 'dev'
- libcst==1.4.0 ; extra == 'dev'
- typing-extensions>=4.8.0 ; extra == 'dev'
- types-pyyaml ; extra == 'dev'
- types-requests ; extra == 'dev'
- types-simplejson ; extra == 'dev'
- types-toml ; extra == 'dev'
- types-tqdm ; extra == 'dev'
- types-urllib3 ; extra == 'dev'
- toml ; extra == 'fastai'
- fastai>=2.4 ; extra == 'fastai'
- fastcore>=1.3.27 ; extra == 'fastai'
- hf-transfer>=0.1.4 ; extra == 'hf-transfer'
- hf-xet>=0.1.4 ; extra == 'hf-xet'
- aiohttp ; extra == 'inference'
- ruff>=0.9.0 ; extra == 'quality'
- mypy==1.5.1 ; extra == 'quality'
- libcst==1.4.0 ; extra == 'quality'
- tensorflow ; extra == 'tensorflow'
- pydot ; extra == 'tensorflow'
- graphviz ; extra == 'tensorflow'
- tensorflow ; extra == 'tensorflow-testing'
- keras<3.0 ; extra == 'tensorflow-testing'
- inquirerpy==0.3.4 ; extra == 'testing'
- aiohttp ; extra == 'testing'
- jedi ; extra == 'testing'
- jinja2 ; extra == 'testing'
- pytest>=8.1.1,<8.2.2 ; extra == 'testing'
- pytest-cov ; extra == 'testing'
- pytest-env ; extra == 'testing'
- pytest-xdist ; extra == 'testing'
- pytest-vcr ; extra == 'testing'
- pytest-asyncio ; extra == 'testing'
- pytest-rerunfailures ; extra == 'testing'
- pytest-mock ; extra == 'testing'
- urllib3<2.0 ; extra == 'testing'
- soundfile ; extra == 'testing'
- pillow ; extra == 'testing'
- gradio>=4.0.0 ; extra == 'testing'
- numpy ; extra == 'testing'
- fastapi ; extra == 'testing'
- torch ; extra == 'torch'
- safetensors[torch] ; extra == 'torch'
- typing-extensions>=4.8.0 ; extra == 'typing'
- types-pyyaml ; extra == 'typing'
- types-requests ; extra == 'typing'
- types-simplejson ; extra == 'typing'
- types-toml ; extra == 'typing'
- types-tqdm ; extra == 'typing'
- types-urllib3 ; extra == 'typing'
requires_python: '>=3.8.0'
- pypi: https://files.pythonhosted.org/packages/76/c6/c88e154df9c4e1a2a66ccf0005a88dfb2650c1dffb6f5ce603dfbd452ce3/idna-3.10-py3-none-any.whl
name: idna
version: '3.10'
sha256: 946d195a0d259cbba61165e88e65941f16e9b36ea6ddb97f00452bae8b1287d3
requires_dist:
- ruff>=0.6.2 ; extra == 'all'
- mypy>=1.11.2 ; extra == 'all'
- pytest>=8.3.2 ; extra == 'all'
- flake8>=7.1.1 ; extra == 'all'
requires_python: '>=3.6'
- pypi: https://files.pythonhosted.org/packages/62/a1/3d680cbfd5f4b8f15abc1d571870c5fc3e594bb582bc3b64ea099db13e56/jinja2-3.1.6-py3-none-any.whl
name: jinja2
version: 3.1.6
sha256: 85ece4451f492d0c13c5dd7c13a64681a86afae63a5f347908daf103ce6d2f67
requires_dist:
- markupsafe>=2.0
- babel>=2.7 ; extra == 'i18n'
requires_python: '>=3.7'
- conda: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.43-h712a8e2_4.conda
sha256: db73f38155d901a610b2320525b9dd3b31e4949215c870685fd92ea61b5ce472
md5: 01f8d123c96816249efd255a31ad7712
depends:
- __glibc >=2.17,<3.0.a0
constrains:
- binutils_impl_linux-64 2.43
license: GPL-3.0-only
license_family: GPL
purls: []
size: 671240
timestamp: 1740155456116
- conda: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.7.0-h5888daf_0.conda
sha256: 33ab03438aee65d6aa667cf7d90c91e5e7d734c19a67aa4c7040742c0a13d505
md5: db0bfbe7dd197b68ad5f30333bae6ce0
depends:
- __glibc >=2.17,<3.0.a0
- libgcc >=13
constrains:
- expat 2.7.0.*
license: MIT
license_family: MIT
purls: []
size: 74427
timestamp: 1743431794976
- conda: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.6-h2dba641_1.conda
sha256: 764432d32db45466e87f10621db5b74363a9f847d2b8b1f9743746cd160f06ab
md5: ede4673863426c0883c0063d853bbd85
depends:
- __glibc >=2.17,<3.0.a0
- libgcc >=13
license: MIT
license_family: MIT
purls: []
size: 57433
timestamp: 1743434498161
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-14.2.0-h767d61c_2.conda
sha256: 3a572d031cb86deb541d15c1875aaa097baefc0c580b54dc61f5edab99215792
md5: ef504d1acbd74b7cc6849ef8af47dd03
depends:
- __glibc >=2.17,<3.0.a0
- _openmp_mutex >=4.5
constrains:
- libgomp 14.2.0 h767d61c_2
- libgcc-ng ==14.2.0=*_2
license: GPL-3.0-only WITH GCC-exception-3.1
license_family: GPL
purls: []
size: 847885
timestamp: 1740240653082
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-14.2.0-h69a702a_2.conda
sha256: fb7558c328b38b2f9d2e412c48da7890e7721ba018d733ebdfea57280df01904
md5: a2222a6ada71fb478682efe483ce0f92
depends:
- libgcc 14.2.0 h767d61c_2
license: GPL-3.0-only WITH GCC-exception-3.1
license_family: GPL
purls: []
size: 53758
timestamp: 1740240660904
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgomp-14.2.0-h767d61c_2.conda
sha256: 1a3130e0b9267e781b89399580f3163632d59fe5b0142900d63052ab1a53490e
md5: 06d02030237f4d5b3d9a7e7d348fe3c6
depends:
- __glibc >=2.17,<3.0.a0
license: GPL-3.0-only WITH GCC-exception-3.1
license_family: GPL
purls: []
size: 459862
timestamp: 1740240588123
- conda: https://conda.anaconda.org/conda-forge/linux-64/liblzma-5.8.1-hb9d3cd8_0.conda
sha256: f4f21dfc54b08d462f707b771ecce3fa9bc702a2a05b55654f64154f48b141ef
md5: 0e87378639676987af32fee53ba32258
depends:
- __glibc >=2.17,<3.0.a0
- libgcc >=13
license: 0BSD
purls: []
size: 112709
timestamp: 1743771086123
- conda: https://conda.anaconda.org/conda-forge/linux-64/libmpdec-4.0.0-h4bc722e_0.conda
sha256: d02d1d3304ecaf5c728e515eb7416517a0b118200cd5eacbe829c432d1664070
md5: aeb98fdeb2e8f25d43ef71fbacbeec80
depends:
- __glibc >=2.17,<3.0.a0
- libgcc-ng >=12
license: BSD-2-Clause
license_family: BSD
purls: []
size: 89991
timestamp: 1723817448345
- conda: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.49.1-hee588c1_2.conda
sha256: a086289bf75c33adc1daed3f1422024504ffb5c3c8b3285c49f025c29708ed16
md5: 962d6ac93c30b1dfc54c9cccafd1003e
depends:
- __glibc >=2.17,<3.0.a0
- libgcc >=13
- libzlib >=1.3.1,<2.0a0
license: Unlicense
purls: []
size: 918664
timestamp: 1742083674731
- conda: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda
sha256: 787eb542f055a2b3de553614b25f09eefb0a0931b0c87dbcce6efdfd92f04f18
md5: 40b61aab5c7ba9ff276c41cfffe6b80b
depends:
- libgcc-ng >=12
license: BSD-3-Clause
license_family: BSD
purls: []
size: 33601
timestamp: 1680112270483
- conda: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda
sha256: d4bfe88d7cb447768e31650f06257995601f89076080e76df55e3112d4e47dc4
md5: edb0dca6bc32e4f4789199455a1dbeb8
depends:
- __glibc >=2.17,<3.0.a0
- libgcc >=13
constrains:
- zlib 1.3.1 *_2
license: Zlib
license_family: Other
purls: []
size: 60963
timestamp: 1727963148474
- pypi: https://files.pythonhosted.org/packages/2f/04/6ef935dc74e729932e39478e44d8cfe6a83550552eaa072b7c05f6f22488/lxml-5.4.0-cp313-cp313-manylinux_2_28_x86_64.whl
name: lxml
version: 5.4.0
sha256: 1a42b3a19346e5601d1b8296ff6ef3d76038058f311902edd574461e9c036982
requires_dist:
- cython>=3.0.11,<3.1.0 ; extra == 'source'
- cssselect>=0.7 ; extra == 'cssselect'
- html5lib ; extra == 'html5'
- beautifulsoup4 ; extra == 'htmlsoup'
- lxml-html-clean ; extra == 'html-clean'
requires_python: '>=3.6'
- pypi: https://files.pythonhosted.org/packages/42/d7/1ec15b46af6af88f19b8e5ffea08fa375d433c998b8a7639e76935c14f1f/markdown_it_py-3.0.0-py3-none-any.whl
name: markdown-it-py
version: 3.0.0
sha256: 355216845c60bd96232cd8d8c40e8f9765cc86f46880e43a8fd22dc1a1a8cab1
requires_dist:
- mdurl~=0.1
- psutil ; extra == 'benchmarking'
- pytest ; extra == 'benchmarking'
- pytest-benchmark ; extra == 'benchmarking'
- pre-commit~=3.0 ; extra == 'code-style'
- commonmark~=0.9 ; extra == 'compare'
- markdown~=3.4 ; extra == 'compare'
- mistletoe~=1.0 ; extra == 'compare'
- mistune~=2.0 ; extra == 'compare'
- panflute~=2.3 ; extra == 'compare'
- linkify-it-py>=1,<3 ; extra == 'linkify'
- mdit-py-plugins ; extra == 'plugins'
- gprof2dot ; extra == 'profiling'
- mdit-py-plugins ; extra == 'rtd'
- myst-parser ; extra == 'rtd'
- pyyaml ; extra == 'rtd'
- sphinx ; extra == 'rtd'
- sphinx-copybutton ; extra == 'rtd'
- sphinx-design ; extra == 'rtd'
- sphinx-book-theme ; extra == 'rtd'
- jupyter-sphinx ; extra == 'rtd'
- coverage ; extra == 'testing'
- pytest ; extra == 'testing'
- pytest-cov ; extra == 'testing'
- pytest-regressions ; extra == 'testing'
requires_python: '>=3.8'
- pypi: https://files.pythonhosted.org/packages/64/11/b751af7ad41b254a802cf52f7bc1fca7cabe2388132f2ce60a1a6b9b9622/markdownify-1.1.0-py3-none-any.whl
name: markdownify
version: 1.1.0
sha256: 32a5a08e9af02c8a6528942224c91b933b4bd2c7d078f9012943776fc313eeef
requires_dist:
- beautifulsoup4>=4.9,<5
- six>=1.15,<2
- pypi: https://files.pythonhosted.org/packages/0c/91/96cf928db8236f1bfab6ce15ad070dfdd02ed88261c2afafd4b43575e9e9/MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
name: markupsafe
version: 3.0.2
sha256: 15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396
requires_python: '>=3.9'
- pypi: https://files.pythonhosted.org/packages/b3/38/89ba8ad64ae25be8de66a6d463314cf1eb366222074cfda9ee839c56a4b4/mdurl-0.1.2-py3-none-any.whl
name: mdurl
version: 0.1.2
sha256: 84008a41e51615a49fc9966191ff91509e3c40b939176e643fd50a5c2196b8f8
requires_python: '>=3.7'
- conda: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-h2d0b736_3.conda
sha256: 3fde293232fa3fca98635e1167de6b7c7fda83caf24b9d6c91ec9eefb4f4d586
md5: 47e340acb35de30501a76c7c799c41d7
depends:
- __glibc >=2.17,<3.0.a0
- libgcc >=13
license: X11 AND BSD-3-Clause
purls: []
size: 891641
timestamp: 1738195959188
- pypi: https://files.pythonhosted.org/packages/aa/fc/ebfd32c3e124e6a1043e19c0ab0769818aa69050ce5589b63d05ff185526/numpy-2.2.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
name: numpy
version: 2.2.5
sha256: 2ba321813a00e508d5421104464510cc962a6f791aa2fca1c97b1e65027da80d
requires_python: '>=3.10'
- conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.5.0-h7b32b05_0.conda
sha256: 38285d280f84f1755b7c54baf17eccf2e3e696287954ce0adca16546b85ee62c
md5: bb539841f2a3fde210f387d00ed4bb9d
depends:
- __glibc >=2.17,<3.0.a0
- ca-certificates
- libgcc >=13
license: Apache-2.0
license_family: Apache
purls: []
size: 3121673
timestamp: 1744132167438
- pypi: https://files.pythonhosted.org/packages/d1/d0/e9e38aff63e1d7bbcb818e6f8d4df1056b7f8aeb3b660370e0d41dbc394c/orjson-3.10.17-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
name: orjson
version: 3.10.17
sha256: 3af3e11abf8bd77a2b82863eeedd847c694fd64a4f9cb6b1644015a5aef44b84
requires_python: '>=3.9'
- pypi: https://files.pythonhosted.org/packages/20/12/38679034af332785aac8774540895e234f4d07f7545804097de4b666afd8/packaging-25.0-py3-none-any.whl
name: packaging
version: '25.0'
sha256: 29572ef2b1f17581046b3a2227d5c611fb25ec70ca1ba8554b24b0e69331a484
requires_python: '>=3.8'
- pypi: https://files.pythonhosted.org/packages/e8/31/aa8da88ca0eadbabd0a639788a6da13bb2ff6edbbb9f29aa786450a30a91/pandas-2.2.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
name: pandas
version: 2.2.3
sha256: f3a255b2c19987fbbe62a9dfd6cff7ff2aa9ccab3fc75218fd4b7530f01efa24
requires_dist:
- numpy>=1.22.4 ; python_full_version < '3.11'
- numpy>=1.23.2 ; python_full_version == '3.11.*'
- numpy>=1.26.0 ; python_full_version >= '3.12'
- python-dateutil>=2.8.2
- pytz>=2020.1
- tzdata>=2022.7
- hypothesis>=6.46.1 ; extra == 'test'
- pytest>=7.3.2 ; extra == 'test'
- pytest-xdist>=2.2.0 ; extra == 'test'
- pyarrow>=10.0.1 ; extra == 'pyarrow'
- bottleneck>=1.3.6 ; extra == 'performance'
- numba>=0.56.4 ; extra == 'performance'
- numexpr>=2.8.4 ; extra == 'performance'
- scipy>=1.10.0 ; extra == 'computation'
- xarray>=2022.12.0 ; extra == 'computation'
- fsspec>=2022.11.0 ; extra == 'fss'
- s3fs>=2022.11.0 ; extra == 'aws'
- gcsfs>=2022.11.0 ; extra == 'gcp'
- pandas-gbq>=0.19.0 ; extra == 'gcp'
- odfpy>=1.4.1 ; extra == 'excel'
- openpyxl>=3.1.0 ; extra == 'excel'
- python-calamine>=0.1.7 ; extra == 'excel'
- pyxlsb>=1.0.10 ; extra == 'excel'
- xlrd>=2.0.1 ; extra == 'excel'
- xlsxwriter>=3.0.5 ; extra == 'excel'
- pyarrow>=10.0.1 ; extra == 'parquet'
- pyarrow>=10.0.1 ; extra == 'feather'
- tables>=3.8.0 ; extra == 'hdf5'
- pyreadstat>=1.2.0 ; extra == 'spss'
- sqlalchemy>=2.0.0 ; extra == 'postgresql'
- psycopg2>=2.9.6 ; extra == 'postgresql'
- adbc-driver-postgresql>=0.8.0 ; extra == 'postgresql'
- sqlalchemy>=2.0.0 ; extra == 'mysql'
- pymysql>=1.0.2 ; extra == 'mysql'
- sqlalchemy>=2.0.0 ; extra == 'sql-other'
- adbc-driver-postgresql>=0.8.0 ; extra == 'sql-other'
- adbc-driver-sqlite>=0.8.0 ; extra == 'sql-other'
- beautifulsoup4>=4.11.2 ; extra == 'html'
- html5lib>=1.1 ; extra == 'html'
- lxml>=4.9.2 ; extra == 'html'
- lxml>=4.9.2 ; extra == 'xml'
- matplotlib>=3.6.3 ; extra == 'plot'
- jinja2>=3.1.2 ; extra == 'output-formatting'
- tabulate>=0.9.0 ; extra == 'output-formatting'
- pyqt5>=5.15.9 ; extra == 'clipboard'
- qtpy>=2.3.0 ; extra == 'clipboard'
- zstandard>=0.19.0 ; extra == 'compression'
- dataframe-api-compat>=0.1.7 ; extra == 'consortium-standard'
- adbc-driver-postgresql>=0.8.0 ; extra == 'all'
- adbc-driver-sqlite>=0.8.0 ; extra == 'all'
- beautifulsoup4>=4.11.2 ; extra == 'all'
- bottleneck>=1.3.6 ; extra == 'all'
- dataframe-api-compat>=0.1.7 ; extra == 'all'
- fastparquet>=2022.12.0 ; extra == 'all'
- fsspec>=2022.11.0 ; extra == 'all'
- gcsfs>=2022.11.0 ; extra == 'all'
- html5lib>=1.1 ; extra == 'all'
- hypothesis>=6.46.1 ; extra == 'all'
- jinja2>=3.1.2 ; extra == 'all'
- lxml>=4.9.2 ; extra == 'all'
- matplotlib>=3.6.3 ; extra == 'all'
- numba>=0.56.4 ; extra == 'all'
- numexpr>=2.8.4 ; extra == 'all'
- odfpy>=1.4.1 ; extra == 'all'
- openpyxl>=3.1.0 ; extra == 'all'
- pandas-gbq>=0.19.0 ; extra == 'all'
- psycopg2>=2.9.6 ; extra == 'all'
- pyarrow>=10.0.1 ; extra == 'all'
- pymysql>=1.0.2 ; extra == 'all'
- pyqt5>=5.15.9 ; extra == 'all'
- pyreadstat>=1.2.0 ; extra == 'all'
- pytest>=7.3.2 ; extra == 'all'
- pytest-xdist>=2.2.0 ; extra == 'all'
- python-calamine>=0.1.7 ; extra == 'all'
- pyxlsb>=1.0.10 ; extra == 'all'
- qtpy>=2.3.0 ; extra == 'all'
- scipy>=1.10.0 ; extra == 'all'
- s3fs>=2022.11.0 ; extra == 'all'
- sqlalchemy>=2.0.0 ; extra == 'all'
- tables>=3.8.0 ; extra == 'all'
- tabulate>=0.9.0 ; extra == 'all'
- xarray>=2022.12.0 ; extra == 'all'
- xlrd>=2.0.1 ; extra == 'all'
- xlsxwriter>=3.0.5 ; extra == 'all'
- zstandard>=0.19.0 ; extra == 'all'
requires_python: '>=3.9'
- pypi: https://files.pythonhosted.org/packages/13/eb/2552ecebc0b887f539111c2cd241f538b8ff5891b8903dfe672e997529be/pillow-11.2.1-cp313-cp313-manylinux_2_28_x86_64.whl
name: pillow
version: 11.2.1
sha256: ad275964d52e2243430472fc5d2c2334b4fc3ff9c16cb0a19254e25efa03a155
requires_dist:
- furo ; extra == 'docs'
- olefile ; extra == 'docs'
- sphinx>=8.2 ; extra == 'docs'
- sphinx-copybutton ; extra == 'docs'
- sphinx-inline-tabs ; extra == 'docs'
- sphinxext-opengraph ; extra == 'docs'
- olefile ; extra == 'fpx'
- olefile ; extra == 'mic'
- pyarrow ; extra == 'test-arrow'
- check-manifest ; extra == 'tests'
- coverage>=7.4.2 ; extra == 'tests'
- defusedxml ; extra == 'tests'
- markdown2 ; extra == 'tests'
- olefile ; extra == 'tests'
- packaging ; extra == 'tests'
- pyroma ; extra == 'tests'
- pytest ; extra == 'tests'
- pytest-cov ; extra == 'tests'
- pytest-timeout ; extra == 'tests'
- trove-classifiers>=2024.10.12 ; extra == 'tests'
- typing-extensions ; python_full_version < '3.10' and extra == 'typing'
- defusedxml ; extra == 'xmp'
requires_python: '>=3.9'
- pypi: https://files.pythonhosted.org/packages/c3/7b/cbd5d999a07ff2a21465975d4eb477ae6f69765e8fe8c9087dab250180d8/primp-0.15.0-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
name: primp
version: 0.15.0
sha256: c18b45c23f94016215f62d2334552224236217aaeb716871ce0e4dcfa08eb161
requires_dist:
- certifi ; extra == 'dev'
- pytest>=8.1.1 ; extra == 'dev'
- pytest-asyncio>=0.25.3 ; extra == 'dev'
- typing-extensions ; python_full_version < '3.12' and extra == 'dev'
- mypy>=1.14.1 ; extra == 'dev'
- ruff>=0.9.2 ; extra == 'dev'
requires_python: '>=3.8'
- pypi: https://files.pythonhosted.org/packages/e7/12/46b65f3534d099349e38ef6ec98b1a5a81f42536d17e0ba382c28c67ba67/pydantic-2.11.4-py3-none-any.whl
name: pydantic
version: 2.11.4
sha256: d9615eaa9ac5a063471da949c8fc16376a84afb5024688b3ff885693506764eb
requires_dist:
- annotated-types>=0.6.0
- pydantic-core==2.33.2
- typing-extensions>=4.12.2
- typing-inspection>=0.4.0
- email-validator>=2.0.0 ; extra == 'email'
- tzdata ; python_full_version >= '3.9' and sys_platform == 'win32' and extra == 'timezone'
requires_python: '>=3.9'
- pypi: https://files.pythonhosted.org/packages/eb/3c/f4abd740877a35abade05e437245b192f9d0ffb48bbbbd708df33d3cda37/pydantic_core-2.33.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
name: pydantic-core
version: 2.33.2
sha256: 9fdac5d6ffa1b5a83bca06ffe7583f5576555e6c8b3a91fbd25ea7780f825f7d
requires_dist:
- typing-extensions>=4.6.0,!=4.7.0
requires_python: '>=3.9'
- pypi: https://files.pythonhosted.org/packages/a6/53/d78dc063216e62fc55f6b2eebb447f6a4b0a59f55c8406376f76bf959b08/pydub-0.25.1-py2.py3-none-any.whl
name: pydub
version: 0.25.1
sha256: 65617e33033874b59d87db603aa1ed450633288aefead953b30bded59cb599a6
- pypi: https://files.pythonhosted.org/packages/8a/0b/9fcc47d19c48b59121088dd6da2488a49d5f72dacf8262e2790a1d2c7d15/pygments-2.19.1-py3-none-any.whl
name: pygments
version: 2.19.1
sha256: 9ea1544ad55cecf4b8242fab6dd35a93bbce657034b0611ee383099054ab6d8c
requires_dist:
- colorama>=0.4.6 ; extra == 'windows-terminal'
requires_python: '>=3.8'
- conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.13.3-hf636f53_101_cp313.conda
build_number: 101
sha256: eecb11ea60f8143deeb301eab2e04d04f7acb83659bb20fdfeacd431a5f31168
md5: 10622e12d649154af0bd76bcf33a7c5c
depends:
- __glibc >=2.17,<3.0.a0
- bzip2 >=1.0.8,<2.0a0
- ld_impl_linux-64 >=2.36.1
- libexpat >=2.7.0,<3.0a0
- libffi >=3.4.6,<3.5.0a0
- libgcc >=13
- liblzma >=5.8.1,<6.0a0
- libmpdec >=4.0.0,<5.0a0
- libsqlite >=3.49.1,<4.0a0
- libuuid >=2.38.1,<3.0a0
- libzlib >=1.3.1,<2.0a0
- ncurses >=6.5,<7.0a0
- openssl >=3.5.0,<4.0a0
- python_abi 3.13.* *_cp313
- readline >=8.2,<9.0a0
- tk >=8.6.13,<8.7.0a0
- tzdata
license: Python-2.0
purls: []
size: 33268245
timestamp: 1744665022734
python_site_packages_path: lib/python3.13/site-packages
- pypi: https://files.pythonhosted.org/packages/ec/57/56b9bcc3c9c6a792fcbaf139543cee77261f3651ca9da0c93f5c1221264b/python_dateutil-2.9.0.post0-py2.py3-none-any.whl
name: python-dateutil
version: 2.9.0.post0
sha256: a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427
requires_dist:
- six>=1.5
requires_python: '>=2.7,!=3.0.*,!=3.1.*,!=3.2.*'
- pypi: https://files.pythonhosted.org/packages/1e/18/98a99ad95133c6a6e2005fe89faedf294a748bd5dc803008059409ac9b1e/python_dotenv-1.1.0-py3-none-any.whl
name: python-dotenv
version: 1.1.0
sha256: d7c01d9e2293916c18baf562d95698754b0dbbb5e74d457c45d4f6561fb9d55d
requires_dist:
- click>=5.0 ; extra == 'cli'
requires_python: '>=3.9'
- pypi: https://files.pythonhosted.org/packages/45/58/38b5afbc1a800eeea951b9285d3912613f2603bdf897a4ab0f4bd7f405fc/python_multipart-0.0.20-py3-none-any.whl
name: python-multipart
version: 0.0.20
sha256: 8a62d3a8335e06589fe01f2a3e178cdcc632f3fbe0d492ad9ee0ec35aab1f104
requires_python: '>=3.8'
- conda: https://conda.anaconda.org/conda-forge/noarch/python_abi-3.13-7_cp313.conda
build_number: 7
sha256: 0595134584589064f56e67d3de1d8fcbb673a972946bce25fb593fb092fdcd97
md5: e84b44e6300f1703cb25d29120c5b1d8
constrains:
- python 3.13.* *_cp313
license: BSD-3-Clause
license_family: BSD
purls: []
size: 6988
timestamp: 1745258852285
- pypi: https://files.pythonhosted.org/packages/81/c4/34e93fe5f5429d7570ec1fa436f1986fb1f00c3e0f43a589fe2bbcd22c3f/pytz-2025.2-py2.py3-none-any.whl
name: pytz
version: '2025.2'
sha256: 5ddf76296dd8c44c26eb8f4b6f35488f3ccbf6fbbd7adee0b7262d43f0ec2f00
- pypi: https://files.pythonhosted.org/packages/04/24/b7721e4845c2f162d26f50521b825fb061bc0a5afcf9a386840f23ea19fa/PyYAML-6.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
name: pyyaml
version: 6.0.2
sha256: 70b189594dbe54f75ab3a1acec5f1e3faa7e8cf2f1e08d9b561cb41b845f69d5
requires_python: '>=3.8'
- conda: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8c095d6_2.conda
sha256: 2d6d0c026902561ed77cd646b5021aef2d4db22e57a5b0178dfc669231e06d2c
md5: 283b96675859b20a825f8fa30f311446
depends:
- libgcc >=13
- ncurses >=6.5,<7.0a0
license: GPL-3.0-only
license_family: GPL
purls: []
size: 282480
timestamp: 1740379431762
- pypi: https://files.pythonhosted.org/packages/f9/9b/335f9764261e915ed497fcdeb11df5dfd6f7bf257d4a6a2a686d80da4d54/requests-2.32.3-py3-none-any.whl
name: requests
version: 2.32.3
sha256: 70761cfe03c773ceb22aa2f671b4757976145175cdfca038c02654d061d6dcc6
requires_dist:
- charset-normalizer>=2,<4
- idna>=2.5,<4
- urllib3>=1.21.1,<3
- certifi>=2017.4.17
- pysocks>=1.5.6,!=1.5.7 ; extra == 'socks'
- chardet>=3.0.2,<6 ; extra == 'use-chardet-on-py3'
requires_python: '>=3.8'
- pypi: https://files.pythonhosted.org/packages/0d/9b/63f4c7ebc259242c89b3acafdb37b41d1185c07ff0011164674e9076b491/rich-14.0.0-py3-none-any.whl
name: rich
version: 14.0.0
sha256: 1c9491e1951aac09caffd42f448ee3d04e58923ffe14993f6e83068dc395d7e0
requires_dist:
- ipywidgets>=7.5.1,<9 ; extra == 'jupyter'
- markdown-it-py>=2.2.0
- pygments>=2.13.0,<3.0.0
- typing-extensions>=4.0.0,<5.0 ; python_full_version < '3.11'
requires_python: '>=3.8.0'
- pypi: https://files.pythonhosted.org/packages/0e/2c/1e364cc92970075d7d04c69c928430b23e43a433f044474f57e425cbed37/ruff-0.11.7-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
name: ruff
version: 0.11.7
sha256: 7940665e74e7b65d427b82bffc1e46710ec7f30d58b4b2d5016e3f0321436502
requires_python: '>=3.7'
- pypi: https://files.pythonhosted.org/packages/4d/c0/1108ad9f01567f66b3154063605b350b69c3c9366732e09e45f9fd0d1deb/safehttpx-0.1.6-py3-none-any.whl
name: safehttpx
version: 0.1.6
sha256: 407cff0b410b071623087c63dd2080c3b44dc076888d8c5823c00d1e58cb381c
requires_dist:
- httpx
- pytest ; extra == 'dev'
requires_python: '>3.9'
- pypi: https://files.pythonhosted.org/packages/6a/23/8146aad7d88f4fcb3a6218f41a60f6c2d4e3a72de72da1825dc7c8f7877c/semantic_version-2.10.0-py2.py3-none-any.whl
name: semantic-version
version: 2.10.0
sha256: de78a3b8e0feda74cabc54aab2da702113e33ac9d9eb9d2389bcf1f58b7d9177
requires_dist:
- django>=1.11 ; extra == 'dev'
- nose2 ; extra == 'dev'
- tox ; extra == 'dev'
- check-manifest ; extra == 'dev'
- coverage ; extra == 'dev'
- flake8 ; extra == 'dev'
- wheel ; extra == 'dev'
- zest-releaser[recommended] ; extra == 'dev'
- readme-renderer<25.0 ; python_full_version == '3.4.*' and extra == 'dev'
- colorama<=0.4.1 ; python_full_version == '3.4.*' and extra == 'dev'
- sphinx ; extra == 'doc'
- sphinx-rtd-theme ; extra == 'doc'
requires_python: '>=2.7'
- pypi: https://files.pythonhosted.org/packages/e0/f9/0595336914c5619e5f28a1fb793285925a8cd4b432c9da0a987836c7f822/shellingham-1.5.4-py2.py3-none-any.whl
name: shellingham
version: 1.5.4
sha256: 7ecfff8f2fd72616f7481040475a65b2bf8af90a56c89140852d1120324e8686
requires_python: '>=3.7'
- pypi: https://files.pythonhosted.org/packages/b7/ce/149a00dd41f10bc29e5921b496af8b574d8413afcd5e30dfa0ed46c2cc5e/six-1.17.0-py2.py3-none-any.whl
name: six
version: 1.17.0
sha256: 4721f391ed90541fddacab5acf947aa0d3dc7d27b2e1e8eda2be8970586c3274
requires_python: '>=2.7,!=3.0.*,!=3.1.*,!=3.2.*'
- pypi: https://files.pythonhosted.org/packages/2f/ce/dedad549d2b37e73d14c56aef25bd42a5f87fdb8e97bf2a78cac5aac8287/smolagents-1.14.0-py3-none-any.whl
name: smolagents
version: 1.14.0
sha256: 3444a5231bf395ea8c8cc39905aaa17e9ef434b7f4a03bde91b83ea08dd0a856
requires_dist:
- huggingface-hub>=0.28.0
- requests>=2.32.3
- rich>=13.9.4
- jinja2>=3.1.4
- pillow>=11.0.0
- markdownify>=0.14.1
- duckduckgo-search>=6.3.7
- python-dotenv
- boto3>=1.36.18 ; extra == 'bedrock'
- torch ; extra == 'torch'
- torchvision ; extra == 'torch'
- numpy>=1.21.2 ; extra == 'torch'
- soundfile ; extra == 'audio'
- smolagents[torch] ; extra == 'audio'
- docker>=7.1.0 ; extra == 'docker'
- websocket-client ; extra == 'docker'
- e2b-code-interpreter>=1.0.3 ; extra == 'e2b'
- python-dotenv>=1.0.1 ; extra == 'e2b'
- gradio>=5.13.2 ; extra == 'gradio'
- litellm>=1.60.2 ; extra == 'litellm'
- mcpadapt>=0.0.19 ; extra == 'mcp'
- mcp ; extra == 'mcp'
- mlx-lm ; extra == 'mlx-lm'
- openai>=1.58.1 ; extra == 'openai'
- arize-phoenix ; extra == 'telemetry'
- opentelemetry-sdk ; extra == 'telemetry'
- opentelemetry-exporter-otlp ; extra == 'telemetry'
- openinference-instrumentation-smolagents>=0.1.4 ; extra == 'telemetry'
- accelerate ; extra == 'transformers'
- transformers>=4.0.0 ; extra == 'transformers'
- smolagents[torch] ; extra == 'transformers'
- helium ; extra == 'vision'
- selenium ; extra == 'vision'
- vllm ; extra == 'vllm'
- torch ; extra == 'vllm'
- smolagents[audio,bedrock,docker,e2b,gradio,litellm,mcp,mlx-lm,openai,telemetry,transformers,vision] ; extra == 'all'
- ruff>=0.9.0 ; extra == 'quality'
- ipython>=8.31.0 ; extra == 'test'
- pandas>=2.2.3 ; extra == 'test'
- pytest>=8.1.0 ; extra == 'test'
- pytest-datadir ; extra == 'test'
- python-dotenv>=1.0.1 ; extra == 'test'
- smolagents[all] ; extra == 'test'
- rank-bm25 ; extra == 'test'
- wikipedia-api>=0.8.1 ; extra == 'test'
- smolagents[quality,test] ; extra == 'dev'
- sqlalchemy ; extra == 'dev'
requires_python: '>=3.10'
- pypi: https://files.pythonhosted.org/packages/e9/44/75a9c9421471a6c4805dbf2356f7c181a29c1879239abab1ea2cc8f38b40/sniffio-1.3.1-py3-none-any.whl
name: sniffio
version: 1.3.1
sha256: 2f6da418d1f1e0fddd844478f41680e794e6051915791a034ff65e5f100525a2
requires_python: '>=3.7'
- pypi: https://files.pythonhosted.org/packages/e7/9c/0e6afc12c269578be5c0c1c9f4b49a8d32770a080260c333ac04cc1c832d/soupsieve-2.7-py3-none-any.whl
name: soupsieve
version: '2.7'
sha256: 6e60cc5c1ffaf1cebcc12e8188320b72071e922c2e897f737cadce79ad5d30c4
requires_python: '>=3.8'
- pypi: https://files.pythonhosted.org/packages/8b/0c/9d30a4ebeb6db2b25a841afbb80f6ef9a854fc3b41be131d249a977b4959/starlette-0.46.2-py3-none-any.whl
name: starlette
version: 0.46.2
sha256: 595633ce89f8ffa71a015caed34a5b2dc1c0cdb3f0f1fbd1e69339cf2abeec35
requires_dist:
- anyio>=3.6.2,<5
- typing-extensions>=3.10.0 ; python_full_version < '3.10'
- httpx>=0.27.0,<0.29.0 ; extra == 'full'
- itsdangerous ; extra == 'full'
- jinja2 ; extra == 'full'
- python-multipart>=0.0.18 ; extra == 'full'
- pyyaml ; extra == 'full'
requires_python: '>=3.9'
- conda: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda
sha256: e0569c9caa68bf476bead1bed3d79650bb080b532c64a4af7d8ca286c08dea4e
md5: d453b98d9c83e71da0741bb0ff4d76bc
depends:
- libgcc-ng >=12
- libzlib >=1.2.13,<2.0.0a0
license: TCL
license_family: BSD
purls: []
size: 3318875
timestamp: 1699202167581
- pypi: https://files.pythonhosted.org/packages/f9/b6/a447b5e4ec71e13871be01ba81f5dfc9d0af7e473da256ff46bc0e24026f/tomlkit-0.13.2-py3-none-any.whl
name: tomlkit
version: 0.13.2
sha256: 7a974427f6e119197f670fbbbeae7bef749a6c14e793db934baefc1b5f03efde
requires_python: '>=3.8'
- pypi: https://files.pythonhosted.org/packages/d0/30/dc54f88dd4a2b5dc8a0279bdd7270e735851848b762aeb1c1184ed1f6b14/tqdm-4.67.1-py3-none-any.whl
name: tqdm
version: 4.67.1
sha256: 26445eca388f82e72884e0d580d5464cd801a3ea01e63e5601bdff9ba6a48de2
requires_dist:
- colorama ; sys_platform == 'win32'
- pytest>=6 ; extra == 'dev'
- pytest-cov ; extra == 'dev'
- pytest-timeout ; extra == 'dev'
- pytest-asyncio>=0.24 ; extra == 'dev'
- nbval ; extra == 'dev'
- requests ; extra == 'discord'
- slack-sdk ; extra == 'slack'
- requests ; extra == 'telegram'
- ipywidgets>=6 ; extra == 'notebook'
requires_python: '>=3.7'
- pypi: https://files.pythonhosted.org/packages/48/20/9d953de6f4367163d23ec823200eb3ecb0050a2609691e512c8b95827a9b/typer-0.15.3-py3-none-any.whl
name: typer
version: 0.15.3
sha256: c86a65ad77ca531f03de08d1b9cb67cd09ad02ddddf4b34745b5008f43b239bd
requires_dist:
- click>=8.0.0
- typing-extensions>=3.7.4.3
- shellingham>=1.3.0
- rich>=10.11.0
requires_python: '>=3.7'
- pypi: https://files.pythonhosted.org/packages/8b/54/b1ae86c0973cc6f0210b53d508ca3641fb6d0c56823f288d108bc7ab3cc8/typing_extensions-4.13.2-py3-none-any.whl
name: typing-extensions
version: 4.13.2
sha256: a439e7c04b49fec3e5d3e2beaa21755cadbbdc391694e28ccdd36ca4a1408f8c
requires_python: '>=3.8'
- pypi: https://files.pythonhosted.org/packages/31/08/aa4fdfb71f7de5176385bd9e90852eaf6b5d622735020ad600f2bab54385/typing_inspection-0.4.0-py3-none-any.whl
name: typing-inspection
version: 0.4.0
sha256: 50e72559fcd2a6367a19f7a7e610e6afcb9fac940c650290eed893d61386832f
requires_dist:
- typing-extensions>=4.12.0
requires_python: '>=3.9'
- pypi: https://files.pythonhosted.org/packages/5c/23/c7abc0ca0a1526a0774eca151daeb8de62ec457e77262b66b359c3c7679e/tzdata-2025.2-py2.py3-none-any.whl
name: tzdata
version: '2025.2'
sha256: 1a403fada01ff9221ca8044d701868fa132215d84beb92242d9acd2147f667a8
requires_python: '>=2'
- conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda
sha256: 5aaa366385d716557e365f0a4e9c3fca43ba196872abbbe3d56bb610d131e192
md5: 4222072737ccff51314b5ece9c7d6f5a
license: LicenseRef-Public-Domain
purls: []
size: 122968
timestamp: 1742727099393
- pypi: https://files.pythonhosted.org/packages/6b/11/cc635220681e93a0183390e26485430ca2c7b5f9d33b15c74c2861cb8091/urllib3-2.4.0-py3-none-any.whl
name: urllib3
version: 2.4.0
sha256: 4e16665048960a0900c702d4a66415956a584919c03361cac9f1df5c5dd7e813
requires_dist:
- brotli>=1.0.9 ; platform_python_implementation == 'CPython' and extra == 'brotli'
- brotlicffi>=0.8.0 ; platform_python_implementation != 'CPython' and extra == 'brotli'
- h2>=4,<5 ; extra == 'h2'
- pysocks>=1.5.6,!=1.5.7,<2.0 ; extra == 'socks'
- zstandard>=0.18.0 ; extra == 'zstd'
requires_python: '>=3.9'
- pypi: https://files.pythonhosted.org/packages/b1/4b/4cef6ce21a2aaca9d852a6e84ef4f135d99fcd74fa75105e2fc0c8308acd/uvicorn-0.34.2-py3-none-any.whl
name: uvicorn
version: 0.34.2
sha256: deb49af569084536d269fe0a6d67e3754f104cf03aba7c11c40f01aadf33c403
requires_dist:
- click>=7.0
- h11>=0.8
- typing-extensions>=4.0 ; python_full_version < '3.11'
- colorama>=0.4 ; sys_platform == 'win32' and extra == 'standard'
- httptools>=0.6.3 ; extra == 'standard'
- python-dotenv>=0.13 ; extra == 'standard'
- pyyaml>=5.1 ; extra == 'standard'
- uvloop>=0.14.0,!=0.15.0,!=0.15.1 ; platform_python_implementation != 'PyPy' and sys_platform != 'cygwin' and sys_platform != 'win32' and extra == 'standard'
- watchfiles>=0.13 ; extra == 'standard'
- websockets>=10.4 ; extra == 'standard'
requires_python: '>=3.9'
- pypi: https://files.pythonhosted.org/packages/ff/b2/83a6ddf56cdcbad4e3d841fcc55d6ba7d19aeb89c50f24dd7e859ec0805f/websockets-15.0.1-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
name: websockets
version: 15.0.1
sha256: 0f3c1e2ab208db911594ae5b4f79addeb3501604a165019dd221c0bdcabe4db8
requires_python: '>=3.9'
|