pygpt-net 2.6.31__py3-none-any.whl → 2.6.33__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pygpt_net/CHANGELOG.txt +12 -0
- pygpt_net/__init__.py +3 -3
- pygpt_net/app.py +3 -1
- pygpt_net/app_core.py +3 -1
- pygpt_net/config.py +3 -1
- pygpt_net/controller/__init__.py +5 -1
- pygpt_net/controller/audio/audio.py +13 -0
- pygpt_net/controller/chat/attachment.py +2 -0
- pygpt_net/controller/chat/common.py +18 -83
- pygpt_net/controller/lang/custom.py +2 -2
- pygpt_net/controller/media/__init__.py +12 -0
- pygpt_net/controller/media/media.py +115 -0
- pygpt_net/controller/painter/common.py +10 -11
- pygpt_net/controller/painter/painter.py +4 -12
- pygpt_net/controller/realtime/realtime.py +27 -2
- pygpt_net/controller/ui/mode.py +16 -2
- pygpt_net/core/audio/backend/pyaudio/realtime.py +51 -14
- pygpt_net/core/audio/output.py +3 -2
- pygpt_net/core/camera/camera.py +369 -53
- pygpt_net/core/image/image.py +6 -5
- pygpt_net/core/realtime/worker.py +1 -5
- pygpt_net/core/render/web/body.py +24 -3
- pygpt_net/core/text/utils.py +54 -2
- pygpt_net/core/types/image.py +7 -1
- pygpt_net/core/video/__init__.py +12 -0
- pygpt_net/core/video/video.py +290 -0
- pygpt_net/data/config/config.json +240 -212
- pygpt_net/data/config/models.json +243 -172
- pygpt_net/data/config/settings.json +194 -6
- pygpt_net/data/css/web-blocks.css +6 -0
- pygpt_net/data/css/web-chatgpt.css +6 -0
- pygpt_net/data/css/web-chatgpt_wide.css +6 -0
- pygpt_net/data/locale/locale.de.ini +31 -2
- pygpt_net/data/locale/locale.en.ini +41 -7
- pygpt_net/data/locale/locale.es.ini +31 -2
- pygpt_net/data/locale/locale.fr.ini +31 -2
- pygpt_net/data/locale/locale.it.ini +31 -2
- pygpt_net/data/locale/locale.pl.ini +34 -2
- pygpt_net/data/locale/locale.uk.ini +31 -2
- pygpt_net/data/locale/locale.zh.ini +31 -2
- pygpt_net/data/locale/plugin.cmd_web.en.ini +8 -0
- pygpt_net/item/model.py +22 -1
- pygpt_net/provider/api/google/__init__.py +38 -2
- pygpt_net/provider/api/google/video.py +364 -0
- pygpt_net/provider/api/openai/realtime/realtime.py +1 -2
- pygpt_net/provider/core/config/patch.py +226 -178
- pygpt_net/provider/core/model/patch.py +17 -2
- pygpt_net/provider/web/duckduck_search.py +212 -0
- pygpt_net/ui/layout/toolbox/audio.py +55 -0
- pygpt_net/ui/layout/toolbox/footer.py +14 -58
- pygpt_net/ui/layout/toolbox/image.py +3 -14
- pygpt_net/ui/layout/toolbox/raw.py +52 -0
- pygpt_net/ui/layout/toolbox/split.py +48 -0
- pygpt_net/ui/layout/toolbox/toolbox.py +8 -8
- pygpt_net/ui/layout/toolbox/video.py +49 -0
- pygpt_net/ui/widget/draw/painter.py +452 -84
- {pygpt_net-2.6.31.dist-info → pygpt_net-2.6.33.dist-info}/METADATA +28 -11
- {pygpt_net-2.6.31.dist-info → pygpt_net-2.6.33.dist-info}/RECORD +61 -51
- {pygpt_net-2.6.31.dist-info → pygpt_net-2.6.33.dist-info}/LICENSE +0 -0
- {pygpt_net-2.6.31.dist-info → pygpt_net-2.6.33.dist-info}/WHEEL +0 -0
- {pygpt_net-2.6.31.dist-info → pygpt_net-2.6.33.dist-info}/entry_points.txt +0 -0
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"__meta__": {
|
|
3
|
-
"version": "2.6.
|
|
4
|
-
"app.version": "2.6.
|
|
5
|
-
"updated_at": "2025-09-
|
|
3
|
+
"version": "2.6.33",
|
|
4
|
+
"app.version": "2.6.33",
|
|
5
|
+
"updated_at": "2025-09-02T08:03:34"
|
|
6
6
|
},
|
|
7
7
|
"items": {
|
|
8
8
|
"SpeakLeash/bielik-11b-v2.3-instruct:Q4_K_M": {
|
|
@@ -45,13 +45,12 @@
|
|
|
45
45
|
"name": "chatgpt-4o-latest",
|
|
46
46
|
"mode": [
|
|
47
47
|
"chat",
|
|
48
|
-
"assistant",
|
|
49
48
|
"llama_index",
|
|
50
|
-
"
|
|
51
|
-
"agent",
|
|
52
|
-
"expert",
|
|
49
|
+
"assistant",
|
|
53
50
|
"agent_llama",
|
|
54
|
-
"agent_openai"
|
|
51
|
+
"agent_openai",
|
|
52
|
+
"agent",
|
|
53
|
+
"expert"
|
|
55
54
|
],
|
|
56
55
|
"llama_index": {
|
|
57
56
|
"args": [
|
|
@@ -487,22 +486,27 @@
|
|
|
487
486
|
"provider": "openai",
|
|
488
487
|
"tool_calls": false
|
|
489
488
|
},
|
|
490
|
-
"
|
|
491
|
-
"id": "deepseek-
|
|
492
|
-
"name": "
|
|
489
|
+
"deepseek_api_reasoner": {
|
|
490
|
+
"id": "deepseek-reasoner",
|
|
491
|
+
"name": "DeepSeek API (R1, reasoner)",
|
|
493
492
|
"mode": [
|
|
494
493
|
"llama_index",
|
|
495
494
|
"agent",
|
|
496
495
|
"agent_llama",
|
|
497
|
-
"agent_openai",
|
|
498
496
|
"expert",
|
|
499
|
-
"chat"
|
|
497
|
+
"chat",
|
|
498
|
+
"agent_openai"
|
|
500
499
|
],
|
|
501
500
|
"llama_index": {
|
|
502
501
|
"args": [
|
|
503
502
|
{
|
|
504
503
|
"name": "model",
|
|
505
|
-
"value": "deepseek-
|
|
504
|
+
"value": "deepseek-reasoner",
|
|
505
|
+
"type": "str"
|
|
506
|
+
},
|
|
507
|
+
{
|
|
508
|
+
"name": "api_key",
|
|
509
|
+
"value": "{api_key_deepseek}",
|
|
506
510
|
"type": "str"
|
|
507
511
|
}
|
|
508
512
|
],
|
|
@@ -524,25 +528,30 @@
|
|
|
524
528
|
],
|
|
525
529
|
"extra": {},
|
|
526
530
|
"imported": false,
|
|
527
|
-
"provider": "
|
|
528
|
-
"tool_calls":
|
|
531
|
+
"provider": "deepseek_api",
|
|
532
|
+
"tool_calls": true
|
|
529
533
|
},
|
|
530
|
-
"
|
|
531
|
-
"id": "deepseek-
|
|
532
|
-
"name": "
|
|
534
|
+
"deepseek_api_chat": {
|
|
535
|
+
"id": "deepseek-chat",
|
|
536
|
+
"name": "DeepSeek API (V3, chat)",
|
|
533
537
|
"mode": [
|
|
534
538
|
"llama_index",
|
|
535
539
|
"agent",
|
|
536
540
|
"agent_llama",
|
|
537
|
-
"agent_openai",
|
|
538
541
|
"expert",
|
|
539
|
-
"chat"
|
|
542
|
+
"chat",
|
|
543
|
+
"agent_openai"
|
|
540
544
|
],
|
|
541
545
|
"llama_index": {
|
|
542
546
|
"args": [
|
|
543
547
|
{
|
|
544
548
|
"name": "model",
|
|
545
|
-
"value": "deepseek-
|
|
549
|
+
"value": "deepseek-chat",
|
|
550
|
+
"type": "str"
|
|
551
|
+
},
|
|
552
|
+
{
|
|
553
|
+
"name": "api_key",
|
|
554
|
+
"value": "{api_key_deepseek}",
|
|
546
555
|
"type": "str"
|
|
547
556
|
}
|
|
548
557
|
],
|
|
@@ -564,12 +573,12 @@
|
|
|
564
573
|
],
|
|
565
574
|
"extra": {},
|
|
566
575
|
"imported": false,
|
|
567
|
-
"provider": "
|
|
568
|
-
"tool_calls":
|
|
576
|
+
"provider": "deepseek_api",
|
|
577
|
+
"tool_calls": true
|
|
569
578
|
},
|
|
570
|
-
"deepseek-r1:
|
|
571
|
-
"id": "deepseek-r1:
|
|
572
|
-
"name": "deepseek-r1:
|
|
579
|
+
"deepseek-r1:1.5b": {
|
|
580
|
+
"id": "deepseek-r1:1.5b",
|
|
581
|
+
"name": "deepseek-r1:1.5b",
|
|
573
582
|
"mode": [
|
|
574
583
|
"llama_index",
|
|
575
584
|
"agent",
|
|
@@ -582,7 +591,7 @@
|
|
|
582
591
|
"args": [
|
|
583
592
|
{
|
|
584
593
|
"name": "model",
|
|
585
|
-
"value": "deepseek-r1:
|
|
594
|
+
"value": "deepseek-r1:1.5b",
|
|
586
595
|
"type": "str"
|
|
587
596
|
}
|
|
588
597
|
],
|
|
@@ -607,27 +616,22 @@
|
|
|
607
616
|
"provider": "ollama",
|
|
608
617
|
"tool_calls": false
|
|
609
618
|
},
|
|
610
|
-
"
|
|
611
|
-
"id": "deepseek-
|
|
612
|
-
"name": "
|
|
619
|
+
"deepseek-r1:14b": {
|
|
620
|
+
"id": "deepseek-r1:14b",
|
|
621
|
+
"name": "deepseek-r1:14b",
|
|
613
622
|
"mode": [
|
|
614
623
|
"llama_index",
|
|
615
624
|
"agent",
|
|
616
625
|
"agent_llama",
|
|
626
|
+
"agent_openai",
|
|
617
627
|
"expert",
|
|
618
|
-
"chat"
|
|
619
|
-
"agent_openai"
|
|
628
|
+
"chat"
|
|
620
629
|
],
|
|
621
630
|
"llama_index": {
|
|
622
631
|
"args": [
|
|
623
632
|
{
|
|
624
633
|
"name": "model",
|
|
625
|
-
"value": "deepseek-
|
|
626
|
-
"type": "str"
|
|
627
|
-
},
|
|
628
|
-
{
|
|
629
|
-
"name": "api_key",
|
|
630
|
-
"value": "{api_key_deepseek}",
|
|
634
|
+
"value": "deepseek-r1:14b",
|
|
631
635
|
"type": "str"
|
|
632
636
|
}
|
|
633
637
|
],
|
|
@@ -649,30 +653,25 @@
|
|
|
649
653
|
],
|
|
650
654
|
"extra": {},
|
|
651
655
|
"imported": false,
|
|
652
|
-
"provider": "
|
|
653
|
-
"tool_calls":
|
|
656
|
+
"provider": "ollama",
|
|
657
|
+
"tool_calls": false
|
|
654
658
|
},
|
|
655
|
-
"
|
|
656
|
-
"id": "deepseek-
|
|
657
|
-
"name": "
|
|
659
|
+
"deepseek-r1:7b": {
|
|
660
|
+
"id": "deepseek-r1:7b",
|
|
661
|
+
"name": "deepseek-r1:7b",
|
|
658
662
|
"mode": [
|
|
659
663
|
"llama_index",
|
|
660
664
|
"agent",
|
|
661
665
|
"agent_llama",
|
|
666
|
+
"agent_openai",
|
|
662
667
|
"expert",
|
|
663
|
-
"chat"
|
|
664
|
-
"agent_openai"
|
|
668
|
+
"chat"
|
|
665
669
|
],
|
|
666
670
|
"llama_index": {
|
|
667
671
|
"args": [
|
|
668
672
|
{
|
|
669
673
|
"name": "model",
|
|
670
|
-
"value": "deepseek-
|
|
671
|
-
"type": "str"
|
|
672
|
-
},
|
|
673
|
-
{
|
|
674
|
-
"name": "api_key",
|
|
675
|
-
"value": "{api_key_deepseek}",
|
|
674
|
+
"value": "deepseek-r1:7b",
|
|
676
675
|
"type": "str"
|
|
677
676
|
}
|
|
678
677
|
],
|
|
@@ -694,8 +693,8 @@
|
|
|
694
693
|
],
|
|
695
694
|
"extra": {},
|
|
696
695
|
"imported": false,
|
|
697
|
-
"provider": "
|
|
698
|
-
"tool_calls":
|
|
696
|
+
"provider": "ollama",
|
|
697
|
+
"tool_calls": false
|
|
699
698
|
},
|
|
700
699
|
"gemini-1.5-flash": {
|
|
701
700
|
"id": "gemini-1.5-flash",
|
|
@@ -1550,9 +1549,62 @@
|
|
|
1550
1549
|
"provider": "openai",
|
|
1551
1550
|
"tool_calls": true
|
|
1552
1551
|
},
|
|
1553
|
-
"gpt-
|
|
1552
|
+
"gpt-4o-realtime-preview": {
|
|
1553
|
+
"id": "gpt-4o-realtime-preview",
|
|
1554
|
+
"name": "gpt-4o-realtime-preview",
|
|
1555
|
+
"mode": [
|
|
1556
|
+
"audio"
|
|
1557
|
+
],
|
|
1558
|
+
"llama_index": {
|
|
1559
|
+
"args": [
|
|
1560
|
+
{
|
|
1561
|
+
"name": "model",
|
|
1562
|
+
"value": "gpt-4o-realtime-preview",
|
|
1563
|
+
"type": "str"
|
|
1564
|
+
}
|
|
1565
|
+
],
|
|
1566
|
+
"env": [
|
|
1567
|
+
{
|
|
1568
|
+
"name": "OPENAI_API_KEY",
|
|
1569
|
+
"value": "{api_key}",
|
|
1570
|
+
"type": "str"
|
|
1571
|
+
},
|
|
1572
|
+
{
|
|
1573
|
+
"name": "OPENAI_API_BASE",
|
|
1574
|
+
"value": "{api_endpoint}",
|
|
1575
|
+
"type": "str"
|
|
1576
|
+
},
|
|
1577
|
+
{
|
|
1578
|
+
"name": "AZURE_OPENAI_ENDPOINT",
|
|
1579
|
+
"value": "{api_azure_endpoint}",
|
|
1580
|
+
"type": "str"
|
|
1581
|
+
},
|
|
1582
|
+
{
|
|
1583
|
+
"name": "OPENAI_API_VERSION",
|
|
1584
|
+
"value": "{api_azure_version}",
|
|
1585
|
+
"type": "str"
|
|
1586
|
+
}
|
|
1587
|
+
]
|
|
1588
|
+
},
|
|
1589
|
+
"ctx": 32000,
|
|
1590
|
+
"tokens": 4096,
|
|
1591
|
+
"default": false,
|
|
1592
|
+
"input": [
|
|
1593
|
+
"text",
|
|
1594
|
+
"audio"
|
|
1595
|
+
],
|
|
1596
|
+
"output": [
|
|
1597
|
+
"text",
|
|
1598
|
+
"audio"
|
|
1599
|
+
],
|
|
1600
|
+
"extra": {},
|
|
1601
|
+
"imported": true,
|
|
1602
|
+
"provider": "openai",
|
|
1603
|
+
"tool_calls": true
|
|
1604
|
+
},
|
|
1605
|
+
"gpt-5-high": {
|
|
1554
1606
|
"id": "gpt-5",
|
|
1555
|
-
"name": "gpt-5 (
|
|
1607
|
+
"name": "gpt-5 (high)",
|
|
1556
1608
|
"mode": [
|
|
1557
1609
|
"chat",
|
|
1558
1610
|
"assistant",
|
|
@@ -1600,14 +1652,16 @@
|
|
|
1600
1652
|
"output": [
|
|
1601
1653
|
"text"
|
|
1602
1654
|
],
|
|
1603
|
-
"extra": {
|
|
1655
|
+
"extra": {
|
|
1656
|
+
"reasoning_effort": "high"
|
|
1657
|
+
},
|
|
1604
1658
|
"imported": false,
|
|
1605
1659
|
"provider": "openai",
|
|
1606
1660
|
"tool_calls": true
|
|
1607
1661
|
},
|
|
1608
|
-
"gpt-5-
|
|
1609
|
-
"id": "gpt-5
|
|
1610
|
-
"name": "gpt-5
|
|
1662
|
+
"gpt-5-low": {
|
|
1663
|
+
"id": "gpt-5",
|
|
1664
|
+
"name": "gpt-5 (low)",
|
|
1611
1665
|
"mode": [
|
|
1612
1666
|
"chat",
|
|
1613
1667
|
"assistant",
|
|
@@ -1622,7 +1676,7 @@
|
|
|
1622
1676
|
"args": [
|
|
1623
1677
|
{
|
|
1624
1678
|
"name": "model",
|
|
1625
|
-
"value": "gpt-5
|
|
1679
|
+
"value": "gpt-5",
|
|
1626
1680
|
"type": "str"
|
|
1627
1681
|
}
|
|
1628
1682
|
],
|
|
@@ -1655,14 +1709,16 @@
|
|
|
1655
1709
|
"output": [
|
|
1656
1710
|
"text"
|
|
1657
1711
|
],
|
|
1658
|
-
"extra": {
|
|
1712
|
+
"extra": {
|
|
1713
|
+
"reasoning_effort": "low"
|
|
1714
|
+
},
|
|
1659
1715
|
"imported": false,
|
|
1660
1716
|
"provider": "openai",
|
|
1661
1717
|
"tool_calls": true
|
|
1662
1718
|
},
|
|
1663
|
-
"gpt-5
|
|
1664
|
-
"id": "gpt-5
|
|
1665
|
-
"name": "gpt-5
|
|
1719
|
+
"gpt-5": {
|
|
1720
|
+
"id": "gpt-5",
|
|
1721
|
+
"name": "gpt-5 (medium)",
|
|
1666
1722
|
"mode": [
|
|
1667
1723
|
"chat",
|
|
1668
1724
|
"assistant",
|
|
@@ -1677,7 +1733,7 @@
|
|
|
1677
1733
|
"args": [
|
|
1678
1734
|
{
|
|
1679
1735
|
"name": "model",
|
|
1680
|
-
"value": "gpt-5
|
|
1736
|
+
"value": "gpt-5",
|
|
1681
1737
|
"type": "str"
|
|
1682
1738
|
}
|
|
1683
1739
|
],
|
|
@@ -1715,9 +1771,9 @@
|
|
|
1715
1771
|
"provider": "openai",
|
|
1716
1772
|
"tool_calls": true
|
|
1717
1773
|
},
|
|
1718
|
-
"gpt-5-
|
|
1719
|
-
"id": "gpt-5",
|
|
1720
|
-
"name": "gpt-5 (
|
|
1774
|
+
"gpt-5-mini-high": {
|
|
1775
|
+
"id": "gpt-5-mini",
|
|
1776
|
+
"name": "gpt-5-mini (high)",
|
|
1721
1777
|
"mode": [
|
|
1722
1778
|
"chat",
|
|
1723
1779
|
"assistant",
|
|
@@ -1732,7 +1788,7 @@
|
|
|
1732
1788
|
"args": [
|
|
1733
1789
|
{
|
|
1734
1790
|
"name": "model",
|
|
1735
|
-
"value": "gpt-5",
|
|
1791
|
+
"value": "gpt-5-mini",
|
|
1736
1792
|
"type": "str"
|
|
1737
1793
|
}
|
|
1738
1794
|
],
|
|
@@ -1766,7 +1822,7 @@
|
|
|
1766
1822
|
"text"
|
|
1767
1823
|
],
|
|
1768
1824
|
"extra": {
|
|
1769
|
-
"reasoning_effort": "
|
|
1825
|
+
"reasoning_effort": "high"
|
|
1770
1826
|
},
|
|
1771
1827
|
"imported": false,
|
|
1772
1828
|
"provider": "openai",
|
|
@@ -1829,9 +1885,9 @@
|
|
|
1829
1885
|
"provider": "openai",
|
|
1830
1886
|
"tool_calls": true
|
|
1831
1887
|
},
|
|
1832
|
-
"gpt-5-
|
|
1833
|
-
"id": "gpt-5-
|
|
1834
|
-
"name": "gpt-5-
|
|
1888
|
+
"gpt-5-mini": {
|
|
1889
|
+
"id": "gpt-5-mini",
|
|
1890
|
+
"name": "gpt-5-mini (medium)",
|
|
1835
1891
|
"mode": [
|
|
1836
1892
|
"chat",
|
|
1837
1893
|
"assistant",
|
|
@@ -1846,7 +1902,7 @@
|
|
|
1846
1902
|
"args": [
|
|
1847
1903
|
{
|
|
1848
1904
|
"name": "model",
|
|
1849
|
-
"value": "gpt-5-
|
|
1905
|
+
"value": "gpt-5-mini",
|
|
1850
1906
|
"type": "str"
|
|
1851
1907
|
}
|
|
1852
1908
|
],
|
|
@@ -1879,16 +1935,14 @@
|
|
|
1879
1935
|
"output": [
|
|
1880
1936
|
"text"
|
|
1881
1937
|
],
|
|
1882
|
-
"extra": {
|
|
1883
|
-
"reasoning_effort": "low"
|
|
1884
|
-
},
|
|
1938
|
+
"extra": {},
|
|
1885
1939
|
"imported": false,
|
|
1886
1940
|
"provider": "openai",
|
|
1887
1941
|
"tool_calls": true
|
|
1888
1942
|
},
|
|
1889
|
-
"gpt-5-high": {
|
|
1890
|
-
"id": "gpt-5",
|
|
1891
|
-
"name": "gpt-5 (high)",
|
|
1943
|
+
"gpt-5-nano-high": {
|
|
1944
|
+
"id": "gpt-5-nano",
|
|
1945
|
+
"name": "gpt-5-nano (high)",
|
|
1892
1946
|
"mode": [
|
|
1893
1947
|
"chat",
|
|
1894
1948
|
"assistant",
|
|
@@ -1903,7 +1957,7 @@
|
|
|
1903
1957
|
"args": [
|
|
1904
1958
|
{
|
|
1905
1959
|
"name": "model",
|
|
1906
|
-
"value": "gpt-5",
|
|
1960
|
+
"value": "gpt-5-nano",
|
|
1907
1961
|
"type": "str"
|
|
1908
1962
|
}
|
|
1909
1963
|
],
|
|
@@ -1943,9 +1997,9 @@
|
|
|
1943
1997
|
"provider": "openai",
|
|
1944
1998
|
"tool_calls": true
|
|
1945
1999
|
},
|
|
1946
|
-
"gpt-5-
|
|
1947
|
-
"id": "gpt-5-
|
|
1948
|
-
"name": "gpt-5-
|
|
2000
|
+
"gpt-5-nano-low": {
|
|
2001
|
+
"id": "gpt-5-nano",
|
|
2002
|
+
"name": "gpt-5-nano (low)",
|
|
1949
2003
|
"mode": [
|
|
1950
2004
|
"chat",
|
|
1951
2005
|
"assistant",
|
|
@@ -1960,7 +2014,7 @@
|
|
|
1960
2014
|
"args": [
|
|
1961
2015
|
{
|
|
1962
2016
|
"name": "model",
|
|
1963
|
-
"value": "gpt-5-
|
|
2017
|
+
"value": "gpt-5-nano",
|
|
1964
2018
|
"type": "str"
|
|
1965
2019
|
}
|
|
1966
2020
|
],
|
|
@@ -1994,15 +2048,15 @@
|
|
|
1994
2048
|
"text"
|
|
1995
2049
|
],
|
|
1996
2050
|
"extra": {
|
|
1997
|
-
"reasoning_effort": "
|
|
2051
|
+
"reasoning_effort": "low"
|
|
1998
2052
|
},
|
|
1999
2053
|
"imported": false,
|
|
2000
2054
|
"provider": "openai",
|
|
2001
2055
|
"tool_calls": true
|
|
2002
2056
|
},
|
|
2003
|
-
"gpt-5-nano
|
|
2057
|
+
"gpt-5-nano": {
|
|
2004
2058
|
"id": "gpt-5-nano",
|
|
2005
|
-
"name": "gpt-5-nano (
|
|
2059
|
+
"name": "gpt-5-nano (medium)",
|
|
2006
2060
|
"mode": [
|
|
2007
2061
|
"chat",
|
|
2008
2062
|
"assistant",
|
|
@@ -2050,9 +2104,7 @@
|
|
|
2050
2104
|
"output": [
|
|
2051
2105
|
"text"
|
|
2052
2106
|
],
|
|
2053
|
-
"extra": {
|
|
2054
|
-
"reasoning_effort": "high"
|
|
2055
|
-
},
|
|
2107
|
+
"extra": {},
|
|
2056
2108
|
"imported": false,
|
|
2057
2109
|
"provider": "openai",
|
|
2058
2110
|
"tool_calls": true
|
|
@@ -2081,9 +2133,9 @@
|
|
|
2081
2133
|
"provider": "openai",
|
|
2082
2134
|
"tool_calls": true
|
|
2083
2135
|
},
|
|
2084
|
-
"gpt-oss-
|
|
2085
|
-
"id": "openai/gpt-oss-
|
|
2086
|
-
"name": "gpt-oss:
|
|
2136
|
+
"gpt-oss-120b-huggingface-router": {
|
|
2137
|
+
"id": "openai/gpt-oss-120b:novita",
|
|
2138
|
+
"name": "gpt-oss:120b",
|
|
2087
2139
|
"mode": [
|
|
2088
2140
|
"llama_index",
|
|
2089
2141
|
"agent",
|
|
@@ -2097,7 +2149,7 @@
|
|
|
2097
2149
|
"args": [
|
|
2098
2150
|
{
|
|
2099
2151
|
"name": "model",
|
|
2100
|
-
"value": "openai/gpt-oss-
|
|
2152
|
+
"value": "openai/gpt-oss-120b:novita",
|
|
2101
2153
|
"type": "str"
|
|
2102
2154
|
}
|
|
2103
2155
|
],
|
|
@@ -2126,8 +2178,8 @@
|
|
|
2126
2178
|
"provider": "huggingface_router",
|
|
2127
2179
|
"tool_calls": true
|
|
2128
2180
|
},
|
|
2129
|
-
"gpt-oss-120b
|
|
2130
|
-
"id": "
|
|
2181
|
+
"gpt-oss-120b": {
|
|
2182
|
+
"id": "gpt-oss:120b",
|
|
2131
2183
|
"name": "gpt-oss:120b",
|
|
2132
2184
|
"mode": [
|
|
2133
2185
|
"llama_index",
|
|
@@ -2142,20 +2194,11 @@
|
|
|
2142
2194
|
"args": [
|
|
2143
2195
|
{
|
|
2144
2196
|
"name": "model",
|
|
2145
|
-
"value": "
|
|
2197
|
+
"value": "gpt-oss:120b",
|
|
2146
2198
|
"type": "str"
|
|
2147
2199
|
}
|
|
2148
2200
|
],
|
|
2149
|
-
"env": [
|
|
2150
|
-
{
|
|
2151
|
-
"name": "OPENAI_API_KEY",
|
|
2152
|
-
"value": "{api_key_hugging_face}"
|
|
2153
|
-
},
|
|
2154
|
-
{
|
|
2155
|
-
"name": "OPENAI_API_BASE",
|
|
2156
|
-
"value": "{api_endpoint_hugging_face}"
|
|
2157
|
-
}
|
|
2158
|
-
]
|
|
2201
|
+
"env": []
|
|
2159
2202
|
},
|
|
2160
2203
|
"ctx": 128000,
|
|
2161
2204
|
"tokens": 8000,
|
|
@@ -2168,11 +2211,11 @@
|
|
|
2168
2211
|
],
|
|
2169
2212
|
"extra": {},
|
|
2170
2213
|
"imported": false,
|
|
2171
|
-
"provider": "
|
|
2214
|
+
"provider": "ollama",
|
|
2172
2215
|
"tool_calls": true
|
|
2173
2216
|
},
|
|
2174
|
-
"gpt-oss-20b": {
|
|
2175
|
-
"id": "gpt-oss:
|
|
2217
|
+
"gpt-oss-20b-huggingface-router": {
|
|
2218
|
+
"id": "openai/gpt-oss-20b:novita",
|
|
2176
2219
|
"name": "gpt-oss:20b",
|
|
2177
2220
|
"mode": [
|
|
2178
2221
|
"llama_index",
|
|
@@ -2187,11 +2230,20 @@
|
|
|
2187
2230
|
"args": [
|
|
2188
2231
|
{
|
|
2189
2232
|
"name": "model",
|
|
2190
|
-
"value": "gpt-oss:
|
|
2233
|
+
"value": "openai/gpt-oss-20b:novita",
|
|
2191
2234
|
"type": "str"
|
|
2192
2235
|
}
|
|
2193
2236
|
],
|
|
2194
|
-
"env": [
|
|
2237
|
+
"env": [
|
|
2238
|
+
{
|
|
2239
|
+
"name": "OPENAI_API_KEY",
|
|
2240
|
+
"value": "{api_key_hugging_face}"
|
|
2241
|
+
},
|
|
2242
|
+
{
|
|
2243
|
+
"name": "OPENAI_API_BASE",
|
|
2244
|
+
"value": "{api_endpoint_hugging_face}"
|
|
2245
|
+
}
|
|
2246
|
+
]
|
|
2195
2247
|
},
|
|
2196
2248
|
"ctx": 128000,
|
|
2197
2249
|
"tokens": 8000,
|
|
@@ -2204,12 +2256,12 @@
|
|
|
2204
2256
|
],
|
|
2205
2257
|
"extra": {},
|
|
2206
2258
|
"imported": false,
|
|
2207
|
-
"provider": "
|
|
2259
|
+
"provider": "huggingface_router",
|
|
2208
2260
|
"tool_calls": true
|
|
2209
2261
|
},
|
|
2210
|
-
"gpt-oss-
|
|
2211
|
-
"id": "gpt-oss:
|
|
2212
|
-
"name": "gpt-oss:
|
|
2262
|
+
"gpt-oss-20b": {
|
|
2263
|
+
"id": "gpt-oss:20b",
|
|
2264
|
+
"name": "gpt-oss:20b",
|
|
2213
2265
|
"mode": [
|
|
2214
2266
|
"llama_index",
|
|
2215
2267
|
"agent",
|
|
@@ -2223,7 +2275,7 @@
|
|
|
2223
2275
|
"args": [
|
|
2224
2276
|
{
|
|
2225
2277
|
"name": "model",
|
|
2226
|
-
"value": "gpt-oss:
|
|
2278
|
+
"value": "gpt-oss:20b",
|
|
2227
2279
|
"type": "str"
|
|
2228
2280
|
}
|
|
2229
2281
|
],
|
|
@@ -2296,59 +2348,6 @@
|
|
|
2296
2348
|
"provider": "openai",
|
|
2297
2349
|
"tool_calls": true
|
|
2298
2350
|
},
|
|
2299
|
-
"gpt-4o-realtime-preview": {
|
|
2300
|
-
"id": "gpt-4o-realtime-preview",
|
|
2301
|
-
"name": "gpt-4o-realtime-preview",
|
|
2302
|
-
"mode": [
|
|
2303
|
-
"audio"
|
|
2304
|
-
],
|
|
2305
|
-
"llama_index": {
|
|
2306
|
-
"args": [
|
|
2307
|
-
{
|
|
2308
|
-
"name": "model",
|
|
2309
|
-
"value": "gpt-4o-realtime-preview",
|
|
2310
|
-
"type": "str"
|
|
2311
|
-
}
|
|
2312
|
-
],
|
|
2313
|
-
"env": [
|
|
2314
|
-
{
|
|
2315
|
-
"name": "OPENAI_API_KEY",
|
|
2316
|
-
"value": "{api_key}",
|
|
2317
|
-
"type": "str"
|
|
2318
|
-
},
|
|
2319
|
-
{
|
|
2320
|
-
"name": "OPENAI_API_BASE",
|
|
2321
|
-
"value": "{api_endpoint}",
|
|
2322
|
-
"type": "str"
|
|
2323
|
-
},
|
|
2324
|
-
{
|
|
2325
|
-
"name": "AZURE_OPENAI_ENDPOINT",
|
|
2326
|
-
"value": "{api_azure_endpoint}",
|
|
2327
|
-
"type": "str"
|
|
2328
|
-
},
|
|
2329
|
-
{
|
|
2330
|
-
"name": "OPENAI_API_VERSION",
|
|
2331
|
-
"value": "{api_azure_version}",
|
|
2332
|
-
"type": "str"
|
|
2333
|
-
}
|
|
2334
|
-
]
|
|
2335
|
-
},
|
|
2336
|
-
"ctx": 32000,
|
|
2337
|
-
"tokens": 4096,
|
|
2338
|
-
"default": false,
|
|
2339
|
-
"input": [
|
|
2340
|
-
"text",
|
|
2341
|
-
"audio"
|
|
2342
|
-
],
|
|
2343
|
-
"output": [
|
|
2344
|
-
"text",
|
|
2345
|
-
"audio"
|
|
2346
|
-
],
|
|
2347
|
-
"extra": {},
|
|
2348
|
-
"imported": true,
|
|
2349
|
-
"provider": "openai",
|
|
2350
|
-
"tool_calls": true
|
|
2351
|
-
},
|
|
2352
2351
|
"grok-2-vision": {
|
|
2353
2352
|
"id": "grok-2-vision",
|
|
2354
2353
|
"name": "grok-2-vision",
|
|
@@ -3973,6 +3972,78 @@
|
|
|
3973
3972
|
"imported": false,
|
|
3974
3973
|
"provider": "perplexity",
|
|
3975
3974
|
"tool_calls": true
|
|
3975
|
+
},
|
|
3976
|
+
"veo-3.0-fast-generate-preview": {
|
|
3977
|
+
"id": "veo-3.0-fast-generate-preview",
|
|
3978
|
+
"name": "veo-3.0-fast-generate-preview",
|
|
3979
|
+
"mode": [
|
|
3980
|
+
"img"
|
|
3981
|
+
],
|
|
3982
|
+
"llama_index": {
|
|
3983
|
+
"args": [
|
|
3984
|
+
{
|
|
3985
|
+
"name": "model",
|
|
3986
|
+
"value": "models/veo-3.0-fast-generate-preview",
|
|
3987
|
+
"type": "str"
|
|
3988
|
+
}
|
|
3989
|
+
],
|
|
3990
|
+
"env": [
|
|
3991
|
+
{
|
|
3992
|
+
"name": "GOOGLE_API_KEY",
|
|
3993
|
+
"value": "{api_key_google}",
|
|
3994
|
+
"type": "str"
|
|
3995
|
+
}
|
|
3996
|
+
]
|
|
3997
|
+
},
|
|
3998
|
+
"ctx": 128000,
|
|
3999
|
+
"tokens": 0,
|
|
4000
|
+
"default": false,
|
|
4001
|
+
"input": [
|
|
4002
|
+
"text"
|
|
4003
|
+
],
|
|
4004
|
+
"output": [
|
|
4005
|
+
"video"
|
|
4006
|
+
],
|
|
4007
|
+
"extra": {},
|
|
4008
|
+
"imported": true,
|
|
4009
|
+
"provider": "google",
|
|
4010
|
+
"tool_calls": true
|
|
4011
|
+
},
|
|
4012
|
+
"veo-3.0-generate-preview": {
|
|
4013
|
+
"id": "veo-3.0-generate-preview",
|
|
4014
|
+
"name": "veo-3.0-generate-preview",
|
|
4015
|
+
"mode": [
|
|
4016
|
+
"img"
|
|
4017
|
+
],
|
|
4018
|
+
"llama_index": {
|
|
4019
|
+
"args": [
|
|
4020
|
+
{
|
|
4021
|
+
"name": "model",
|
|
4022
|
+
"value": "models/veo-3.0-generate-preview",
|
|
4023
|
+
"type": "str"
|
|
4024
|
+
}
|
|
4025
|
+
],
|
|
4026
|
+
"env": [
|
|
4027
|
+
{
|
|
4028
|
+
"name": "GOOGLE_API_KEY",
|
|
4029
|
+
"value": "{api_key_google}",
|
|
4030
|
+
"type": "str"
|
|
4031
|
+
}
|
|
4032
|
+
]
|
|
4033
|
+
},
|
|
4034
|
+
"ctx": 128000,
|
|
4035
|
+
"tokens": 0,
|
|
4036
|
+
"default": false,
|
|
4037
|
+
"input": [
|
|
4038
|
+
"text"
|
|
4039
|
+
],
|
|
4040
|
+
"output": [
|
|
4041
|
+
"video"
|
|
4042
|
+
],
|
|
4043
|
+
"extra": {},
|
|
4044
|
+
"imported": true,
|
|
4045
|
+
"provider": "google",
|
|
4046
|
+
"tool_calls": true
|
|
3976
4047
|
}
|
|
3977
4048
|
}
|
|
3978
4049
|
}
|