pygpt-net 2.5.17__py3-none-any.whl → 2.5.18__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.
Files changed (45) hide show
  1. pygpt_net/CHANGELOG.txt +7 -0
  2. pygpt_net/__init__.py +3 -3
  3. pygpt_net/controller/chat/common.py +4 -2
  4. pygpt_net/controller/chat/input.py +36 -27
  5. pygpt_net/controller/chat/stream.py +22 -2
  6. pygpt_net/controller/config/placeholder.py +1 -1
  7. pygpt_net/controller/model/__init__.py +1 -1
  8. pygpt_net/controller/model/editor.py +6 -1
  9. pygpt_net/controller/model/importer.py +4 -3
  10. pygpt_net/core/bridge/__init__.py +8 -4
  11. pygpt_net/core/command/__init__.py +10 -1
  12. pygpt_net/core/idx/chat.py +6 -1
  13. pygpt_net/core/image/__init__.py +15 -0
  14. pygpt_net/core/models/__init__.py +14 -6
  15. pygpt_net/core/models/ollama.py +4 -3
  16. pygpt_net/data/config/config.json +4 -3
  17. pygpt_net/data/config/models.json +205 -34
  18. pygpt_net/data/config/modes.json +10 -10
  19. pygpt_net/data/config/settings.json +22 -0
  20. pygpt_net/data/locale/locale.de.ini +1 -1
  21. pygpt_net/data/locale/locale.en.ini +6 -2
  22. pygpt_net/data/locale/locale.es.ini +1 -1
  23. pygpt_net/data/locale/locale.fr.ini +1 -1
  24. pygpt_net/data/locale/locale.pl.ini +1 -1
  25. pygpt_net/data/locale/locale.uk.ini +1 -1
  26. pygpt_net/data/locale/locale.zh.ini +1 -1
  27. pygpt_net/item/model.py +35 -1
  28. pygpt_net/provider/core/config/patch.py +7 -0
  29. pygpt_net/provider/core/model/json_file.py +4 -1
  30. pygpt_net/provider/core/model/patch.py +17 -1
  31. pygpt_net/provider/gpt/__init__.py +14 -0
  32. pygpt_net/provider/gpt/image.py +42 -8
  33. pygpt_net/provider/gpt/responses.py +22 -16
  34. pygpt_net/provider/llms/anthropic.py +3 -1
  35. pygpt_net/provider/llms/google.py +3 -1
  36. pygpt_net/provider/llms/hugging_face.py +3 -1
  37. pygpt_net/provider/llms/hugging_face_api.py +3 -1
  38. pygpt_net/provider/llms/ollama.py +9 -3
  39. pygpt_net/provider/llms/openai.py +7 -1
  40. pygpt_net/ui/dialog/preset.py +1 -1
  41. {pygpt_net-2.5.17.dist-info → pygpt_net-2.5.18.dist-info}/METADATA +13 -6
  42. {pygpt_net-2.5.17.dist-info → pygpt_net-2.5.18.dist-info}/RECORD +45 -45
  43. {pygpt_net-2.5.17.dist-info → pygpt_net-2.5.18.dist-info}/LICENSE +0 -0
  44. {pygpt_net-2.5.17.dist-info → pygpt_net-2.5.18.dist-info}/WHEEL +0 -0
  45. {pygpt_net-2.5.17.dist-info → pygpt_net-2.5.18.dist-info}/entry_points.txt +0 -0
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "__meta__": {
3
- "version": "2.5.17",
4
- "app.version": "2.5.17",
5
- "updated_at": "2025-06-25T00:00:00"
3
+ "version": "2.5.18",
4
+ "app.version": "2.5.18",
5
+ "updated_at": "2025-06-26T00:00:00"
6
6
  },
