Spaces:
Runtime error
Runtime error
File size: 96,412 Bytes
980a7c6 26d52e7 980a7c6 90ab298 980a7c6 90ab298 980a7c6 | 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 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 | """
AI Assistant - Gradio Application
Powered by HuggingFace Hub
"""
from random import random
import gradio as gr
import os
import json
from datetime import datetime
from hf_api import HuggingFaceAPI
from utils import load_settings, save_settings
import warnings
import warnings
import torch
# Suppress the specific deprecation warning
warnings.filterwarnings("ignore",
message=".*torch.distributed.reduce_op.*",
category=FutureWarning)
# Optional import for Google Translate Gemma
try:
from google_translate import GoogleTranslateGemma
GOOGLE_TRANSLATE_AVAILABLE = True
except ImportError as e:
print(f"Warning: Google Translate Gemma not available: {str(e)}")
GOOGLE_TRANSLATE_AVAILABLE = False
GoogleTranslateGemma = None
# Translation testing functions
def test_translategemma(text, source_lang, target_lang):
"""Test Google Translate Gemma model directly"""
if not GOOGLE_TRANSLATE_AVAILABLE:
print("β Google Translate Gemma not available. Using chat completion fallback.")
return test_chat_completion_translation(text, source_lang, target_lang)
print(f"π§ͺ Testing Google Translate Gemma")
print(f" Text: {text}")
print(f" Source: {source_lang}")
print(f" Target: {target_lang}")
print("-" * 50)
try:
# Initialize the model
translator = GoogleTranslateGemma()
# Perform translation
translation = translator.translate(text, source_lang, target_lang)
if translation:
print(f"β
Translation: {translation}")
print(" β
Google Translate Gemma working correctly!")
return translation
else:
print("β No translation returned")
return None
except Exception as e:
print(f"β Error: {str(e)}")
print(" β οΈ Falling back to chat completion translation...")
return test_chat_completion_translation(text, source_lang, target_lang)
def test_chat_completion_translation(text, source_lang, target_lang):
"""Test translation using chat completion fallback"""
if not hf_api:
print("β No HuggingFace API available. Please set your token first.")
return None
# Test models in order of preference
models_to_test = [
"google/translategemma-12b-it",
"meta-llama/Llama-3.2-3B-Instruct",
"microsoft/Phi-3-mini-4k-instruct",
"google/gemma-2-2b-it"
]
print(f"π§ͺ Testing translation with chat completion")
print(f" Text: {text}")
print(f" Source: {source_lang}")
print(f" Target: {target_lang}")
print("-" * 50)
for model_id in models_to_test:
print(f"\nπ Testing with model: {model_id}")
try:
# Use the same translation logic as in the main translation function
if "translategemma" in model_id.lower() and not GOOGLE_TRANSLATE_AVAILABLE:
print(" β οΈ Google Translate Gemma not available, skipping...")
continue
# Dynamic system prompt based on target and source language
source_info = f" from {source_lang}" if source_lang != "Auto-detect" else ""
system_prompt = f"You are a professional translator specializing in translating{source_info} to {target_lang}. Translate the given text accurately while preserving the original meaning and tone. Only provide the translation without any additional explanations."
prompt = f"Translate the following text{source_info} to {target_lang}: {text}"
messages = [
{
"role": "system",
"content": system_prompt
},
{
"role": "user",
"content": prompt
}
]
response = hf_api.chat_completion(
model=model_id,
messages=messages,
max_tokens=1024,
temperature=0.3
)
translation = response["choices"][0]["message"]["content"].strip()
print(f"β
Translation: {translation}")
print(f" β
Success with {model_id}!")
return translation # Return first successful translation
except Exception as e:
print(f" β Error with {model_id}: {str(e)}")
continue
print("\nβ All models failed. Please check your token and model availability.")
return None
def run_multiple_translation_tests():
"""Run multiple translation test scenarios"""
test_cases = [
{
"text": "Hello, how are you today?",
"source": "English",
"target": "Spanish",
"description": "English to Spanish"
},
{
"text": "V nejhorΕ‘Γm pΕΓpadΔ i k prasknutΓ ΔoΔky.",
"source": "Czech",
"target": "German",
"description": "Czech to German"
},
{
"text": "Bonjour, comment allez-vous?",
"source": "French",
"target": "English",
"description": "French to English"
},
{
"text": "θΏζ―δΈδΈͺζ΅θ―γ",
"source": "Chinese (Simplified)",
"target": "English",
"description": "Chinese to English"
},
{
"text": "Β‘Hola! ΒΏCΓ³mo estΓ‘s?",
"source": "Spanish",
"target": "Japanese",
"description": "Spanish to Japanese"
}
]
results = []
for i, case in enumerate(test_cases, 1):
print(f"\nπ Test {i}: {case['description']}")
print(f" Source ({case['source']}): {case['text']}")
# Map language names to codes
lang_code_map = {
"English": "en",
"Spanish": "es",
"French": "fr",
"German": "de-DE",
"Chinese (Simplified)": "zh-CN",
"Chinese (Traditional)": "zh-TW",
"Japanese": "ja",
"Korean": "ko",
"Italian": "it",
"Portuguese": "pt",
"Russian": "ru",
"Arabic": "ar",
"Hindi": "hi",
"Dutch": "nl",
"Turkish": "tr",
"Polish": "pl",
"Vietnamese": "vi",
"Thai": "th",
"Indonesian": "id",
"Greek": "el",
"Hebrew": "he",
"Czech": "cs",
"Swedish": "sv",
"Danish": "da",
"Norwegian": "no",
"Finnish": "fi"
}
source_code = lang_code_map.get(case['source'], 'en')
target_code = lang_code_map.get(case['target'], 'en')
translation = test_translategemma(
text=case['text'],
source_lang=source_code,
target_lang=target_code
)
if translation:
print(f" Target ({case['target']}): {translation}")
results.append({
'case': case['description'],
'original': case['text'],
'translation': translation,
'success': True
})
else:
results.append({
'case': case['description'],
'original': case['text'],
'translation': None,
'success': False
})
# Summary
successful = sum(1 for r in results if r['success'])
total = len(results)
summary = f"""
π Test Summary
{"=" * 60}
Total tests: {total}
Successful: {successful}
Failed: {total - successful}
Success rate: {successful/total*100:.1f}%
"""
if successful < total:
summary += "β Some tests failed. Check your HuggingFace token and model availability."
else:
summary += "β
All tests passed successfully!"
return results, summary
# Settings paths
SETTINGS_DIR = os.path.join(os.path.dirname(__file__), 'settings')
MODELS_SETTINGS_FILE = os.path.join(SETTINGS_DIR, 'models.json')
FIREBASE_SETTINGS_FILE = os.path.join(SETTINGS_DIR, 'firebase.json')
APP_SETTINGS_FILE = os.path.join(SETTINGS_DIR, 'app.json')
# Load initial settings
model_settings = load_settings(MODELS_SETTINGS_FILE)
HF_TOKEN = model_settings.get('huggingfaceToken', '')
hf_api = HuggingFaceAPI(token=HF_TOKEN) if HF_TOKEN else None
def reinit_api(token: str):
"""Reinitialize HuggingFace API with new token"""
global hf_api
hf_api = HuggingFaceAPI(token=token)
def get_saved_models():
"""Get list of saved models"""
settings = load_settings(MODELS_SETTINGS_FILE)
models = settings.get('models', [])
return [(m.get('name', m.get('modelId', 'Unknown')), m.get('modelId', '')) for m in models if m.get('enabled', True)]
def get_model_choices():
"""Get model choices for dropdown"""
models = get_saved_models()
if not models:
return ["meta-llama/Llama-3.2-3B-Instruct"]
return [m[1] for m in models]
# ============ Chat Functions ============
def chat_response(message: str, history: list, model_id: str, temperature: float, max_tokens: int, system_prompt: str):
"""Generate chat response"""
if not hf_api:
return "Please set your HuggingFace token in Settings first."
if not message.strip():
return ""
try:
# Build messages with system prompt
messages = []
if system_prompt.strip():
messages.append({"role": "system", "content": system_prompt})
# Add history from message format
for msg in history:
if isinstance(msg, dict):
messages.append(msg)
elif isinstance(msg, tuple) and len(msg) == 2:
# Handle legacy tuple format
user_msg, assistant_msg = msg
if user_msg:
messages.append({"role": "user", "content": user_msg})
if assistant_msg:
messages.append({"role": "assistant", "content": assistant_msg})
# Add current message
messages.append({"role": "user", "content": message})
response = hf_api.chat_completion(
model=model_id,
messages=messages,
max_tokens=max_tokens,
temperature=temperature
)
return response["choices"][0]["message"]["content"]
except Exception as e:
error_str = str(e)
# Check if it's a model not supported error
if "model_not_supported" in error_str or "not supported by any provider" in error_str:
# Try to get fallback models
try:
fallback_models = hf_api._find_fallback_models(model_id)
if fallback_models:
fallback_list = "\n".join([f"- {m['id']}" for m in fallback_models[:3]])
return f"Error: Model {model_id} is not supported. Try one of these models instead:\n{fallback_list}\n\nOriginal error: {error_str}"
else:
return f"Error: Model {model_id} is not supported and no fallback models are available.\n\nOriginal error: {error_str}"
except:
return f"Error: Model {model_id} is not supported. Please try a different model.\n\nOriginal error: {error_str}"
else:
return f"Error: {error_str}"
def text_generation(prompt: str, model_id: str, temperature: float, max_tokens: int, top_p: float):
"""Generate text from prompt"""
if not hf_api:
return "Please set your HuggingFace token in Settings first."
if not prompt.strip():
return ""
try:
# Check model settings for task support
model_settings = load_settings(MODELS_SETTINGS_FILE)
models = model_settings.get('models', [])
# Find the model in settings
model_info = None
for m in models:
if m.get('modelId') == model_id:
model_info = m
break
# Check if model recommends chat_completion
if model_info and model_info.get('recommendedMethod') == 'chat_completion':
# Use chat completion for conversational models
messages = [{"role": "user", "content": prompt}]
response = hf_api.chat_completion(
model=model_id,
messages=messages,
max_tokens=max_tokens,
temperature=temperature
)
return response["choices"][0]["message"]["content"]
else:
# Use text generation for other models
response = hf_api.text_generation(
model=model_id,
prompt=prompt,
max_new_tokens=max_tokens,
temperature=temperature,
top_p=top_p
)
return response.get("generated_text", "")
except Exception as e:
error_str = str(e)
# Check if it's a model not supported error
if "model_not_supported" in error_str or "not supported by any provider" in error_str:
# Try to get fallback models
try:
fallback_models = hf_api._find_fallback_models(model_id)
if fallback_models:
fallback_list = "\n".join([f"- {m['id']}" for m in fallback_models[:3]])
return f"Error: Model {model_id} is not supported. Try one of these models instead:\n{fallback_list}\n\nOriginal error: {error_str}"
else:
return f"Error: Model {model_id} is not supported and no fallback models are available.\n\nOriginal error: {error_str}"
except:
return f"Error: Model {model_id} is not supported. Please try a different model.\n\nOriginal error: {error_str}"
else:
return f"Error: {error_str}"
def summarize_text(text: str, model_id: str, max_length: int, min_length: int):
"""Summarize text"""
if not hf_api:
return "Please set your HuggingFace token in Settings first."
if not text.strip():
return ""
try:
response = hf_api.summarization(
model=model_id,
text=text,
max_length=max_length,
min_length=min_length
)
if isinstance(response, list) and len(response) > 0:
return response[0].get('summary_text', '')
elif isinstance(response, dict):
return response.get('summary_text', str(response))
return str(response)
except Exception as e:
return f"Error: {str(e)}"
def translate_text(text: str, model_id: str, target_language: str = "", source_language: str = "Auto-detect"):
"""Translate text"""
if not hf_api:
return "Please set your HuggingFace token in Settings first."
if not text.strip():
return ""
try:
# Use Google Translate Gemma module for Google TranslateGemma model
if "translategemma" in model_id.lower():
if not GOOGLE_TRANSLATE_AVAILABLE:
# If Google Translate is not available, fall back to chat completion
print("Google Translate Gemma not available, falling back to chat completion")
source_info = f" from {source_language}" if source_language != "Auto-detect" else ""
system_prompt = f"You are a professional translator specializing in translating{source_info} to {target_language}. Translate the given text accurately while preserving the original meaning and tone. Only provide the translation without any additional explanations."
prompt = f"Translate the following text{source_info} to {target_language}: {text}"
messages = [
{"role": "system", "content": system_prompt},
{"role": "user", "content": prompt}
]
response = hf_api.chat_completion(
model=model_id,
messages=messages,
max_tokens=1024,
temperature=0.3
)
return response["choices"][0]["message"]["content"].strip()
try:
# Initialize the translator
translator = GoogleTranslateGemma()
# Map language names to language codes
lang_code_map = {
"English": "en",
"Spanish": "es",
"French": "fr",
"German": "de-DE",
"Chinese (Simplified)": "zh-CN",
"Chinese (Traditional)": "zh-TW",
"Japanese": "ja",
"Korean": "ko",
"Italian": "it",
"Portuguese": "pt",
"Russian": "ru",
"Arabic": "ar",
"Hindi": "hi",
"Dutch": "nl",
"Turkish": "tr",
"Polish": "pl",
"Vietnamese": "vi",
"Thai": "th",
"Indonesian": "id",
"Greek": "el",
"Hebrew": "he",
"Czech": "cs",
"Swedish": "sv",
"Danish": "da",
"Norwegian": "no",
"Finnish": "fi"
}
# Get source language code
source_lang = "en" # Default to English
if source_language != "Auto-detect" and source_language in lang_code_map:
source_lang = lang_code_map[source_language]
# Get target language code
target_lang = "en" # Default to English
if target_language in lang_code_map:
target_lang = lang_code_map[target_language]
# Perform translation
translated = translator.translate_text(
text=text,
source_lang=source_lang,
target_lang=target_lang
)
return translated
except Exception as gemma_e:
# If Google Translate Gemma fails, fall back to chat completion
print(f"Google Translate Gemma failed, falling back to chat completion: {str(gemma_e)}")
# Use chat completion as fallback
source_info = f" from {source_language}" if source_language != "Auto-detect" else ""
system_prompt = f"You are a professional translator specializing in translating{source_info} to {target_language}. Translate the given text accurately while preserving the original meaning and tone. Only provide the translation without any additional explanations."
prompt = f"Translate the following text{source_info} to {target_language}: {text}"
messages = [
{"role": "system", "content": system_prompt},
{"role": "user", "content": prompt}
]
response = hf_api.chat_completion(
model=model_id,
messages=messages,
max_tokens=1024,
temperature=0.3
)
return response["choices"][0]["message"]["content"].strip()
# For models that support chat completion (like Llama and Mistral)
elif "llama" in model_id.lower() or "mistral" in model_id.lower():
# Use chat completion for translation
# Dynamic system prompt based on target and source language
if target_language:
source_info = f" from {source_language}" if source_language != "Auto-detect" else ""
system_prompt = f"You are a professional translator specializing in translating{source_info} to {target_language}. Translate the given text accurately while preserving the original meaning and tone. Only provide the translation without any additional explanations."
prompt = f"Translate the following text{source_info} to {target_language}: {text}"
else:
system_prompt = "You are a professional translator. Translate the given text accurately while preserving the original meaning and tone. Only provide the translation without any additional explanations."
prompt = f"Translate this text: {text}"
messages = [
{
"role": "system",
"content": system_prompt
},
{
"role": "user",
"content": prompt
}
]
response = hf_api.chat_completion(
model=model_id,
messages=messages,
max_tokens=1024,
temperature=0.3
)
return response["choices"][0]["message"]["content"].strip()
else:
# Use the standard translation endpoint for other models
response = hf_api.translation(
model=model_id,
text=text
)
if isinstance(response, list) and len(response) > 0:
return response[0].get('translation_text', '')
elif isinstance(response, dict):
return response.get('translation_text', str(response))
return str(response)
except Exception as e:
# Handle specific model errors with better fallback options
error_str = str(e).lower()
if "model_not_supported" in error_str or "not supported by any provider" in error_str or "inference api enabled" in error_str:
# Try fallback models for translation
fallback_models = [
"Helsinki-NLP/opus-mt-en-es", # English to Spanish
"Helsinki-NLP/opus-mt-en-fr", # English to French
"Helsinki-NLP/opus-mt-en-de", # English to German
"Helsinki-NLP/opus-mt-en-zh", # English to Chinese
"Helsinki-NLP/opus-mt-en-ja", # English to Japanese
"meta-llama/Llama-3.2-3B-Instruct" # Llama as general fallback
]
# Try each fallback model
for fallback_model in fallback_models:
try:
# For Llama models, use chat completion
if "llama" in fallback_model.lower():
system_prompt = "You are a professional translator. Translate the given text accurately while preserving the original meaning and tone. Only provide the translation without any additional explanations."
# If target language is specified, include it in the instruction
if target_language:
prompt = f"Translate the following text to {target_language}: {text}"
else:
prompt = f"Translate this text: {text}"
messages = [
{
"role": "system",
"content": system_prompt
},
{
"role": "user",
"content": prompt
}
]
response = hf_api.chat_completion(
model=fallback_model,
messages=messages,
max_tokens=1024,
temperature=0.3
)
return f"{response['choices'][0]['message']['content'].strip()}"
# For Helsinki models, use standard translation
else:
response = hf_api.translation(
model=fallback_model,
text=text
)
if isinstance(response, list) and len(response) > 0:
return f"{response[0].get('translation_text', '')}"
elif isinstance(response, dict):
return f"{response.get('translation_text', str(response))}"
except Exception as fallback_e:
continue # Try next fallback model
# If all fallbacks fail, return original error with suggestions
return f"Error: {str(e)}. Tried fallback models but none worked. Please try a different model or check your HuggingFace token."
else:
return f"Error: {str(e)}"
def translate_image(image_path: str, model_id: str, target_language: str = "", source_language: str = "Auto-detect"):
"""Translate text from image"""
if not image_path:
return "Please upload an image first."
# Only Google TranslateGemma supports image translation
if "translategemma" not in model_id.lower():
return "Image translation is only supported with Google TranslateGemma model. Please select 'google/translategemma-12b-it' from the model dropdown."
if not GOOGLE_TRANSLATE_AVAILABLE:
return "Google Translate Gemma is not available. Please check your installation of transformers, torch, and torchvision."
try:
# Initialize the translator
translator = GoogleTranslateGemma()
# Map language names to language codes
lang_code_map = {
"English": "en",
"Spanish": "es",
"French": "fr",
"German": "de-DE",
"Chinese (Simplified)": "zh-CN",
"Chinese (Traditional)": "zh-TW",
"Japanese": "ja",
"Korean": "ko",
"Italian": "it",
"Portuguese": "pt",
"Russian": "ru",
"Arabic": "ar",
"Hindi": "hi",
"Dutch": "nl",
"Turkish": "tr",
"Polish": "pl",
"Vietnamese": "vi",
"Thai": "th",
"Indonesian": "id",
"Greek": "el",
"Hebrew": "he",
"Czech": "cs",
"Swedish": "sv",
"Danish": "da",
"Norwegian": "no",
"Finnish": "fi"
}
# Get source language code
source_lang = "en" # Default to English
if source_language != "Auto-detect" and source_language in lang_code_map:
source_lang = lang_code_map[source_language]
# Get target language code
target_lang = "en" # Default to English
if target_language in lang_code_map:
target_lang = lang_code_map[target_language]
# Translate from image (now supports local files)
translated = translator.translate_image(
image_input=image_path,
source_lang=source_lang,
target_lang=target_lang
)
return translated
except Exception as e:
return f"Error: {str(e)}"
def answer_question(question: str, context: str, model_id: str):
"""Answer question based on context"""
if not hf_api:
return "Please set your HuggingFace token in Settings first.", 0.0
if not question.strip() or not context.strip():
return "", 0.0
try:
response = hf_api.question_answering(
model=model_id,
question=question,
context=context
)
answer = response.get('answer', '')
score = response.get('score', 0.0)
return answer, round(score, 4)
except Exception as e:
return f"Error: {str(e)}", 0.0
def generate_image(prompt: str, model_id: str, negative_prompt: str, num_steps: int):
"""Generate image from prompt"""
if not hf_api:
return None
if not prompt.strip():
return None
try:
image_bytes = hf_api.image_generation(
model=model_id,
prompt=prompt,
negative_prompt=negative_prompt if negative_prompt.strip() else None,
num_inference_steps=num_steps
)
# Save to temp file and return path
import tempfile
temp_path = os.path.join(tempfile.gettempdir(), "generated_image.png")
with open(temp_path, "wb") as f:
f.write(image_bytes)
return temp_path
except Exception as e:
gr.Warning(f"Image generation error: {str(e)}")
return None
# ============ Model Management Functions ============
def search_hf_models(query: str, task: str, limit: int):
"""Search HuggingFace models"""
if not hf_api:
return []
if not query.strip():
return []
try:
models = list(hf_api.list_models(
search=query,
pipeline_tag=task,
sort="downloads",
direction=-1,
limit=limit
))
results = []
for model in models:
downloads = model.downloads or 0
likes = model.likes or 0
downloads_str = f"{downloads/1000000:.1f}M" if downloads >= 1000000 else f"{downloads/1000:.1f}K" if downloads >= 1000 else str(downloads)
results.append([
model.id,
model.author or '',
model.pipeline_tag or '',
downloads_str,
likes
])
return results
except Exception as e:
gr.Warning(f"Search error: {str(e)}")
return []
def get_model_info(model_id: str):
"""Get detailed model information"""
if not hf_api or not model_id.strip():
return "No model ID provided"
try:
info = hf_api.model_info(model_id)
downloads = info.downloads or 0
likes = info.likes or 0
result = f"""### {model_id}
**Author:** {info.author or 'Unknown'}
**Pipeline:** {info.pipeline_tag or 'N/A'}
**Library:** {info.library_name or 'N/A'}
**Downloads:** {downloads:,}
**Likes:** {likes:,}
**Tags:** {', '.join(info.tags[:15]) if info.tags else 'None'}
**Created:** {str(info.created_at)[:10] if info.created_at else 'Unknown'}
"""
return result
except Exception as e:
return f"Error fetching model info: {str(e)}"
def add_model_to_settings(model_id: str, name: str, role: str, temperature: float, max_tokens: int, system_prompt: str):
"""Add a model to settings"""
if not model_id.strip():
return "Model ID is required", get_models_table()
settings = load_settings(MODELS_SETTINGS_FILE)
if 'models' not in settings:
settings['models'] = []
# Generate unique ID
unique_id = f"model-{int(datetime.now().timestamp() * 1000)}"
model_data = {
"id": unique_id,
"name": name or model_id.split('/')[-1],
"modelId": model_id,
"role": role,
"temperature": temperature,
"maxTokens": max_tokens,
"systemPrompt": system_prompt,
"keywords": [],
"enabled": True,
"createdAt": int(datetime.now().timestamp() * 1000),
"updatedAt": int(datetime.now().timestamp() * 1000)
}
settings['models'].append(model_data)
save_settings(MODELS_SETTINGS_FILE, settings)
return f"Model '{name or model_id}' added successfully!", get_models_table()
def get_models_table():
"""Get models as table data"""
settings = load_settings(MODELS_SETTINGS_FILE)
models = settings.get('models', [])
table_data = []
for m in models:
table_data.append([
m.get('id', ''),
m.get('name', ''),
m.get('modelId', ''),
m.get('role', ''),
m.get('temperature', 0.3),
m.get('maxTokens', 500),
"β" if m.get('enabled', True) else "β"
])
return table_data
def delete_model(model_id: str):
"""Delete a model from settings"""
if not model_id.strip():
return "No model selected", get_models_table()
settings = load_settings(MODELS_SETTINGS_FILE)
if 'models' in settings:
settings['models'] = [m for m in settings['models'] if m['id'] != model_id]
save_settings(MODELS_SETTINGS_FILE, settings)
return f"Model deleted", get_models_table()
return "Model not found", get_models_table()
def toggle_model(model_id: str, enabled: bool):
"""Toggle model enabled state"""
settings = load_settings(MODELS_SETTINGS_FILE)
if 'models' in settings:
for m in settings['models']:
if m['id'] == model_id:
m['enabled'] = enabled
m['updatedAt'] = int(datetime.now().timestamp() * 1000)
break
save_settings(MODELS_SETTINGS_FILE, settings)
return get_models_table()
# ============ Settings Functions ============
def save_hf_token(token: str):
"""Save HuggingFace token"""
settings = load_settings(MODELS_SETTINGS_FILE)
settings['huggingfaceToken'] = token
save_settings(MODELS_SETTINGS_FILE, settings)
reinit_api(token)
return "Token saved successfully!"
def get_hf_token():
"""Get current HuggingFace token"""
settings = load_settings(MODELS_SETTINGS_FILE)
return settings.get('huggingfaceToken', '')
def get_account_info():
"""Get HuggingFace account info"""
if not hf_api:
return "No API token configured"
try:
info = hf_api.hf_api.whoami()
return f"""### Account Info
**Username:** {info.get('name', 'Unknown')}
**Email:** {info.get('email', 'Not available')}
**Organizations:** {len(info.get('orgs', []))}
"""
except Exception as e:
return f"Error: {str(e)}"
# ============ Gradio Interface ============
# Custom CSS for professional dark theme
custom_css = """
/* Dark theme with modern design */
.gradio-container {
background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%) !important;
color: #e0e0e0 !important;
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}
/* Header styling */
.main-header {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
padding: 2rem !important;
border-radius: 16px !important;
margin-bottom: 2rem !important;
box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3) !important;
border: 1px solid rgba(255, 255, 255, 0.1) !important;
}
.main-header h1 {
color: white !important;
margin: 0 !important;
font-size: 2.5rem !important;
font-weight: 700 !important;
text-shadow: 0 2px 4px rgba(0,0,0,0.3) !important;
}
.main-header p {
color: rgba(255,255,255,0.9) !important;
margin: 0.5rem 0 0 0 !important;
font-size: 1.1rem !important;
}
/* Tab styling */
.tabs {
background: transparent !important;
border-radius: 12px !important;
overflow: hidden !important;
}
.tab-nav {
background: rgba(255, 255, 255, 0.05) !important;
border: 1px solid rgba(255, 255, 255, 0.1) !important;
border-radius: 12px !important;
padding: 0.5rem !important;
margin-bottom: 1.5rem !important;
}
.tab-nav button {
background: transparent !important;
color: #a0a0a0 !important;
border: none !important;
padding: 0.75rem 1.5rem !important;
margin: 0 0.25rem !important;
border-radius: 8px !important;
transition: all 0.3s ease !important;
font-weight: 500 !important;
}
.tab-nav button:hover {
background: rgba(255, 255, 255, 0.1) !important;
color: #ffffff !important;
}
.tab-nav button.selected {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
color: white !important;
box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3) !important;
}
/* Card styling */
.gradio-box {
background: rgba(255, 255, 255, 0.05) !important;
border: 1px solid rgba(255, 255, 255, 0.1) !important;
border-radius: 12px !important;
padding: 1.5rem !important;
backdrop-filter: blur(10px) !important;
transition: all 0.3s ease !important;
}
.gradio-box:hover {
background: rgba(255, 255, 255, 0.08) !important;
border-color: rgba(255, 255, 255, 0.15) !important;
transform: translateY(-2px) !important;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2) !important;
}
/* Button styling */
.gradio-button {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
color: white !important;
border: none !important;
padding: 0.75rem 1.5rem !important;
border-radius: 8px !important;
font-weight: 600 !important;
transition: all 0.3s ease !important;
box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3) !important;
}
.gradio-button:hover {
transform: translateY(-2px) !important;
box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4) !important;
}
.gradio-button.secondary {
background: rgba(255, 255, 255, 0.1) !important;
color: #e0e0e0 !important;
border: 1px solid rgba(255, 255, 255, 0.2) !important;
}
/* Input styling */
.gradio-textbox, .gradio-dropdown {
background: rgba(255, 255, 255, 0.05) !important;
border: 1px solid rgba(255, 255, 255, 0.2) !important;
border-radius: 8px !important;
color: #e0e0e0 !important;
transition: all 0.3s ease !important;
}
.gradio-textbox:focus, .gradio-dropdown:focus {
border-color: #667eea !important;
box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2) !important;
background: rgba(255, 255, 255, 0.08) !important;
}
.gradio-textbox::placeholder {
color: rgba(255, 255, 255, 0.5) !important;
}
/* Slider styling */
.gradio-slider {
background: rgba(255, 255, 255, 0.1) !important;
}
.gradio-slider .slider-track {
background: linear-gradient(90deg, #667eea 0%, #764ba2 100%) !important;
}
/* Chatbot styling */
.gradio-chatbot {
background: rgba(255, 255, 255, 0.03) !important;
border: 1px solid rgba(255, 255, 255, 0.1) !important;
border-radius: 12px !important;
}
.gradio-chatbot .message {
background: rgba(255, 255, 255, 0.05) !important;
border-radius: 8px !important;
margin: 0.5rem !important;
padding: 1rem !important;
}
.gradio-chatbot .message.user {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
color: white !important;
}
/* Dataframe styling */
.gradio-dataframe {
background: rgba(255, 255, 255, 0.05) !important;
border: 1px solid rgba(255, 255, 255, 0.1) !important;
border-radius: 8px !important;
}
.gradio-dataframe table {
color: #e0e0e0 !important;
}
.gradio-dataframe th {
background: rgba(255, 255, 255, 0.1) !important;
border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
}
.gradio-dataframe td {
border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}
/* Markdown styling */
.gradio-markdown {
color: #e0e0e0 !important;
}
.gradio-markdown h1, .gradio-markdown h2, .gradio-markdown h3 {
color: #ffffff !important;
margin-top: 1.5rem !important;
}
.gradio-markdown a {
color: #667eea !important;
}
/* Footer styling */
footer {
background: rgba(255, 255, 255, 0.03) !important;
border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
padding: 1.5rem !important;
text-align: center !important;
color: rgba(255, 255, 255, 0.6) !important;
}
/* Loading animation */
.loading {
display: inline-block;
width: 20px;
height: 20px;
border: 3px solid rgba(255, 255, 255, 0.3);
border-radius: 50%;
border-top-color: #667eea;
animation: spin 1s ease-in-out infinite;
}
@keyframes spin {
to { transform: rotate(360deg); }
}
/* Responsive design */
@media (max-width: 768px) {
.main-header h1 {
font-size: 2rem !important;
}
.gradio-box {
padding: 1rem !important;
}
.tab-nav button {
padding: 0.5rem 1rem !important;
font-size: 0.9rem !important;
}
}
/* Custom component styles */
.chatbot-container {
background: rgba(255, 255, 255, 0.03) !important;
border: 1px solid rgba(255, 255, 255, 0.1) !important;
border-radius: 12px !important;
overflow: hidden !important;
}
.chat-input textarea {
background: rgba(255, 255, 255, 0.05) !important;
border: 1px solid rgba(255, 255, 255, 0.2) !important;
border-radius: 8px !important;
resize: none !important;
transition: all 0.3s ease !important;
}
.chat-input textarea:focus {
border-color: #667eea !important;
box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2) !important;
}
.send-button {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
border: none !important;
height: 100% !important;
min-height: 40px !important;
}
.settings-group {
background: rgba(255, 255, 255, 0.05) !important;
border: 1px solid rgba(255, 255, 255, 0.1) !important;
border-radius: 12px !important;
padding: 1.5rem !important;
}
.input-group, .output-group {
background: rgba(255, 255, 255, 0.05) !important;
border: 1px solid rgba(255, 255, 255, 0.1) !important;
border-radius: 12px !important;
padding: 1.5rem !important;
height: 100% !important;
}
.output-textarea {
background: rgba(255, 255, 255, 0.03) !important;
border: 1px solid rgba(255, 255, 255, 0.1) !important;
border-radius: 8px !important;
font-family: 'Inter', monospace !important;
line-height: 1.6 !important;
}
.translation-input, .translation-output {
background: rgba(255, 255, 255, 0.05) !important;
border: 1px solid rgba(255, 255, 255, 0.1) !important;
border-radius: 12px !important;
padding: 1.5rem !important;
}
.translation-result {
background: rgba(102, 126, 234, 0.1) !important;
border: 1px solid rgba(102, 126, 234, 0.3) !important;
border-radius: 8px !important;
font-weight: 500 !important;
}
.image-controls, .image-output {
background: rgba(255, 255, 255, 0.05) !important;
border: 1px solid rgba(255, 255, 255, 0.1) !important;
border-radius: 12px !important;
padding: 1.5rem !important;
}
.generated-image {
border-radius: 8px !important;
overflow: hidden !important;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
}
/* Animation classes */
.fade-in {
animation: fadeIn 0.5s ease-in-out;
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: translateY(0); }
}
.slide-up {
animation: slideUp 0.3s ease-out;
}
@keyframes slideUp {
from { transform: translateY(20px); opacity: 0; }
to { transform: translateY(0); opacity: 1; }
}
/* Custom scrollbar */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: rgba(255, 255, 255, 0.05);
border-radius: 4px;
}
::-webkit-scrollbar-thumb {
background: rgba(102, 126, 234, 0.5);
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: rgba(102, 126, 234, 0.7);
}
"""
# Build the Gradio app
with gr.Blocks(
title="AI Assistant - HuggingFace",
theme=gr.themes.Soft(
primary_hue="purple",
secondary_hue="blue",
neutral_hue="slate",
font=["Inter", "system-ui", "sans-serif"]
),
css=custom_css
) as app:
# Header with modern design
gr.HTML("""
<div class="main-header">
<div style="display: flex; align-items: center; justify-content: space-between;">
<div>
<h1 style="display: flex; align-items: center; gap: 1rem;">
<span style="font-size: 2.5rem;">π€</span>
AI Assistant
</h1>
<p style="margin-top: 0.5rem; opacity: 0.9;">Powered by HuggingFace Hub β’ Advanced AI Models</p>
</div>
<div style="display: flex; gap: 1rem; align-items: center;">
<div style="background: rgba(255,255,255,0.1); padding: 0.5rem 1rem; border-radius: 20px; font-size: 0.9rem;">
<span style="color: #4ade80;">β</span> System Online
</div>
</div>
</div>
</div>
""")
with gr.Tabs() as tabs:
# ============ Chat Tab ============
with gr.Tab("π¬ Chat", id="chat"):
with gr.Row(equal_height=True):
with gr.Column(scale=3):
# Chat header
gr.HTML("""
<div style="background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
padding: 1rem; border-radius: 12px; margin-bottom: 1rem;
border: 1px solid rgba(255, 255, 255, 0.1);">
<h3 style="margin: 0; color: white; display: flex; align-items: center; gap: 0.5rem;">
<span>π¬</span> Conversation
</h3>
<p style="margin: 0.5rem 0 0 0; opacity: 0.8; font-size: 0.9rem;">
Interactive chat with AI models
</p>
</div>
""")
chatbot = gr.Chatbot(
label="",
height=500,
placeholder="Start a conversation... Type your message below",
value=[],
show_label=False,
container=True,
elem_classes=["chatbot-container"]
)
with gr.Row():
with gr.Column(scale=4):
chat_input = gr.Textbox(
placeholder="Type your message here... (Press Enter to send)",
label="",
show_label=False,
lines=1,
max_lines=5,
elem_classes=["chat-input"]
)
with gr.Column(scale=1, min_width=100):
send_btn = gr.Button(
"Send",
variant="primary",
size="lg",
elem_classes=["send-button"]
)
with gr.Row():
clear_btn = gr.Button(
"ποΈ Clear Chat",
size="sm",
variant="secondary",
elem_classes=["action-button"]
)
with gr.Column(scale=1):
gr.HTML("""
<div style="text-align: right; opacity: 0.6; font-size: 0.8rem; margin-top: 0.5rem;">
Tip: Press Shift+Enter for new line
</div>
""")
with gr.Column(scale=1, min_width=300):
# Settings panel
gr.HTML("""
<div style="background: rgba(255, 255, 255, 0.05);
padding: 1rem; border-radius: 12px; margin-bottom: 1rem;
border: 1px solid rgba(255, 255, 255, 0.1);">
<h3 style="margin: 0; color: white; display: flex; align-items: center; gap: 0.5rem;">
<span>βοΈ</span> Chat Settings
</h3>
</div>
""")
with gr.Group(elem_classes=["settings-group"]):
chat_model = gr.Dropdown(
choices=get_model_choices(),
value=get_model_choices()[0] if get_model_choices() else None,
label="π€ Model",
interactive=True,
info="Select AI model for conversation"
)
chat_temp = gr.Slider(
minimum=0.1,
maximum=1.0,
value=0.7,
step=0.1,
label="π‘οΈ Temperature",
info="Controls randomness (0.1 = focused, 1.0 = creative)"
)
chat_max_tokens = gr.Slider(
minimum=50,
maximum=4096,
value=500,
step=50,
label="π Max Tokens",
info="Maximum response length"
)
chat_system = gr.Textbox(
label="π― System Prompt",
placeholder="You are a helpful assistant...",
lines=3,
info="Define AI behavior and personality"
)
refresh_models_btn = gr.Button(
"π Refresh Models",
size="sm",
variant="secondary",
elem_classes=["refresh-button"]
)
def respond(message, history, model, temp, max_tok, system):
if not message.strip():
return history, ""
response = chat_response(message, history, model, temp, max_tok, system)
# Use tuple format for default chatbot
history.append((message, response))
return history, ""
send_btn.click(
respond,
inputs=[chat_input, chatbot, chat_model, chat_temp, chat_max_tokens, chat_system],
outputs=[chatbot, chat_input]
)
chat_input.submit(
respond,
inputs=[chat_input, chatbot, chat_model, chat_temp, chat_max_tokens, chat_system],
outputs=[chatbot, chat_input]
)
clear_btn.click(lambda: [], outputs=[chatbot])
refresh_models_btn.click(
lambda: gr.update(choices=get_model_choices()),
outputs=[chat_model]
)
# ============ Text Generation Tab ============
with gr.Tab("π Text Generation", id="text-gen"):
gr.HTML("""
<div style="background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
padding: 1.5rem; border-radius: 12px; margin-bottom: 1.5rem;
border: 1px solid rgba(255, 255, 255, 0.1);">
<h3 style="margin: 0; color: white; display: flex; align-items: center; gap: 0.5rem;">
<span>π</span> Text Generation
</h3>
<p style="margin: 0.5rem 0 0 0; opacity: 0.8;">
Generate creative text, stories, articles, and more with AI
</p>
</div>
""")
with gr.Row(equal_height=True):
with gr.Column(scale=1):
with gr.Group(elem_classes=["input-group"]):
gen_prompt = gr.Textbox(
label="βοΈ Prompt",
placeholder="Enter your prompt for text generation... Be creative and specific!",
lines=6,
info="The more detailed your prompt, the better the result"
)
with gr.Row():
gen_model = gr.Dropdown(
choices=get_model_choices(),
value=get_model_choices()[0] if get_model_choices() else None,
label="π€ Model",
info="Choose model for generation"
)
gen_temp = gr.Slider(
0.1, 1.0, 0.7, step=0.1,
label="π‘οΈ Temperature",
info="Creativity level"
)
with gr.Row():
gen_max_tokens = gr.Slider(
50, 2048, 250, step=50,
label="π Max Tokens",
info="Response length"
)
gen_top_p = gr.Slider(
0.1, 1.0, 0.95, step=0.05,
label="π― Top P",
info="Nucleus sampling"
)
gen_btn = gr.Button(
"β¨ Generate",
variant="primary",
size="lg",
elem_classes=["generate-button"]
)
with gr.Column(scale=1):
with gr.Group(elem_classes=["output-group"]):
gen_output = gr.Textbox(
label="π Generated Text",
lines=18,
show_label=True,
info="AI-generated content will appear here",
elem_classes=["output-textarea"]
)
with gr.Row():
copy_gen_btn = gr.Button(
"π Copy",
size="sm",
variant="secondary",
elem_classes=["copy-button"]
)
regenerate_btn = gr.Button(
"π Regenerate",
size="sm",
variant="secondary"
)
gen_btn.click(
text_generation,
inputs=[gen_prompt, gen_model, gen_temp, gen_max_tokens, gen_top_p],
outputs=[gen_output]
)
copy_gen_btn.click(
fn=None,
js="(text) => { navigator.clipboard.writeText(text); alert('Text copied to clipboard!'); }",
inputs=[gen_output]
)
# ============ Summarization Tab ============
with gr.Tab("π Summarization", id="summarize"):
with gr.Row():
with gr.Column():
sum_text = gr.Textbox(
label="Text to Summarize",
placeholder="Paste the text you want to summarize...",
lines=10
)
sum_model = gr.Dropdown(
choices=["facebook/bart-large-cnn", "sshleifer/distilbart-cnn-12-6", "google/pegasus-xsum"],
value="facebook/bart-large-cnn",
label="Model"
)
with gr.Row():
sum_max_len = gr.Slider(50, 500, 150, step=10, label="Max Length")
sum_min_len = gr.Slider(10, 100, 30, step=5, label="Min Length")
sum_btn = gr.Button("Summarize", variant="primary")
with gr.Column():
sum_output = gr.Textbox(
label="Summary",
lines=8
)
sum_btn.click(
summarize_text,
inputs=[sum_text, sum_model, sum_max_len, sum_min_len],
outputs=[sum_output]
)
# ============ Translation Tab ============
with gr.Tab("π Translation", id="translate"):
gr.HTML("""
<div style="background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
padding: 1.5rem; border-radius: 12px; margin-bottom: 1.5rem;
border: 1px solid rgba(255, 255, 255, 0.1);">
<h3 style="margin: 0; color: white; display: flex; align-items: center; gap: 0.5rem;">
<span>π</span> Translation
</h3>
<p style="margin: 0.5rem 0 0 0; opacity: 0.8;">
Translate text between multiple languages with advanced AI models
</p>
</div>
""")
with gr.Row(equal_height=True):
with gr.Column(scale=1):
with gr.Group(elem_classes=["translation-input"]):
gr.HTML("""
<div style="background: rgba(255, 255, 255, 0.05); padding: 1rem; border-radius: 8px; margin-bottom: 1rem;">
<h4 style="margin: 0; color: white; font-size: 0.9rem;">
π Translation Models
</h4>
<ul style="margin: 0.5rem 0 0 0; padding-left: 1.5rem; color: rgba(255,255,255,0.8); font-size: 0.85rem;">
<li><strong>Google TranslateGemma</strong> - Advanced multilingual translation</li>
<li><strong>Llama 3.2</strong> - Multilingual with dynamic prompts</li>
<li><strong>MADLAD-400</strong> - 400+ languages support</li>
<li><strong>Helsinki-NLP</strong> - Specialized language pairs</li>
</ul>
<p style="margin: 0.5rem 0 0 0; padding: 0.5rem; background: rgba(102, 126, 234, 0.1); border-radius: 4px; font-size: 0.8rem;">
<strong>β¨ New:</strong> Target language selection now works with all models!
</p>
<p style="margin: 0.5rem 0 0 0; padding: 0.5rem; background: rgba(255, 255, 0, 0.1); border-radius: 4px; font-size: 0.8rem;">
<strong>Note:</strong> If a model is not available, the system will automatically try fallback models.
</p>
</div>
""")
trans_text = gr.Textbox(
label="π Text to Translate",
placeholder="Enter text to translate...",
lines=6,
info="Supports multiple languages and formats"
)
trans_model = gr.Dropdown(
choices=[
"google/translategemma-12b-it",
"meta-llama/Llama-3.2-3B-Instruct",
"google/madlad400-3b-mt",
"Helsinki-NLP/opus-mt-en-de",
"Helsinki-NLP/opus-mt-en-fr",
"Helsinki-NLP/opus-mt-en-es",
"Helsinki-NLP/opus-mt-en-zh",
"Helsinki-NLP/opus-mt-en-ja",
"Helsinki-NLP/opus-mt-de-en",
"Helsinki-NLP/opus-mt-fr-en",
"Helsinki-NLP/opus-mt-es-en"
],
value="google/translategemma-12b-it",
label="π€ Translation Model",
info="Choose model based on your language needs"
)
# Target language selection (works with all models)
target_language = gr.Dropdown(
choices=[
"English", "Spanish", "French", "German", "Chinese (Simplified)", "Chinese (Traditional)",
"Japanese", "Korean", "Italian", "Portuguese", "Russian", "Arabic", "Hindi",
"Dutch", "Turkish", "Polish", "Vietnamese", "Thai", "Indonesian",
"Greek", "Hebrew", "Czech", "Swedish", "Danish", "Norwegian", "Finnish"
],
value="English",
label="π― Target Language",
info="Select target language for translation (works with all models)",
visible=True
)
# Source language selection (optional)
source_language = gr.Dropdown(
choices=[
"Auto-detect", "English", "Spanish", "French", "German", "Chinese (Simplified)", "Chinese (Traditional)",
"Japanese", "Korean", "Italian", "Portuguese", "Russian", "Arabic", "Hindi",
"Dutch", "Turkish", "Polish", "Vietnamese", "Thai", "Indonesian"
],
value="Auto-detect",
label="π€ Source Language",
info="Select source language or leave as Auto-detect",
visible=True
)
trans_btn = gr.Button(
"π Translate",
variant="primary",
size="lg",
elem_classes=["translate-button"]
)
# Image translation section
gr.HTML("""
<div style="background: rgba(255, 255, 255, 0.05); padding: 1rem; border-radius: 8px; margin: 1rem 0;">
<h4 style="margin: 0; color: white; font-size: 0.9rem;">
πΌοΈ Image Translation (Google TranslateGemma only)
</h4>
<p style="margin: 0.5rem 0 0 0; color: rgba(255,255,255,0.8); font-size: 0.85rem;">
Upload an image containing text to extract and translate it
</p>
</div>
""")
trans_image = gr.Image(
label="πΌοΈ Upload Image",
type="filepath",
visible=True # Initially visible since default model is TranslateGemma
)
trans_image_btn = gr.Button(
"πΌοΈ Translate Image",
variant="secondary",
size="lg",
elem_classes=["translate-button"],
visible=True # Initially visible since default model is TranslateGemma
)
with gr.Column(scale=1):
with gr.Group(elem_classes=["translation-output"]):
trans_output = gr.Textbox(
label="β
Translation Result",
lines=6,
info="Translated text will appear here",
elem_classes=["translation-result"]
)
with gr.Row():
copy_trans_btn = gr.Button(
"π Copy",
size="sm",
variant="secondary"
)
swap_lang_btn = gr.Button(
"π Swap Languages",
size="sm",
variant="secondary"
)
# Function to show/hide target language dropdown based on model selection
def update_target_language_visibility(model):
show = "translategemma" in model.lower()
return gr.update(visible=show)
# Function to show/hide image elements based on model selection
def update_image_visibility(model):
show = "translategemma" in model.lower()
return gr.update(visible=show)
# Update visibility when model changes
trans_model.change(
update_target_language_visibility,
inputs=[trans_model],
outputs=[target_language]
)
trans_model.change(
update_image_visibility,
inputs=[trans_model],
outputs=[trans_image]
)
trans_model.change(
update_image_visibility,
inputs=[trans_model],
outputs=[trans_image_btn]
)
trans_btn.click(
translate_text,
inputs=[trans_text, trans_model, target_language, source_language],
outputs=[trans_output]
)
trans_image_btn.click(
translate_image,
inputs=[trans_image, trans_model, target_language, source_language],
outputs=[trans_output]
)
# Swap languages functionality
def swap_languages(src_lang, tgt_lang, text):
# Swap source and target languages
# For simplicity, we'll just swap the dropdown values
# In a more complex implementation, you might want to translate the text as well
return tgt_lang, src_lang, ""
swap_lang_btn.click(
swap_languages,
inputs=[source_language, target_language, trans_text],
outputs=[source_language, target_language, trans_text]
)
# Copy translation functionality
def copy_translation(text):
# This will be handled by JavaScript in the frontend
return text
copy_trans_btn.click(
copy_translation,
inputs=[trans_output],
js="(text) => { navigator.clipboard.writeText(text); alert('Translation copied to clipboard!'); }"
)
# ============ Translation Testing Tab ============
with gr.Tab("π§ͺ Translation Testing", id="translation-testing"):
gr.HTML("""
<div style="background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
padding: 1.5rem; border-radius: 12px; margin-bottom: 1.5rem;
border: 1px solid rgba(255, 255, 255, 0.1);">
<h3 style="margin: 0; color: white; display: flex; align-items: center; gap: 0.5rem;">
<span>π§ͺ</span> Translation Testing
</h3>
<p style="margin: 0.5rem 0 0 0; opacity: 0.8;">
Test and validate translation functionality with comprehensive test scenarios
</p>
</div>
""")
with gr.Row(equal_height=True):
with gr.Column(scale=1):
with gr.Group(elem_classes=["test-input"]):
gr.HTML("""
<div style="background: rgba(255, 255, 255, 0.05); padding: 1rem; border-radius: 8px; margin-bottom: 1rem;">
<h4 style="margin: 0; color: white; font-size: 0.9rem;">
π§ͺ Test Options
</h4>
<p style="margin: 0.5rem 0 0 0; color: rgba(255,255,255,0.8); font-size: 0.85rem;">
Choose between single translation test or comprehensive test suite
</p>
</div>
""")
# Single test inputs
test_text = gr.Textbox(
label="π Test Text",
placeholder="Enter text to test translation...",
lines=3,
info="Text to translate for testing"
)
test_source_lang = gr.Dropdown(
choices=[
"en", "es", "fr", "de-DE", "zh-CN", "zh-TW", "ja", "ko", "it", "pt", "ru", "ar", "hi",
"nl", "tr", "pl", "vi", "th", "id", "el", "he", "cs", "sv", "da", "no", "fi"
],
value="en",
label="π€ Source Language Code",
info="ISO language code (e.g., 'en' for English)"
)
test_target_lang = gr.Dropdown(
choices=[
"en", "es", "fr", "de-DE", "zh-CN", "zh-TW", "ja", "ko", "it", "pt", "ru", "ar", "hi",
"nl", "tr", "pl", "vi", "th", "id", "el", "he", "cs", "sv", "da", "no", "fi"
],
value="es",
label="π― Target Language Code",
info="ISO language code (e.g., 'es' for Spanish)"
)
with gr.Row():
single_test_btn = gr.Button(
"π§ͺ Run Single Test",
variant="primary",
size="lg"
)
comprehensive_test_btn = gr.Button(
"π Run Comprehensive Tests",
variant="secondary",
size="lg"
)
with gr.Column(scale=1):
with gr.Group(elem_classes=["test-output"]):
test_output = gr.Textbox(
label="π Test Results",
lines=15,
info="Test results and diagnostics will appear here",
elem_classes=["test-result"]
)
test_summary = gr.Textbox(
label="π Test Summary",
lines=5,
info="Summary of test results",
elem_classes=["test-summary"]
)
copy_test_btn = gr.Button(
"π Copy Results",
size="sm",
variant="secondary"
)
# Test functions
def run_single_test(text, source_lang, target_lang):
"""Run a single translation test"""
if not text.strip():
return "β Please enter text to test", ""
result = test_translategemma(text, source_lang, target_lang)
if result:
return f"""
π§ͺ Single Translation Test Results
{"=" * 50}
β
Test completed successfully!
π Input:
Text: {text}
Source: {source_lang}
Target: {target_lang}
π Translation:
{result}
β
Status: PASSED
π§ Method: {'Google Translate Gemma' if GOOGLE_TRANSLATE_AVAILABLE else 'Chat Completion Fallback'}
""", "β
Single test completed successfully"
else:
return f"""
π§ͺ Single Translation Test Results
{"=" * 50}
β Test failed!
π Input:
Text: {text}
Source: {source_lang}
Target: {target_lang}
β Status: FAILED
π§ Method: {'Google Translate Gemma' if GOOGLE_TRANSLATE_AVAILABLE else 'Chat Completion Fallback'}
β οΈ Please check your HuggingFace token and model availability.
""", "β Single test failed"
def run_comprehensive_tests():
"""Run comprehensive translation tests"""
results, summary = run_multiple_translation_tests()
# Format results for display
output = "π§ͺ Comprehensive Translation Test Results\n" + "=" * 60 + "\n\n"
for i, result in enumerate(results, 1):
status = "β
PASSED" if result['success'] else "β FAILED"
output += f"π Test {i}: {result['case']}\n"
output += f" Status: {status}\n"
output += f" Original: {result['original']}\n"
if result['translation']:
output += f" Translation: {result['translation']}\n"
output += "\n"
return output, summary
# Button click handlers
single_test_btn.click(
run_single_test,
inputs=[test_text, test_source_lang, test_target_lang],
outputs=[test_output, test_summary]
)
comprehensive_test_btn.click(
run_comprehensive_tests,
inputs=[],
outputs=[test_output, test_summary]
)
# Copy test results functionality
def copy_test_results(results, summary):
# This will be handled by JavaScript in the frontend
return results + "\n\n" + summary
copy_test_btn.click(
copy_test_results,
inputs=[test_output, test_summary],
js="(results, summary) => { const text = results + '\\n\\n' + summary; navigator.clipboard.writeText(text); alert('Test results copied to clipboard!'); }"
)
# ============ Question Answering Tab ============
with gr.Tab("β Q&A", id="qa"):
with gr.Row():
with gr.Column():
qa_context = gr.Textbox(
label="Context",
placeholder="Paste the context/document here...",
lines=8
)
qa_question = gr.Textbox(
label="Question",
placeholder="What would you like to know?"
)
qa_model = gr.Dropdown(
choices=[
"deepset/roberta-base-squad2",
"distilbert-base-cased-distilled-squad",
"bert-large-uncased-whole-word-masking-finetuned-squad"
],
value="deepset/roberta-base-squad2",
label="Model"
)
qa_btn = gr.Button("Get Answer", variant="primary")
with gr.Column():
qa_answer = gr.Textbox(label="Answer", lines=3)
qa_score = gr.Number(label="Confidence Score")
qa_btn.click(
answer_question,
inputs=[qa_question, qa_context, qa_model],
outputs=[qa_answer, qa_score]
)
# ============ Image Generation Tab ============
with gr.Tab("π¨ Image Generation", id="image-gen"):
gr.HTML("""
<div style="background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
padding: 1.5rem; border-radius: 12px; margin-bottom: 1.5rem;
border: 1px solid rgba(255, 255, 255, 0.1);">
<h3 style="margin: 0; color: white; display: flex; align-items: center; gap: 0.5rem;">
<span>π¨</span> Image Generation
</h3>
<p style="margin: 0.5rem 0 0 0; opacity: 0.8;">
Create stunning images from text descriptions using advanced AI models
</p>
</div>
""")
with gr.Row(equal_height=True):
with gr.Column(scale=1):
with gr.Group(elem_classes=["image-controls"]):
img_prompt = gr.Textbox(
label="β¨ Prompt",
placeholder="Describe the image you want to generate... Be detailed and creative!",
lines=4,
info="Example: 'A beautiful sunset over mountains, digital art, highly detailed'"
)
img_negative = gr.Textbox(
label="π« Negative Prompt",
placeholder="What to avoid in the image... (optional)",
lines=2,
info="Example: 'blurry, low quality, distorted'"
)
with gr.Row():
img_model = gr.Dropdown(
choices=[
"stabilityai/stable-diffusion-xl-base-1.0",
"runwayml/stable-diffusion-v1-5",
"CompVis/stable-diffusion-v1-4"
],
value="stabilityai/stable-diffusion-xl-base-1.0",
label="π Model",
info="Choose image generation model"
)
img_steps = gr.Slider(
10, 100, 30, step=5,
label="βοΈ Steps",
info="More steps = better quality (slower)"
)
img_btn = gr.Button(
"π¨ Generate Image",
variant="primary",
size="lg",
elem_classes=["generate-image-button"]
)
gr.HTML("""
<div style="background: rgba(255, 255, 255, 0.05); padding: 1rem; border-radius: 8px; margin-top: 1rem;">
<h4 style="margin: 0; color: white; font-size: 0.9rem;">
π‘ Pro Tips
</h4>
<ul style="margin: 0.5rem 0 0 0; padding-left: 1.5rem; color: rgba(255,255,255,0.8); font-size: 0.85rem;">
<li>Be specific in your descriptions</li>
<li>Use art styles: 'digital art', 'oil painting', 'photo'</li>
<li>Add quality terms: 'highly detailed', '4K', 'sharp focus'</li>
</ul>
</div>
""")
with gr.Column(scale=1):
with gr.Group(elem_classes=["image-output"]):
img_output = gr.Image(
label="πΌοΈ Generated Image",
type="filepath",
elem_classes=["generated-image"]
)
with gr.Row():
download_btn = gr.Button(
"πΎ Download",
size="sm",
variant="secondary"
)
share_img_btn = gr.Button(
"π Share",
size="sm",
variant="secondary"
)
img_btn.click(
generate_image,
inputs=[img_prompt, img_model, img_negative, img_steps],
outputs=[img_output]
)
# ============ Models Tab ============
with gr.Tab("π§ Models", id="models"):
with gr.Row():
# Left: Search & Browse
with gr.Column(scale=2):
gr.Markdown("### π Search HuggingFace Models")
with gr.Row():
search_query = gr.Textbox(
placeholder="Search for models...",
show_label=False,
scale=3
)
search_task = gr.Dropdown(
choices=[
"text-generation",
"text-classification",
"summarization",
"translation",
"question-answering",
"image-classification",
"text-to-image"
],
value="text-generation",
show_label=False,
scale=2
)
search_limit = gr.Slider(5, 50, 10, step=5, label="Limit", scale=1)
search_btn = gr.Button("Search", variant="primary")
search_results = gr.Dataframe(
headers=["Model ID", "Author", "Task", "Downloads", "Likes"],
label="Search Results",
interactive=False,
wrap=True
)
gr.Markdown("### π Model Info")
model_info_input = gr.Textbox(
placeholder="Enter model ID to get info...",
label="Model ID"
)
get_info_btn = gr.Button("Get Info")
model_info_output = gr.Markdown(label="Model Information")
# Right: My Models
with gr.Column(scale=2):
gr.Markdown("### π¦ My Models")
my_models_table = gr.Dataframe(
headers=["ID", "Name", "Model ID", "Role", "Temp", "Max Tokens", "Enabled"],
value=get_models_table(),
label="Saved Models",
interactive=False
)
refresh_table_btn = gr.Button("π Refresh")
gr.Markdown("### β Add New Model")
add_model_id = gr.Textbox(label="Model ID", placeholder="e.g., meta-llama/Llama-3.2-3B-Instruct")
add_model_name = gr.Textbox(label="Display Name", placeholder="My Model")
add_model_role = gr.Dropdown(
choices=["assistant", "creative", "coder", "analyst", "custom"],
value="assistant",
label="Role"
)
with gr.Row():
add_model_temp = gr.Slider(0.1, 1.0, 0.3, step=0.1, label="Temperature")
add_model_tokens = gr.Slider(50, 4096, 500, step=50, label="Max Tokens")
add_model_system = gr.Textbox(
label="System Prompt",
placeholder="Optional system prompt...",
lines=2
)
add_model_btn = gr.Button("Add Model", variant="primary")
add_model_status = gr.Textbox(label="Status", interactive=False)
gr.Markdown("### ποΈ Delete Model")
delete_model_id = gr.Textbox(label="Model ID to Delete", placeholder="Enter model ID")
delete_model_btn = gr.Button("Delete", variant="stop")
search_btn.click(
search_hf_models,
inputs=[search_query, search_task, search_limit],
outputs=[search_results]
)
get_info_btn.click(
get_model_info,
inputs=[model_info_input],
outputs=[model_info_output]
)
add_model_btn.click(
add_model_to_settings,
inputs=[add_model_id, add_model_name, add_model_role, add_model_temp, add_model_tokens, add_model_system],
outputs=[add_model_status, my_models_table]
)
refresh_table_btn.click(
get_models_table,
outputs=[my_models_table]
)
delete_model_btn.click(
delete_model,
inputs=[delete_model_id],
outputs=[add_model_status, my_models_table]
)
# ============ Settings Tab ============
with gr.Tab("βοΈ Settings", id="settings"):
with gr.Row():
with gr.Column():
gr.Markdown("### π HuggingFace API Token")
token_input = gr.Textbox(
label="API Token",
value=get_hf_token(),
type="password",
placeholder="hf_..."
)
save_token_btn = gr.Button("Save Token", variant="primary")
token_status = gr.Textbox(label="Status", interactive=False)
gr.Markdown("""
---
**How to get your token:**
1. Go to [HuggingFace Settings](https://huggingface.co/settings/tokens)
2. Create a new token with read access
3. Paste it above and save
""")
with gr.Column():
gr.Markdown("### π€ Account Info")
account_info = gr.Markdown(value="Click refresh to load account info")
refresh_account_btn = gr.Button("π Refresh Account Info")
save_token_btn.click(
save_hf_token,
inputs=[token_input],
outputs=[token_status]
)
refresh_account_btn.click(
get_account_info,
outputs=[account_info]
)
# Footer with modern design
gr.HTML("""
<footer style="background: rgba(255, 255, 255, 0.03);
border-top: 1px solid rgba(255, 255, 255, 0.1);
padding: 2rem;
text-align: center;
color: rgba(255, 255, 255, 0.6);
margin-top: 3rem;">
<div style="display: flex; justify-content: center; align-items: center; gap: 2rem; flex-wrap: wrap;">
<div style="display: flex; align-items: center; gap: 0.5rem;">
<span style="font-size: 1.5rem;">π€</span>
<span>AI Assistant Β© 2026</span>
</div>
<div style="display: flex; align-items: center; gap: 0.5rem;">
<span style="font-size: 1.2rem;">β‘</span>
<span>Powered by HuggingFace Hub</span>
</div>
<div style="display: flex; align-items: center; gap: 0.5rem;">
<span style="font-size: 1.2rem;">π¨</span>
<span>Built with Gradio</span>
</div>
</div>
<div style="margin-top: 1rem; font-size: 0.85rem; opacity: 0.7;">
Advanced AI Models β’ Professional Interface β’ Seamless Experience
</div>
</footer>
""")
# Add custom JavaScript for enhanced interactions
app.load(
fn=None,
js="""
function() {
// Add smooth scrolling
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
});
});
// Add auto-resizing for chat input
const chatInput = document.querySelector('.chat-input textarea');
if (chatInput) {
chatInput.addEventListener('input', function() {
this.style.height = 'auto';
this.style.height = Math.min(this.scrollHeight, 200) + 'px';
});
// Add shift+enter for new line
chatInput.addEventListener('keydown', function(e) {
if (e.key === 'Enter' && !e.shiftKey) {
e.preventDefault();
const sendBtn = document.querySelector('.send-button');
if (sendBtn) sendBtn.click();
}
});
}
// Add hover effects to all interactive elements
document.querySelectorAll('.gradio-button, .gradio-dropdown, .gradio-slider').forEach(element => {
element.addEventListener('mouseenter', function() {
this.style.transform = 'translateY(-2px)';
this.style.transition = 'all 0.3s ease';
});
element.addEventListener('mouseleave', function() {
this.style.transform = 'translateY(0)';
});
});
// Add card hover effects
document.querySelectorAll('.gradio-box, .input-group, .output-group').forEach(card => {
card.addEventListener('mouseenter', function() {
this.style.boxShadow = '0 8px 24px rgba(102, 126, 234, 0.3)';
this.style.transform = 'translateY(-4px)';
});
card.addEventListener('mouseleave', function() {
this.style.boxShadow = '';
this.style.transform = 'translateY(0)';
});
});
// Add loading animations
window.addEventListener('load', function() {
document.body.style.opacity = '0';
setTimeout(() => {
document.body.style.transition = 'opacity 0.5s ease-in-out';
document.body.style.opacity = '1';
}, 100);
});
// Add visual feedback for button clicks
document.querySelectorAll('.gradio-button').forEach(button => {
button.addEventListener('click', function() {
this.style.transform = 'scale(0.95)';
setTimeout(() => {
this.style.transform = '';
}, 100);
});
});
// Add copy functionality with visual feedback
document.querySelectorAll('[id*=\"copy\"], [id*=\"Copy\"]').forEach(button => {
button.addEventListener('click', function() {
const originalText = this.textContent;
this.textContent = 'β Copied!';
this.style.background = 'linear-gradient(135deg, #4ade80, #22c55e)';
this.style.color = 'white';
setTimeout(() => {
this.textContent = originalText;
this.style.background = '';
this.style.color = '';
}, 2000);
});
});
// Add keyboard shortcuts
document.addEventListener('keydown', function(e) {
// Ctrl/Cmd + K to focus chat input
if ((e.ctrlKey || e.metaKey) && e.key === 'k') {
e.preventDefault();
const chatInput = document.querySelector('.chat-input textarea');
if (chatInput) {
chatInput.focus();
chatInput.scrollIntoView({ behavior: 'smooth', block: 'center' });
}
}
// Ctrl/Cmd + / to show shortcuts help
if ((e.ctrlKey || e.metaKey) && e.key === '/') {
e.preventDefault();
alert('Keyboard Shortcuts:\\nβ’ Ctrl+K: Focus chat input\\nβ’ Escape: Clear chat\\nβ’ Shift+Enter: New line in chat');
}
// Escape to clear chat
if (e.key === 'Escape') {
const clearButton = document.querySelector('[id*=\"clear\"], [id*=\"Clear\"]');
if (clearButton) clearButton.click();
}
});
// Add focus effects to inputs
document.querySelectorAll('input, textarea').forEach(input => {
input.addEventListener('focus', function() {
this.style.boxShadow = '0 0 0 3px rgba(102, 126, 234, 0.3)';
});
input.addEventListener('blur', function() {
this.style.boxShadow = '';
});
});
console.log('β¨ AI Assistant UI Enhanced with Interactive Features');
}
"""
)
# Launch the app
if __name__ == "__main__":
import random
app.launch(
server_name="0.0.0.0",
server_port=random.randint(7860, 7890),
share=False,
show_error=True,
inbrowser=True
)
|