7
7
  "items": {
8
8
  "claude-3-5-sonnet-20240620": {
@@ -12,7 +12,8 @@
12
12
  "llama_index",
13
13
  "agent",
14
14
  "agent_llama",
15
- "expert"
15
+ "expert",
16
+ "chat"
16
17
  ],
17
18
  "langchain": {
18
19
  "provider": "anthropic",
@@ -63,7 +64,8 @@
63
64
  "llama_index",
64
65
  "agent",
65
66
  "agent_llama",
66
- "expert"
67
+ "expert",
68
+ "chat"
67
69
  ],
68
70
  "langchain": {
69
71
  "provider": "anthropic",
@@ -114,7 +116,8 @@
114
116
  "llama_index",
115
117
  "agent",
116
118
  "agent_llama",
117
- "expert"
119
+ "expert",
120
+ "chat"
118
121
  ],
119
122
  "langchain": {
120
123
  "provider": "anthropic",
@@ -165,7 +168,8 @@
165
168
  "llama_index",
166
169
  "agent",
167
170
  "agent_llama",
168
- "expert"
171
+ "expert",
172
+ "chat"
169
173
  ],
170
174
  "langchain": {
171
175
  "provider": "anthropic",
@@ -216,7 +220,8 @@
216
220
  "llama_index",
217
221
  "agent",
218
222
  "agent_llama",
219
- "expert"
223
+ "expert",
224
+ "chat"
220
225
  ],
221
226
  "langchain": {
222
227
  "provider": "anthropic",
@@ -280,6 +285,7 @@
280
285
  },
281
286
  "ctx": 0,
282
287
  "tokens": 0,
288
+ "openai": true,
283
289
  "default": false
284
290
  },
285
291
  "dall-e-3": {
@@ -302,6 +308,30 @@
302
308
  },
303
309
  "ctx": 0,
304
310
  "tokens": 0,
311
+ "openai": true,
312
+ "default": true
313
+ },
314
+ "gpt-image-1": {
315
+ "id": "gpt-image-1",
316
+ "name": "gpt-image-1",
317
+ "mode": [
318
+ "img"
319
+ ],
320
+ "langchain": {
321
+ "provider": null,
322
+ "mode": [],
323
+ "args": [],
324
+ "env": []
325
+ },
326
+ "llama_index": {
327
+ "provider": null,
328
+ "mode": [],
329
+ "args": [],
330
+ "env": []
331
+ },
332
+ "ctx": 0,
333
+ "tokens": 0,
334
+ "openai": true,
305
335
  "default": true
306
336
  },
307
337
  "deepseek_api_reasoner": {
@@ -311,7 +341,8 @@
311
341
  "llama_index",
312
342
  "agent",
313
343
  "agent_llama",
314
- "expert"
344
+ "expert",
345
+ "chat"
315
346
  ],
316
347
  "langchain": {
317
348
  "provider": "deepseek_api",
@@ -367,7 +398,8 @@
367
398
  "llama_index",
368
399
  "agent",
369
400
  "agent_llama",
370
- "expert"
401
+ "expert",
402
+ "chat"
371
403
  ],
372
404
  "langchain": {
373
405
  "provider": "deepseek_api",
@@ -423,7 +455,8 @@
423
455
  "llama_index",
424
456
  "agent",
425
457
  "agent_llama",
426
- "expert"
458
+ "expert",
459
+ "chat"
427
460
  ],
428
461
  "langchain": {
429
462
  "provider": "ollama",
@@ -474,7 +507,8 @@
474
507
  "llama_index",
475
508
  "agent",
476
509
  "agent_llama",
477
- "expert"
510
+ "expert",
511
+ "chat"
478
512
  ],
479
513
  "langchain": {
480
514
  "provider": "ollama",
@@ -525,7 +559,8 @@
525
559
  "llama_index",
526
560
  "agent",
527
561
  "agent_llama",
528
- "expert"
562
+ "expert",
563
+ "chat"
529
564
  ],
530
565
  "langchain": {
531
566
  "provider": "ollama",
@@ -576,7 +611,8 @@
576
611
  "llama_index",
577
612
  "agent",
578
613
  "agent_llama",
579
- "expert"
614
+ "expert",
615
+ "chat"
580
616
  ],
581
617
  "langchain": {
582
618
  "provider": "ollama",
@@ -627,7 +663,8 @@
627
663
  "llama_index",
628
664
  "agent",
629
665
  "agent_llama",
630
- "expert"
666
+ "expert",
667
+ "chat"
631
668
  ],
632
669
  "langchain": {
633
670
  "provider": "ollama",
@@ -678,7 +715,8 @@
678
715
  "llama_index",
679
716
  "agent",
680
717
  "agent_llama",
681
- "expert"
718
+ "expert",
719
+ "chat"
682
720
  ],
683
721
  "langchain": {
684
722
  "provider": "ollama",
@@ -729,7 +767,8 @@
729
767
  "llama_index",
730
768
  "agent",
731
769
  "agent_llama",
732
- "expert"
770
+ "expert",
771
+ "chat"
733
772
  ],
734
773
  "langchain": {
735
774
  "provider": "ollama",
@@ -780,7 +819,8 @@
780
819
  "llama_index",
781
820
  "agent",
782
821
  "agent_llama",
783
- "expert"
822
+ "expert",
823
+ "chat"
784
824
  ],
785
825
  "langchain": {
786
826
  "provider": "google",
@@ -831,7 +871,8 @@
831
871
  "llama_index",
832
872
  "agent",
833
873
  "agent_llama",
834
- "expert"
874
+ "expert",
875
+ "chat"
835
876
  ],
836
877
  "langchain": {
837
878
  "provider": "google",
@@ -882,7 +923,8 @@
882
923
  "llama_index",
883
924
  "agent",
884
925
  "agent_llama",
885
- "expert"
926
+ "expert",
927
+ "chat"
886
928
  ],
887
929
  "langchain": {
888
930
  "provider": "google",
@@ -934,7 +976,8 @@
934
976
  "llama_index",
935
977
  "agent",
936
978
  "agent_llama",
937
- "expert"
979
+ "expert",
980
+ "chat"
938
981
  ],
939
982
  "langchain": {
940
983
  "provider": "google",
@@ -986,7 +1029,8 @@
986
1029
  "llama_index",
987
1030
  "agent",
988
1031
  "agent_llama",
989
- "expert"
1032
+ "expert",
1033
+ "chat"
990
1034
  ],
991
1035
  "langchain": {
992
1036
  "provider": "google",
@@ -1107,6 +1151,7 @@
1107
1151
  },
1108
1152
  "ctx": 4096,
1109
1153
  "tokens": 4096,
1154
+ "openai": true,
1110
1155
  "default": false
1111
1156
  },
1112
1157
  "gpt-3.5-turbo-1106": {
@@ -1184,6 +1229,7 @@
1184
1229
  },
1185
1230
  "ctx": 16385,
1186
1231
  "tokens": 4096,
1232
+ "openai": true,
1187
1233
  "default": false
1188
1234
  },
1189
1235
  "gpt-3.5-turbo-16k": {
@@ -1262,6 +1308,7 @@
1262
1308
  },
1263
1309
  "ctx": 16385,
1264
1310
  "tokens": 4096,
1311
+ "openai": true,
1265
1312
  "default": false
1266
1313
  },
1267
1314
  "gpt-4": {
@@ -1340,6 +1387,7 @@
1340
1387
  },
1341
1388
  "ctx": 8192,
1342
1389
  "tokens": 4096,
1390
+ "openai": true,
1343
1391
  "default": false
1344
1392
  },
1345
1393
  "gpt-4-1106-preview": {
@@ -1418,6 +1466,7 @@
1418
1466
  },
1419
1467
  "ctx": 128000,
1420
1468
  "tokens": 4096,
1469
+ "openai": true,
1421
1470
  "default": false
1422
1471
  },
1423
1472
  "gpt-4-0125-preview": {
@@ -1496,6 +1545,7 @@
1496
1545
  },
1497
1546
  "ctx": 128000,
1498
1547
  "tokens": 4096,
1548
+ "openai": true,
1499
1549
  "default": false
1500
1550
  },
1501
1551
  "gpt-4-turbo-preview": {
@@ -1574,6 +1624,7 @@
1574
1624
  },
1575
1625
  "ctx": 128000,
1576
1626
  "tokens": 4096,
1627
+ "openai": true,
1577
1628
  "default": false
1578
1629
  },
1579
1630
  "gpt-4-turbo-2024-04-09": {
@@ -1653,6 +1704,7 @@
1653
1704
  },
1654
1705
  "ctx": 128000,
1655
1706
  "tokens": 4096,
1707
+ "openai": true,
1656
1708
  "default": false
1657
1709
  },
1658
1710
  "gpt-4-turbo": {
@@ -1732,6 +1784,7 @@
1732
1784
  },
1733
1785
  "ctx": 128000,
1734
1786
  "tokens": 4096,
1787
+ "openai": true,
1735
1788
  "default": false
1736
1789
  },
1737
1790
  "gpt-4o": {
@@ -1811,6 +1864,7 @@
1811
1864
  },
1812
1865
  "ctx": 128000,
1813
1866
  "tokens": 16384,
1867
+ "openai": true,
1814
1868
  "default": true
1815
1869
  },
1816
1870
  "gpt-4o-mini": {
@@ -1890,6 +1944,7 @@
1890
1944
  },
1891
1945
  "ctx": 128000,
1892
1946
  "tokens": 16384,
1947
+ "openai": true,
1893
1948
  "default": false
1894
1949
  },
1895
1950
  "gpt-4o-audio-preview": {
@@ -1962,6 +2017,7 @@
1962
2017
  },
1963
2018
  "ctx": 128000,
1964
2019
  "tokens": 16384,
2020
+ "openai": true,
1965
2021
  "default": false,
1966
2022
  "multimodal": []
1967
2023
  },
@@ -2035,6 +2091,7 @@
2035
2091
  },
2036
2092
  "ctx": 128000,
2037
2093
  "tokens": 16384,
2094
+ "openai": true,
2038
2095
  "default": false,
2039
2096
  "multimodal": []
2040
2097
  },
@@ -2115,6 +2172,7 @@
2115
2172
  },
2116
2173
  "ctx": 128000,
2117
2174
  "tokens": 16384,
2175
+ "openai": true,
2118
2176
  "default": false,
2119
2177
  "multimodal": []
2120
2178
  },
@@ -2195,6 +2253,7 @@
2195
2253
  },
2196
2254
  "ctx": 1047576,
2197
2255
  "tokens": 32768,
2256
+ "openai": true,
2198
2257
  "default": false
2199
2258
  },
2200
2259
  "gpt-4.1-mini": {
@@ -2274,6 +2333,7 @@
2274
2333
  },
2275
2334
  "ctx": 1047576,
2276
2335
  "tokens": 32768,
2336
+ "openai": true,
2277
2337
  "default": false
2278
2338
  },
2279
2339
  "gpt-4.5-preview": {
@@ -2353,6 +2413,7 @@
2353
2413
  },
2354
2414
  "ctx": 128000,
2355
2415
  "tokens": 16384,
2416
+ "openai": true,
2356
2417
  "default": false
2357
2418
  },
2358
2419
  "chatgpt-4o-latest": {
@@ -2432,6 +2493,7 @@
2432
2493
  },
2433
2494
  "ctx": 128000,
2434
2495
  "tokens": 16384,
2496
+ "openai": true,
2435
2497
  "default": false,
2436
2498
  "multimodal": []
2437
2499
  },
@@ -2511,6 +2573,7 @@
2511
2573
  },
2512
2574
  "ctx": 32768,
2513
2575
  "tokens": 4096,
2576
+ "openai": true,
2514
2577
  "default": false
2515
2578
  },
2516
2579
  "gpt-4-vision-preview": {
@@ -2584,6 +2647,7 @@
2584
2647
  },
2585
2648
  "ctx": 4096,
2586
2649
  "tokens": 4096,
2650
+ "openai": true,
2587
2651
  "default": false
2588
2652
  },
2589
2653
  "llama3.1": {
@@ -2594,7 +2658,8 @@
2594
2658
  "llama_index",
2595
2659
  "agent",
2596
2660
  "agent_llama",
2597
- "expert"
2661
+ "expert",
2662
+ "chat"
2598
2663
  ],
2599
2664
  "langchain": {
2600
2665
  "provider": "ollama",
@@ -2636,7 +2701,8 @@
2636
2701
  "llama_index",
2637
2702
  "agent",
2638
2703
  "agent_llama",
2639
- "expert"
2704
+ "expert",
2705
+ "chat"
2640
2706
  ],
2641
2707
  "langchain": {
2642
2708
  "provider": "ollama",
@@ -2678,7 +2744,8 @@
2678
2744
  "llama_index",
2679
2745
  "agent",
2680
2746
  "agent_llama",
2681
- "expert"
2747
+ "expert",
2748
+ "chat"
2682
2749
  ],
2683
2750
  "langchain": {
2684
2751
  "provider": "ollama",
@@ -2720,7 +2787,8 @@
2720
2787
  "llama_index",
2721
2788
  "agent",
2722
2789
  "agent_llama",
2723
- "expert"
2790
+ "expert",
2791
+ "chat"
2724
2792
  ],
2725
2793
  "langchain": {
2726
2794
  "provider": "ollama",
@@ -2762,7 +2830,8 @@
2762
2830
  "llama_index",
2763
2831
  "agent",
2764
2832
  "agent_llama",
2765
- "expert"
2833
+ "expert",
2834
+ "chat"
2766
2835
  ],
2767
2836
  "langchain": {
2768
2837
  "provider": "ollama",
@@ -2804,7 +2873,8 @@
2804
2873
  "llama_index",
2805
2874
  "agent",
2806
2875
  "agent_llama",
2807
- "expert"
2876
+ "expert",
2877
+ "chat"
2808
2878
  ],
2809
2879
  "langchain": {
2810
2880
  "provider": "ollama",
@@ -2846,7 +2916,8 @@
2846
2916
  "llama_index",
2847
2917
  "agent",
2848
2918
  "agent_llama",
2849
- "expert"
2919
+ "expert",
2920
+ "chat"
2850
2921
  ],
2851
2922
  "langchain": {
2852
2923
  "provider": "ollama",
@@ -2888,7 +2959,8 @@
2888
2959
  "llama_index",
2889
2960
  "agent",
2890
2961
  "agent_llama",
2891
- "expert"
2962
+ "expert",
2963
+ "chat"
2892
2964
  ],
2893
2965
  "langchain": {
2894
2966
  "provider": "ollama",
@@ -2994,6 +3066,7 @@
2994
3066
  },
2995
3067
  "ctx": 128000,
2996
3068
  "tokens": 65536,
3069
+ "openai": true,
2997
3070
  "default": false
2998
3071
  },
2999
3072
  "o1-mini": {
@@ -3068,6 +3141,7 @@
3068
3141
  },
3069
3142
  "ctx": 128000,
3070
3143
  "tokens": 65536,
3144
+ "openai": true,
3071
3145
  "default": false
3072
3146
  },
3073
3147
  "o1": {
@@ -3143,6 +3217,7 @@
3143
3217
  },
3144
3218
  "ctx": 128000,
3145
3219
  "tokens": 100000,
3220
+ "openai": true,
3146
3221
  "default": false,
3147
3222
  "multimodal": []
3148
3223
  },
@@ -3219,6 +3294,7 @@
3219
3294
  },
3220
3295
  "ctx": 200000,
3221
3296
  "tokens": 100000,
3297
+ "openai": true,
3222
3298
  "default": false,
3223
3299
  "multimodal": []
3224
3300
  },
@@ -3294,6 +3370,7 @@
3294
3370
  },
3295
3371
  "ctx": 200000,
3296
3372
  "tokens": 100000,
3373
+ "openai": true,
3297
3374
  "default": false,
3298
3375
  "multimodal": [],
3299
3376
  "extra": {
@@ -3372,6 +3449,7 @@
3372
3449
  },
3373
3450
  "ctx": 200000,
3374
3451
  "tokens": 100000,
3452
+ "openai": true,
3375
3453
  "default": false,
3376
3454
  "multimodal": [],
3377
3455
  "extra": {
@@ -3450,6 +3528,7 @@
3450
3528
  },
3451
3529
  "ctx": 200000,
3452
3530
  "tokens": 100000,
3531
+ "openai": true,
3453
3532
  "default": false,
3454
3533
  "multimodal": [],
3455
3534
  "extra": {
@@ -3529,6 +3608,7 @@
3529
3608
  },
3530
3609
  "ctx": 200000,
3531
3610
  "tokens": 100000,
3611
+ "openai": true,
3532
3612
  "default": false,
3533
3613
  "multimodal": []
3534
3614
  },
@@ -3605,6 +3685,7 @@
3605
3685
  },
3606
3686
  "ctx": 200000,
3607
3687
  "tokens": 100000,
3688
+ "openai": true,
3608
3689
  "default": false,
3609
3690
  "multimodal": []
3610
3691
  },
@@ -3616,7 +3697,8 @@
3616
3697
  "langchain",
3617
3698
  "agent",
3618
3699
  "agent_llama",
3619
- "expert"
3700
+ "expert",
3701
+ "chat"
3620
3702
  ],
3621
3703
  "langchain": {
3622
3704
  "provider": "ollama",
@@ -3658,7 +3740,8 @@
3658
3740
  "llama_index",
3659
3741
  "agent",
3660
3742
  "agent_llama",
3661
- "expert"
3743
+ "expert",
3744
+ "chat"
3662
3745
  ],
3663
3746
  "langchain": {
3664
3747
  "provider": "ollama",
@@ -3700,7 +3783,8 @@
3700
3783
  "llama_index",
3701
3784
  "agent",
3702
3785
  "agent_llama",
3703
- "expert"
3786
+ "expert",
3787
+ "chat"
3704
3788
  ],
3705
3789
  "langchain": {
3706
3790
  "provider": "ollama",
@@ -3742,7 +3826,8 @@
3742
3826
  "llama_index",
3743
3827
  "agent",
3744
3828
  "agent_llama",
3745
- "expert"
3829
+ "expert",
3830
+ "chat"
3746
3831
  ],
3747
3832
  "langchain": {
3748
3833
  "provider": "ollama",
@@ -3776,6 +3861,92 @@
3776
3861
  "tokens": 4096,
3777
3862
  "default": false
3778
3863
  },
3864
+ "qwen3:8b": {
3865
+ "id": "qwen3:8b",
3866
+ "name": "qwen3:8b",
3867
+ "mode": [
3868
+ "langchain",
3869
+ "llama_index",
3870
+ "agent",
3871
+ "agent_llama",
3872
+ "expert",
3873
+ "chat"
3874
+ ],
3875
+ "langchain": {
3876
+ "provider": "ollama",
3877
+ "mode": [
3878
+ "chat"
3879
+ ],
3880
+ "args": [
3881
+ {
3882
+ "name": "model",
3883
+ "value": "qwen3:8b",
3884
+ "type": "str"
3885
+ }
3886
+ ],
3887
+ "env": []
3888
+ },
3889
+ "llama_index": {
3890
+ "provider": "ollama",
3891
+ "mode": [
3892
+ "chat"
3893
+ ],
3894
+ "args": [
3895
+ {
3896
+ "name": "model",
3897
+ "value": "qwen3:8b",
3898
+ "type": "str"
3899
+ }
3900
+ ],
3901
+ "env": []
3902
+ },
3903
+ "ctx": 40000,
3904
+ "tokens": 4096,
3905
+ "default": false
3906
+ },
3907
+ "qwen3:30b-a3b": {
3908
+ "id": "qwen3:30b-a3b",
3909
+ "name": "qwen3:30b-a3b",
3910
+ "mode": [
3911
+ "langchain",
3912
+ "llama_index",
3913
+ "agent",
3914
+ "agent_llama",
3915
+ "expert",
3916
+ "chat"
3917
+ ],
3918
+ "langchain": {
3919
+ "provider": "ollama",
3920
+ "mode": [
3921
+ "chat"
3922
+ ],
3923
+ "args": [
3924
+ {
3925
+ "name": "model",
3926
+ "value": "qwen3:30b-a3b",
3927
+ "type": "str"
3928
+ }
3929
+ ],
3930
+ "env": []
3931
+ },
3932
+ "llama_index": {
3933
+ "provider": "ollama",
3934
+ "mode": [
3935
+ "chat"
3936
+ ],
3937
+ "args": [
3938
+ {
3939
+ "name": "model",
3940
+ "value": "qwen3:30b-a3b",
3941
+ "type": "str"
3942
+ }
3943
+ ],
3944
+ "env": []
3945
+ },
3946
+ "ctx": 40000,
3947
+ "tokens": 4096,
3948
+ "default": false
3949
+ },
3779
3950
  "sonar-deep-research": {
3780
3951
  "id": "sonar-deep-research",
3781
3952
  "name": "sonar-deep-research",
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "__meta__": {
3
- "version": "2.5.14",
4
- "app.version": "2.5.14",
5
- "updated_at": "2025-06-23T00:00:00"
3
+ "version": "2.5.18",
4
+ "app.version": "2.5.18",
5
+ "updated_at": "2025-06-26T00:00:00"
6
6
  },
7
7
  "items": {
8
8
  "chat": {
@@ -11,6 +11,12 @@
11
11
  "label": "mode.chat",
12
12
  "default": true
13
13
  },
14
+ "llama_index": {
15
+ "id": "llama_index",
16
+ "name": "Index (LlamaIndex)",
17
+ "label": "mode.llama_index",
18
+ "default": false
19
+ },
14
20
  "audio": {
15
21
  "id": "audio",
16
22
  "name": "audio",
@@ -52,13 +58,7 @@
52
58
  "name": "langchain",
53
59
  "label": "mode.langchain",
54
60
  "default": false
55
- },
56
- "llama_index": {
57
- "id": "llama_index",
58
- "name": "Index (LlamaIndex)",
59
- "label": "mode.llama_index",
60
- "default": false
61
- },
61
+ },
62
62
  "agent_llama": {
63
63
  "id": "agent_llama",
64
64
  "name": "Agent (LlamaIndex)",