dbgpt_webserver.log 381 KB
Newer Older
chenzk's avatar
v1.0  
chenzk committed
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
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
2025-03-31 17:06:52 | INFO | dbgpt.component | Register component with name dbgpt_unified_metadata_db_manager_factory and instance: <dbgpt.storage.metadata.db_factory.UnifiedDBManagerFactory object at 0x7fd8df4817e0>
2025-03-31 17:06:52 | INFO | dbgpt.component | Register component with name dbgpt_unified_metadata_db_manager_factory and instance: <dbgpt.storage.metadata.db_factory.UnifiedDBManagerFactory object at 0x7fd8df4817e0>
2025-03-31 17:06:52 | INFO | dbgpt.datasource.rdbms.base | Closing RDBMS connector resources...
2025-03-31 17:06:52 | INFO | dbgpt.datasource.rdbms.base | Closing RDBMS connector resources...
2025-03-31 17:06:58 | INFO | dbgpt.component | Register component with name dbgpt_thread_pool_default and instance: <dbgpt.util.executor_utils.DefaultExecutorFactory object at 0x7fd8db9c4820>
2025-03-31 17:06:58 | INFO | dbgpt.component | Register component with name dbgpt_thread_pool_default and instance: <dbgpt.util.executor_utils.DefaultExecutorFactory object at 0x7fd8db9c4820>
2025-03-31 17:06:58 | INFO | dbgpt.component | Register component with name dbgpt_default_scheduler and instance: <dbgpt_app.initialization.scheduler.DefaultScheduler object at 0x7fd8db9c4760>
2025-03-31 17:06:58 | INFO | dbgpt.component | Register component with name dbgpt_default_scheduler and instance: <dbgpt_app.initialization.scheduler.DefaultScheduler object at 0x7fd8db9c4760>
2025-03-31 17:06:58 | INFO | dbgpt.component | Register component with name dbgpt_model_controller and instance: <dbgpt.model.cluster.controller.controller.ModelControllerAdapter object at 0x7fe2d0481b40>
2025-03-31 17:06:58 | INFO | dbgpt.component | Register component with name dbgpt_model_controller and instance: <dbgpt.model.cluster.controller.controller.ModelControllerAdapter object at 0x7fe2d0481b40>
2025-03-31 17:06:58 | INFO | dbgpt.component | Register component with name dbgpt_connector_manager and instance: <dbgpt_serve.datasource.manages.connector_manager.ConnectorManager object at 0x7fd8db9c7f40>
2025-03-31 17:06:58 | INFO | dbgpt.component | Register component with name dbgpt_connector_manager and instance: <dbgpt_serve.datasource.manages.connector_manager.ConnectorManager object at 0x7fd8db9c7f40>
2025-03-31 17:06:58 | INFO | dbgpt.component | Register component with name dbgpt_rag_storage_manager and instance: <dbgpt_serve.rag.storage_manager.StorageManager object at 0x7fd8db9c5300>
2025-03-31 17:06:58 | INFO | dbgpt.component | Register component with name dbgpt_rag_storage_manager and instance: <dbgpt_serve.rag.storage_manager.StorageManager object at 0x7fd8db9c5300>
2025-03-31 17:06:59 | INFO | dbgpt.component | Register component with name dbgpt_plugin_hub and instance: <dbgpt_serve.agent.hub.controller.ModulePlugin object at 0x7fd8db822110>
2025-03-31 17:06:59 | INFO | dbgpt.component | Register component with name dbgpt_plugin_hub and instance: <dbgpt_serve.agent.hub.controller.ModulePlugin object at 0x7fd8db822110>
2025-03-31 17:06:59 | INFO | dbgpt.component | Register component with name dbgpt_multi_agents and instance: <dbgpt_serve.agent.agents.controller.MultiAgents object at 0x7fd8dd1dbf10>
2025-03-31 17:06:59 | INFO | dbgpt.component | Register component with name dbgpt_multi_agents and instance: <dbgpt_serve.agent.agents.controller.MultiAgents object at 0x7fd8dd1dbf10>
2025-03-31 17:06:59 | INFO | dbgpt_app.initialization.embedding_component | Register remote RemoteEmbeddingFactory
2025-03-31 17:06:59 | INFO | dbgpt.component | Register component with name embedding_factory and instance: <dbgpt_app.initialization.embedding_component.RemoteEmbeddingFactory object at 0x7fd8db809030>
2025-03-31 17:06:59 | INFO | dbgpt.component | Register component with name embedding_factory and instance: <dbgpt_app.initialization.embedding_component.RemoteEmbeddingFactory object at 0x7fd8db809030>
2025-03-31 17:06:59 | INFO | dbgpt.component | Register component with name dbgpt_model_cache_manager and instance: <dbgpt.storage.cache.manager.LocalCacheManager object at 0x7fd8db80a1d0>
2025-03-31 17:06:59 | INFO | dbgpt.component | Register component with name dbgpt_model_cache_manager and instance: <dbgpt.storage.cache.manager.LocalCacheManager object at 0x7fd8db80a1d0>
2025-03-31 17:06:59 | INFO | dbgpt.component | Register component with name dbgpt_awel_trigger_manager and instance: <dbgpt.core.awel.trigger.trigger_manager.DefaultTriggerManager object at 0x7fd8db8a7730>
2025-03-31 17:06:59 | INFO | dbgpt.component | Register component with name dbgpt_awel_trigger_manager and instance: <dbgpt.core.awel.trigger.trigger_manager.DefaultTriggerManager object at 0x7fd8db8a7730>
2025-03-31 17:06:59 | INFO | dbgpt.component | Register component with name dbgpt_awel_dag_manager and instance: <dbgpt.core.awel.dag.dag_manager.DAGManager object at 0x7fd8db8a75e0>
2025-03-31 17:06:59 | INFO | dbgpt.component | Register component with name dbgpt_awel_dag_manager and instance: <dbgpt.core.awel.dag.dag_manager.DAGManager object at 0x7fd8db8a75e0>
2025-03-31 17:07:00 | INFO | dbgpt.component | Register component with name dbgpt_resource_manager and instance: <dbgpt.agent.resource.manage.ResourceManager object at 0x7fd8db9f4a00>
2025-03-31 17:07:00 | INFO | dbgpt.component | Register component with name dbgpt_resource_manager and instance: <dbgpt.agent.resource.manage.ResourceManager object at 0x7fd8db9f4a00>
2025-03-31 17:07:00 | INFO | dbgpt.component | Register component with name dbgpt_agent_manager and instance: <dbgpt.agent.core.agent_manage.AgentManager object at 0x7fd8db9f4610>
2025-03-31 17:07:00 | INFO | dbgpt.component | Register component with name dbgpt_agent_manager and instance: <dbgpt.agent.core.agent_manage.AgentManager object at 0x7fd8db9f4610>
2025-03-31 17:07:00 | INFO | dbgpt.component | Register component with name dbgpt_app_editor_service and instance: <dbgpt_app.openapi.api_v1.editor.service.EditorService object at 0x7fd8db9f47f0>
2025-03-31 17:07:00 | INFO | dbgpt.component | Register component with name dbgpt_app_editor_service and instance: <dbgpt_app.openapi.api_v1.editor.service.EditorService object at 0x7fd8db9f47f0>
2025-03-31 17:07:00 | INFO | dbgpt.component | Register component with name dbgpt_serve_prompt and instance: <dbgpt_serve.prompt.serve.Serve object at 0x7fd8db9f6500>
2025-03-31 17:07:00 | INFO | dbgpt.component | Register component with name dbgpt_serve_prompt and instance: <dbgpt_serve.prompt.serve.Serve object at 0x7fd8db9f6500>
2025-03-31 17:07:00 | INFO | dbgpt.component | Register component with name dbgpt_serve_prompt_service and instance: <dbgpt_serve.prompt.service.service.Service object at 0x7fd8db9f2ce0>
2025-03-31 17:07:00 | INFO | dbgpt.component | Register component with name dbgpt_serve_prompt_service and instance: <dbgpt_serve.prompt.service.service.Service object at 0x7fd8db9f2ce0>
2025-03-31 17:07:00 | INFO | dbgpt.component | Register component with name dbgpt_serve_conversation and instance: <dbgpt_serve.conversation.serve.Serve object at 0x7fd8db9f1e10>
2025-03-31 17:07:00 | INFO | dbgpt.component | Register component with name dbgpt_serve_conversation and instance: <dbgpt_serve.conversation.serve.Serve object at 0x7fd8db9f1e10>
2025-03-31 17:07:00 | INFO | dbgpt.component | Register component with name dbgpt_serve_conversation_service and instance: <dbgpt_serve.conversation.service.service.Service object at 0x7fd8db8a6a70>
2025-03-31 17:07:00 | INFO | dbgpt.component | Register component with name dbgpt_serve_conversation_service and instance: <dbgpt_serve.conversation.service.service.Service object at 0x7fd8db8a6a70>
2025-03-31 17:07:00 | INFO | dbgpt.component | Register component with name dbgpt_variables_provider and instance: <dbgpt.core.interface.variables.StorageVariablesProvider object at 0x7fd8db8d54e0>
2025-03-31 17:07:00 | INFO | dbgpt.component | Register component with name dbgpt_variables_provider and instance: <dbgpt.core.interface.variables.StorageVariablesProvider object at 0x7fd8db8d54e0>
2025-03-31 17:07:00 | INFO | dbgpt.component | Register component with name dbgpt_serve_flow and instance: <dbgpt_serve.flow.serve.Serve object at 0x7fd8db8d5f30>
2025-03-31 17:07:00 | INFO | dbgpt.component | Register component with name dbgpt_serve_flow and instance: <dbgpt_serve.flow.serve.Serve object at 0x7fd8db8d5f30>
2025-03-31 17:07:01 | INFO | dbgpt.component | Register component with name dbgpt_dbgpts_loader and instance: <dbgpt.util.dbgpts.loader.DBGPTsLoader object at 0x7fd8da65d870>
2025-03-31 17:07:01 | INFO | dbgpt.component | Register component with name dbgpt_dbgpts_loader and instance: <dbgpt.util.dbgpts.loader.DBGPTsLoader object at 0x7fd8da65d870>
2025-03-31 17:07:01 | INFO | dbgpt.component | Register component with name dbgpt_serve_flow_service and instance: <dbgpt_serve.flow.service.service.Service object at 0x7fd8db8d6140>
2025-03-31 17:07:01 | INFO | dbgpt.component | Register component with name dbgpt_serve_flow_service and instance: <dbgpt_serve.flow.service.service.Service object at 0x7fd8db8d6140>
2025-03-31 17:07:01 | INFO | dbgpt.component | Register component with name dbgpt_serve_flow_variables_service and instance: <dbgpt_serve.flow.service.variables_service.VariablesService object at 0x7fd8da65d8d0>
2025-03-31 17:07:01 | INFO | dbgpt.component | Register component with name dbgpt_serve_flow_variables_service and instance: <dbgpt_serve.flow.service.variables_service.VariablesService object at 0x7fd8da65d8d0>
2025-03-31 17:07:01 | INFO | dbgpt.component | Register component with name dbgpt.core.flow.flows and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinFlowVariablesProvider object at 0x7fd8da65d990>
2025-03-31 17:07:01 | INFO | dbgpt.component | Register component with name dbgpt.core.flow.flows and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinFlowVariablesProvider object at 0x7fd8da65d990>
2025-03-31 17:07:01 | INFO | dbgpt.component | Register component with name dbgpt.core.flow.nodes and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinNodeVariablesProvider object at 0x7fd8da65d9f0>
2025-03-31 17:07:01 | INFO | dbgpt.component | Register component with name dbgpt.core.flow.nodes and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinNodeVariablesProvider object at 0x7fd8da65d9f0>
2025-03-31 17:07:01 | INFO | dbgpt.component | Register component with name dbgpt.core.variables and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinAllVariablesProvider object at 0x7fd8da65da50>
2025-03-31 17:07:01 | INFO | dbgpt.component | Register component with name dbgpt.core.variables and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinAllVariablesProvider object at 0x7fd8da65da50>
2025-03-31 17:07:01 | INFO | dbgpt.component | Register component with name dbgpt.core.secrets and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinAllSecretVariablesProvider object at 0x7fd8da65dab0>
2025-03-31 17:07:01 | INFO | dbgpt.component | Register component with name dbgpt.core.secrets and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinAllSecretVariablesProvider object at 0x7fd8da65dab0>
2025-03-31 17:07:01 | INFO | dbgpt.component | Register component with name dbgpt.core.model.llms and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinLLMVariablesProvider object at 0x7fd8da65db10>
2025-03-31 17:07:01 | INFO | dbgpt.component | Register component with name dbgpt.core.model.llms and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinLLMVariablesProvider object at 0x7fd8da65db10>
2025-03-31 17:07:01 | INFO | dbgpt.component | Register component with name dbgpt.core.model.embeddings and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinEmbeddingsVariablesProvider object at 0x7fd8da65db70>
2025-03-31 17:07:01 | INFO | dbgpt.component | Register component with name dbgpt.core.model.embeddings and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinEmbeddingsVariablesProvider object at 0x7fd8da65db70>
2025-03-31 17:07:01 | INFO | dbgpt.component | Register component with name dbgpt.core.datasources and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinDatasourceVariablesProvider object at 0x7fd8da65dbd0>
2025-03-31 17:07:01 | INFO | dbgpt.component | Register component with name dbgpt.core.datasources and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinDatasourceVariablesProvider object at 0x7fd8da65dbd0>
2025-03-31 17:07:01 | INFO | dbgpt.component | Register component with name dbgpt.core.agent.agents and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinAgentsVariablesProvider object at 0x7fd8da65dc30>
2025-03-31 17:07:01 | INFO | dbgpt.component | Register component with name dbgpt.core.agent.agents and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinAgentsVariablesProvider object at 0x7fd8da65dc30>
2025-03-31 17:07:01 | INFO | dbgpt.component | Register component with name dbgpt.core.knowledge_spaces and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinKnowledgeSpacesVariablesProvider object at 0x7fd8da65dc90>
2025-03-31 17:07:01 | INFO | dbgpt.component | Register component with name dbgpt.core.knowledge_spaces and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinKnowledgeSpacesVariablesProvider object at 0x7fd8da65dc90>
2025-03-31 17:07:01 | INFO | dbgpt.component | Register component with name dbgpt_rag and instance: <dbgpt_serve.rag.serve.Serve object at 0x7fd8da65dd20>
2025-03-31 17:07:01 | INFO | dbgpt.component | Register component with name dbgpt_rag and instance: <dbgpt_serve.rag.serve.Serve object at 0x7fd8da65dd20>
2025-03-31 17:07:01 | INFO | dbgpt.component | Register component with name dbgpt_rag_service and instance: <dbgpt_serve.rag.service.service.Service object at 0x7fd8da6e3610>
2025-03-31 17:07:01 | INFO | dbgpt.component | Register component with name dbgpt_rag_service and instance: <dbgpt_serve.rag.service.service.Service object at 0x7fd8da6e3610>
2025-03-31 17:07:01 | INFO | dbgpt.component | Register component with name dbgpt_datasource and instance: <dbgpt_serve.datasource.serve.Serve object at 0x7fd8da1281f0>
2025-03-31 17:07:01 | INFO | dbgpt.component | Register component with name dbgpt_datasource and instance: <dbgpt_serve.datasource.serve.Serve object at 0x7fd8da1281f0>
2025-03-31 17:07:01 | INFO | dbgpt.component | Register component with name dbgpt_datasource_service and instance: <dbgpt_serve.datasource.service.service.Service object at 0x7fd8da160b20>
2025-03-31 17:07:01 | INFO | dbgpt.component | Register component with name dbgpt_datasource_service and instance: <dbgpt_serve.datasource.service.service.Service object at 0x7fd8da160b20>
2025-03-31 17:07:01 | INFO | dbgpt.component | Register component with name dbgpt_serve_feedback and instance: <dbgpt_serve.feedback.serve.Serve object at 0x7fd8da16caf0>
2025-03-31 17:07:01 | INFO | dbgpt.component | Register component with name dbgpt_serve_feedback and instance: <dbgpt_serve.feedback.serve.Serve object at 0x7fd8da16caf0>
2025-03-31 17:07:01 | INFO | dbgpt.component | Register component with name dbgpt_serve_feedback_service and instance: <dbgpt_serve.feedback.service.service.Service object at 0x7fd8da16c370>
2025-03-31 17:07:01 | INFO | dbgpt.component | Register component with name dbgpt_serve_feedback_service and instance: <dbgpt_serve.feedback.service.service.Service object at 0x7fd8da16c370>
2025-03-31 17:07:02 | INFO | dbgpt.component | Register component with name dbgpt_serve_dbgpts_hub and instance: <dbgpt_serve.dbgpts.hub.serve.Serve object at 0x7fd8da1baef0>
2025-03-31 17:07:02 | INFO | dbgpt.component | Register component with name dbgpt_serve_dbgpts_hub and instance: <dbgpt_serve.dbgpts.hub.serve.Serve object at 0x7fd8da1baef0>
2025-03-31 17:07:02 | INFO | dbgpt.component | Register component with name dbgpt_serve_dbgpts_hub_service and instance: <dbgpt_serve.dbgpts.hub.service.service.Service object at 0x7fd8da1f1a80>
2025-03-31 17:07:02 | INFO | dbgpt.component | Register component with name dbgpt_serve_dbgpts_hub_service and instance: <dbgpt_serve.dbgpts.hub.service.service.Service object at 0x7fd8da1f1a80>
2025-03-31 17:07:02 | INFO | dbgpt.component | Register component with name dbgpt_serve_dbgpts_my and instance: <dbgpt_serve.dbgpts.my.serve.Serve object at 0x7fd8da1f1960>
2025-03-31 17:07:02 | INFO | dbgpt.component | Register component with name dbgpt_serve_dbgpts_my and instance: <dbgpt_serve.dbgpts.my.serve.Serve object at 0x7fd8da1f1960>
2025-03-31 17:07:02 | INFO | dbgpt.component | Register component with name dbgpt_serve_dbgpts_my_service and instance: <dbgpt_serve.dbgpts.my.service.service.Service object at 0x7fd8da0a6ad0>
2025-03-31 17:07:02 | INFO | dbgpt.component | Register component with name dbgpt_serve_dbgpts_my_service and instance: <dbgpt_serve.dbgpts.my.service.service.Service object at 0x7fd8da0a6ad0>
2025-03-31 17:07:03 | INFO | dbgpt.component | Register component with name dbgpt_serve_file and instance: <dbgpt_serve.file.serve.Serve object at 0x7fd8d9b4a6e0>
2025-03-31 17:07:03 | INFO | dbgpt.component | Register component with name dbgpt_serve_file and instance: <dbgpt_serve.file.serve.Serve object at 0x7fd8d9b4a6e0>
2025-03-31 17:07:03 | INFO | dbgpt.component | Register component with name dbgpt_serve_file_service and instance: <dbgpt_serve.file.service.service.Service object at 0x7fd8da1c1150>
2025-03-31 17:07:03 | INFO | dbgpt.component | Register component with name dbgpt_serve_file_service and instance: <dbgpt_serve.file.service.service.Service object at 0x7fd8da1c1150>
2025-03-31 17:07:04 | INFO | dbgpt.component | Register component with name dbgpt_serve_evaluate and instance: <dbgpt_serve.evaluate.serve.Serve object at 0x7fd8d9be7700>
2025-03-31 17:07:04 | INFO | dbgpt.component | Register component with name dbgpt_serve_evaluate and instance: <dbgpt_serve.evaluate.serve.Serve object at 0x7fd8d9be7700>
2025-03-31 17:07:04 | INFO | dbgpt.component | Register component with name dbgpt_serve_evaluate_service and instance: <dbgpt_serve.evaluate.service.service.Service object at 0x7fd8d9be76a0>
2025-03-31 17:07:04 | INFO | dbgpt.component | Register component with name dbgpt_serve_evaluate_service and instance: <dbgpt_serve.evaluate.service.service.Service object at 0x7fd8d9be76a0>
2025-03-31 17:07:05 | INFO | dbgpt.component | Register component with name dbgpt_serve_libro and instance: <dbgpt_serve.libro.serve.Serve object at 0x7fd8d9bbd000>
2025-03-31 17:07:05 | INFO | dbgpt.component | Register component with name dbgpt_serve_libro and instance: <dbgpt_serve.libro.serve.Serve object at 0x7fd8d9bbd000>
2025-03-31 17:07:05 | INFO | dbgpt.component | Register component with name dbgpt_serve_libro_service and instance: <dbgpt_serve.libro.service.service.Service object at 0x7fd8d9a32aa0>
2025-03-31 17:07:05 | INFO | dbgpt.component | Register component with name dbgpt_serve_libro_service and instance: <dbgpt_serve.libro.service.service.Service object at 0x7fd8d9a32aa0>
2025-03-31 17:07:05 | INFO | dbgpt.component | Register component with name dbgpt_serve_model and instance: <dbgpt_serve.model.serve.Serve object at 0x7fd8d9ad40a0>
2025-03-31 17:07:05 | INFO | dbgpt.component | Register component with name dbgpt_serve_model and instance: <dbgpt_serve.model.serve.Serve object at 0x7fd8d9ad40a0>
2025-03-31 17:07:05 | INFO | dbgpt.component | Register component with name dbgpt_serve_model_service and instance: <dbgpt_serve.model.service.service.Service object at 0x7fd8d9ad4070>
2025-03-31 17:07:05 | INFO | dbgpt.component | Register component with name dbgpt_serve_model_service and instance: <dbgpt_serve.model.service.service.Service object at 0x7fd8d9ad4070>
2025-03-31 17:07:06 | INFO | dbgpt.component | Register component with name base_dbgpt_component and instance: <dbgpt.util.code.server.CodeServer object at 0x7fd8d9a33a90>
2025-03-31 17:07:06 | INFO | dbgpt.component | Register component with name base_dbgpt_component and instance: <dbgpt.util.code.server.CodeServer object at 0x7fd8d9a33a90>
2025-03-31 17:07:12 | WARNING | dbgpt.util._db_migration_utils | Initialize and upgrade database metadata with alembic, just run this in your development environment, if you deploy this in production environment, please run webserver with --disable_alembic_upgrade(`python dbgpt/app/dbgpt_server.py --disable_alembic_upgrade`).
we suggest you to use `dbgpt db migration` to initialize and upgrade database metadata with alembic, your can run `dbgpt db migration --help` to get more information.
2025-03-31 17:07:12 | INFO | alembic.runtime.migration | Context impl SQLiteImpl.
2025-03-31 17:07:12 | INFO | alembic.runtime.migration | Will assume non-transactional DDL.
2025-03-31 17:07:12 | INFO | dbgpt.util._db_migration_utils | Migration versions and their file paths:
========================================Migration versions========================================

==========================================================================================
2025-03-31 17:07:12 | INFO | alembic.runtime.migration | Context impl SQLiteImpl.
2025-03-31 17:07:12 | INFO | alembic.runtime.migration | Will assume non-transactional DDL.
2025-03-31 17:07:12 | INFO | alembic.runtime.migration | Context impl SQLiteImpl.
2025-03-31 17:07:12 | INFO | alembic.runtime.migration | Will assume non-transactional DDL.
2025-03-31 17:07:12 | INFO | dbgpt.util._db_migration_utils | alembic migration current revision: None, latest revision: None
2025-03-31 17:07:12 | INFO | alembic.runtime.migration | Context impl SQLiteImpl.
2025-03-31 17:07:12 | INFO | alembic.runtime.migration | Will assume non-transactional DDL.
2025-03-31 17:07:15 | INFO | alembic.runtime.migration | Context impl SQLiteImpl.
2025-03-31 17:07:15 | INFO | alembic.runtime.migration | Will assume non-transactional DDL.
2025-03-31 17:07:15 | INFO | alembic.runtime.migration | Running upgrade  -> 77cb31a83832, New migration
2025-03-31 17:07:15 | INFO | dbgpt.component | Register component with name dbgpt_file_storage_client and instance: <dbgpt.core.interface.file.FileStorageClient object at 0x7fd8d82a57e0>
2025-03-31 17:07:15 | INFO | dbgpt.component | Register component with name dbgpt_file_storage_client and instance: <dbgpt.core.interface.file.FileStorageClient object at 0x7fd8d82a57e0>
2025-03-31 17:07:15 | INFO | dbgpt_app.dbgpt_server | Model Unified Deployment Mode, run all services in the same process
2025-03-31 17:07:15 | INFO | dbgpt_app.dbgpt_server | Model Unified Deployment Mode, run all services in the same process
2025-03-31 17:07:15 | INFO | dbgpt.model.cluster.worker.manager | Register WorkerManager dbgpt_worker_manager_factory
2025-03-31 17:07:15 | INFO | dbgpt.model.cluster.worker.manager | Register WorkerManager dbgpt_worker_manager_factory
2025-03-31 17:07:15 | INFO | dbgpt.component | Register component with name dbgpt_worker_manager_factory and instance: <dbgpt.model.cluster.worker.manager._DefaultWorkerManagerFactory object at 0x7fd8d8277b80>
2025-03-31 17:07:15 | INFO | dbgpt.component | Register component with name dbgpt_worker_manager_factory and instance: <dbgpt.model.cluster.worker.manager._DefaultWorkerManagerFactory object at 0x7fd8d8277b80>
2025-03-31 17:07:15 | INFO | dbgpt.model.cluster.worker.manager | Worker params: 

=========================== ModelWorkerParameters ===========================

host: 0.0.0.0
port: 5670
daemon: False
log: 

=========================== LoggingParameters ===========================

level: INFO
file: None

======================================================================


trace: None
worker_type: None
worker_class: None
standalone: True
register: True
worker_register_host: None
controller_addr: None
send_heartbeat: True
heartbeat_interval: 20

======================================================================


2025-03-31 17:07:15 | INFO | dbgpt.model.cluster.worker.manager | Worker params: 

=========================== ModelWorkerParameters ===========================

host: 0.0.0.0
port: 5670
daemon: False
log: 

=========================== LoggingParameters ===========================

level: INFO
file: None

======================================================================


trace: None
worker_type: None
worker_class: None
standalone: True
register: True
worker_register_host: None
controller_addr: None
send_heartbeat: True
heartbeat_interval: 20

======================================================================


2025-03-31 17:07:15 | INFO | dbgpt.model.cluster.worker.manager | Run WorkerManager with standalone mode, controller_addr: http://127.0.0.1:5670
2025-03-31 17:07:15 | INFO | dbgpt.model.cluster.worker.manager | Run WorkerManager with standalone mode, controller_addr: http://127.0.0.1:5670
2025-03-31 17:07:15 | INFO | dbgpt.model.adapter.model_adapter | Current model THUDM/glm-4-9b-chat-hf use new adapter <GLM4Adapter model_name=THUDM/glm-4-9b-chat-hf model_path=/home/DB-GPT/models/THUDM/glm-4-9b-chat-hf>
2025-03-31 17:07:15 | INFO | dbgpt.model.adapter.model_adapter | Current model THUDM/glm-4-9b-chat-hf use new adapter <GLM4Adapter model_name=THUDM/glm-4-9b-chat-hf model_path=/home/DB-GPT/models/THUDM/glm-4-9b-chat-hf>
2025-03-31 17:07:15 | WARNING | dbgpt.util.api_utils | Health check failed for http://127.0.0.1:5670, error: HTTPConnectionPool(host='127.0.0.1', port=5670): Max retries exceeded with url: /api/health (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7fd8d8327c70>: Failed to establish a new connection: [Errno 111] Connection refused'))
2025-03-31 17:07:15 | INFO | dbgpt.model.cluster.worker.default_worker | model_name: THUDM/glm-4-9b-chat-hf, model_path: /home/DB-GPT/models/THUDM/glm-4-9b-chat-hf, model_param_class: <class 'dbgpt.model.adapter.hf_adapter.HFLLMDeployModelParameters'>
2025-03-31 17:07:15 | INFO | dbgpt.model.cluster.worker.default_worker | model_name: THUDM/glm-4-9b-chat-hf, model_path: /home/DB-GPT/models/THUDM/glm-4-9b-chat-hf, model_param_class: <class 'dbgpt.model.adapter.hf_adapter.HFLLMDeployModelParameters'>
2025-03-31 17:07:15 | WARNING | dbgpt.util.api_utils | Health check failed for http://127.0.0.1:5670, error: HTTPConnectionPool(host='127.0.0.1', port=5670): Max retries exceeded with url: /api/health (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7fd8d8327c70>: Failed to establish a new connection: [Errno 111] Connection refused'))
2025-03-31 17:07:15 | INFO | dbgpt.model.cluster.worker.manager | Init empty instances list for THUDM/glm-4-9b-chat-hf@llm
2025-03-31 17:07:15 | INFO | dbgpt.model.cluster.worker.manager | Init empty instances list for THUDM/glm-4-9b-chat-hf@llm
2025-03-31 17:07:15 | INFO | dbgpt.model.cluster.worker.manager | Start local embedding worker with embedding parameters


=========================== ModelWorkerParameters ===========================

host: 0.0.0.0
port: 8001
daemon: False
log: 

=========================== LoggingParameters ===========================

level: ${env:DBGPT_LOG_LEVEL:-INFO}
file: None

======================================================================


trace: None
worker_type: text2vec
worker_class: None
standalone: False
register: True
worker_register_host: None
controller_addr: None
send_heartbeat: True
heartbeat_interval: 20

======================================================================


2025-03-31 17:07:15 | INFO | dbgpt.model.cluster.worker.manager | Start local embedding worker with embedding parameters


=========================== ModelWorkerParameters ===========================

host: 0.0.0.0
port: 8001
daemon: False
log: 

=========================== LoggingParameters ===========================

level: ${env:DBGPT_LOG_LEVEL:-INFO}
file: None

======================================================================


trace: None
worker_type: text2vec
worker_class: None
standalone: False
register: True
worker_register_host: None
controller_addr: None
send_heartbeat: True
heartbeat_interval: 20

======================================================================


2025-03-31 17:07:15 | INFO | dbgpt.model.cluster.worker.manager | Init empty instances list for BAAI/bge-large-zh-v1.5@text2vec
2025-03-31 17:07:15 | INFO | dbgpt.model.cluster.worker.manager | Init empty instances list for BAAI/bge-large-zh-v1.5@text2vec
2025-03-31 17:07:16 | INFO | dbgpt.util.dbgpts.loader | Found 0 dbgpts packages from /root/.dbgpts/packages/13f94a500b3b8b8477e6f87356068c15
2025-03-31 17:07:16 | INFO | dbgpt_serve.flow.service.compat_service | Found compat file: 0.7.0, use latest: 0.7.0
2025-03-31 17:07:18 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/awel_flow_ui_components.py
2025-03-31 17:07:18 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/awel_flow_ui_components.py
2025-03-31 17:07:18 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/awel_flow_ui_components.py
2025-03-31 17:07:18 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_chat_dag_example.py
2025-03-31 17:07:18 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_chat_dag_example.py
2025-03-31 17:07:18 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_chat_dag_example.py
2025-03-31 17:07:18 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_dag_example) from mod <module 'unusual_prefix_7f93a289b452e786f74233daa5a969e1fd501b71_simple_chat_dag_example' from '/home/DB-GPT/examples/awel/simple_chat_dag_example.py'> and model file /home/DB-GPT/examples/awel/simple_chat_dag_example.py
2025-03-31 17:07:18 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_dag_example) from mod <module 'unusual_prefix_7f93a289b452e786f74233daa5a969e1fd501b71_simple_chat_dag_example' from '/home/DB-GPT/examples/awel/simple_chat_dag_example.py'> and model file /home/DB-GPT/examples/awel/simple_chat_dag_example.py
2025-03-31 17:07:18 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_dag_example) from mod <module 'unusual_prefix_7f93a289b452e786f74233daa5a969e1fd501b71_simple_chat_dag_example' from '/home/DB-GPT/examples/awel/simple_chat_dag_example.py'> and model file /home/DB-GPT/examples/awel/simple_chat_dag_example.py
2025-03-31 17:07:18 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_chat_history_example.py
2025-03-31 17:07:18 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_chat_history_example.py
2025-03-31 17:07:18 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_chat_history_example.py
2025-03-31 17:07:18 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_chat_history) from mod <module 'unusual_prefix_bac1fcf83805e9d79523500ef9de83e5115f69a1_simple_chat_history_example' from '/home/DB-GPT/examples/awel/simple_chat_history_example.py'> and model file /home/DB-GPT/examples/awel/simple_chat_history_example.py
2025-03-31 17:07:18 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_chat_history) from mod <module 'unusual_prefix_bac1fcf83805e9d79523500ef9de83e5115f69a1_simple_chat_history_example' from '/home/DB-GPT/examples/awel/simple_chat_history_example.py'> and model file /home/DB-GPT/examples/awel/simple_chat_history_example.py
2025-03-31 17:07:18 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_chat_history) from mod <module 'unusual_prefix_bac1fcf83805e9d79523500ef9de83e5115f69a1_simple_chat_history_example' from '/home/DB-GPT/examples/awel/simple_chat_history_example.py'> and model file /home/DB-GPT/examples/awel/simple_chat_history_example.py
2025-03-31 17:07:18 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_dag_example.py
2025-03-31 17:07:18 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_dag_example.py
2025-03-31 17:07:18 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_dag_example.py
2025-03-31 17:07:19 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=simple_dag_example) from mod <module 'unusual_prefix_fd02d664f9a189c3be5c5599808ca1d1153a6edf_simple_dag_example' from '/home/DB-GPT/examples/awel/simple_dag_example.py'> and model file /home/DB-GPT/examples/awel/simple_dag_example.py
2025-03-31 17:07:19 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=simple_dag_example) from mod <module 'unusual_prefix_fd02d664f9a189c3be5c5599808ca1d1153a6edf_simple_dag_example' from '/home/DB-GPT/examples/awel/simple_dag_example.py'> and model file /home/DB-GPT/examples/awel/simple_dag_example.py
2025-03-31 17:07:19 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=simple_dag_example) from mod <module 'unusual_prefix_fd02d664f9a189c3be5c5599808ca1d1153a6edf_simple_dag_example' from '/home/DB-GPT/examples/awel/simple_dag_example.py'> and model file /home/DB-GPT/examples/awel/simple_dag_example.py
2025-03-31 17:07:19 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/data_analyst_assistant.py
2025-03-31 17:07:19 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/data_analyst_assistant.py
2025-03-31 17:07:19 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/data_analyst_assistant.py
2025-03-31 17:07:19 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_data_analyst_assistant) from mod <module 'unusual_prefix_26267e42ed6b36891895191fc865906fc5c9903c_data_analyst_assistant' from '/home/DB-GPT/examples/awel/data_analyst_assistant.py'> and model file /home/DB-GPT/examples/awel/data_analyst_assistant.py
2025-03-31 17:07:19 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_data_analyst_assistant) from mod <module 'unusual_prefix_26267e42ed6b36891895191fc865906fc5c9903c_data_analyst_assistant' from '/home/DB-GPT/examples/awel/data_analyst_assistant.py'> and model file /home/DB-GPT/examples/awel/data_analyst_assistant.py
2025-03-31 17:07:19 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_data_analyst_assistant) from mod <module 'unusual_prefix_26267e42ed6b36891895191fc865906fc5c9903c_data_analyst_assistant' from '/home/DB-GPT/examples/awel/data_analyst_assistant.py'> and model file /home/DB-GPT/examples/awel/data_analyst_assistant.py
2025-03-31 17:07:19 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_llm_client_example.py
2025-03-31 17:07:19 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_llm_client_example.py
2025-03-31 17:07:19 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_llm_client_example.py
2025-03-31 17:07:19 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_llm_client_generate) from mod <module 'unusual_prefix_fa5740ee7c9c6d005009382b43e55de50b9eda0d_simple_llm_client_example' from '/home/DB-GPT/examples/awel/simple_llm_client_example.py'> and model file /home/DB-GPT/examples/awel/simple_llm_client_example.py
2025-03-31 17:07:19 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_llm_client_generate) from mod <module 'unusual_prefix_fa5740ee7c9c6d005009382b43e55de50b9eda0d_simple_llm_client_example' from '/home/DB-GPT/examples/awel/simple_llm_client_example.py'> and model file /home/DB-GPT/examples/awel/simple_llm_client_example.py
2025-03-31 17:07:19 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_llm_client_generate) from mod <module 'unusual_prefix_fa5740ee7c9c6d005009382b43e55de50b9eda0d_simple_llm_client_example' from '/home/DB-GPT/examples/awel/simple_llm_client_example.py'> and model file /home/DB-GPT/examples/awel/simple_llm_client_example.py
2025-03-31 17:07:19 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_llm_client_count_token) from mod <module 'unusual_prefix_fa5740ee7c9c6d005009382b43e55de50b9eda0d_simple_llm_client_example' from '/home/DB-GPT/examples/awel/simple_llm_client_example.py'> and model file /home/DB-GPT/examples/awel/simple_llm_client_example.py
2025-03-31 17:07:19 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_llm_client_count_token) from mod <module 'unusual_prefix_fa5740ee7c9c6d005009382b43e55de50b9eda0d_simple_llm_client_example' from '/home/DB-GPT/examples/awel/simple_llm_client_example.py'> and model file /home/DB-GPT/examples/awel/simple_llm_client_example.py
2025-03-31 17:07:19 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_llm_client_count_token) from mod <module 'unusual_prefix_fa5740ee7c9c6d005009382b43e55de50b9eda0d_simple_llm_client_example' from '/home/DB-GPT/examples/awel/simple_llm_client_example.py'> and model file /home/DB-GPT/examples/awel/simple_llm_client_example.py
2025-03-31 17:07:19 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_nl_schema_sql_chart_example.py
2025-03-31 17:07:19 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_nl_schema_sql_chart_example.py
2025-03-31 17:07:19 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_nl_schema_sql_chart_example.py
2025-03-31 17:07:20 | WARNING | dbgpt.util.api_utils | Health check failed for http://127.0.0.1:5670, error: HTTPConnectionPool(host='127.0.0.1', port=5670): Max retries exceeded with url: /api/health (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7fd8bccc1690>: Failed to establish a new connection: [Errno 111] Connection refused'))
2025-03-31 17:07:20 | WARNING | dbgpt.util.api_utils | Health check failed for http://127.0.0.1:5670, error: HTTPConnectionPool(host='127.0.0.1', port=5670): Max retries exceeded with url: /api/health (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7fd8bccc1690>: Failed to establish a new connection: [Errno 111] Connection refused'))
2025-03-31 17:07:21 | INFO | dbgpt.datasource.rdbms.base | Closing RDBMS connector resources...
2025-03-31 17:07:21 | INFO | dbgpt.datasource.rdbms.base | Closing RDBMS connector resources...
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=simple_nl_schema_sql_chart_example) from mod <module 'unusual_prefix_aa5ab7ad0c92b4d4895d19a5e92366b8877d079f_simple_nl_schema_sql_chart_example' from '/home/DB-GPT/examples/awel/simple_nl_schema_sql_chart_example.py'> and model file /home/DB-GPT/examples/awel/simple_nl_schema_sql_chart_example.py
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=simple_nl_schema_sql_chart_example) from mod <module 'unusual_prefix_aa5ab7ad0c92b4d4895d19a5e92366b8877d079f_simple_nl_schema_sql_chart_example' from '/home/DB-GPT/examples/awel/simple_nl_schema_sql_chart_example.py'> and model file /home/DB-GPT/examples/awel/simple_nl_schema_sql_chart_example.py
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=simple_nl_schema_sql_chart_example) from mod <module 'unusual_prefix_aa5ab7ad0c92b4d4895d19a5e92366b8877d079f_simple_nl_schema_sql_chart_example' from '/home/DB-GPT/examples/awel/simple_nl_schema_sql_chart_example.py'> and model file /home/DB-GPT/examples/awel/simple_nl_schema_sql_chart_example.py
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_rag_rewrite_example.py
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_rag_rewrite_example.py
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_rag_rewrite_example.py
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_rag_rewrite_example) from mod <module 'unusual_prefix_bec60c6069e118fc06fbb667d7e76344b458c939_simple_rag_rewrite_example' from '/home/DB-GPT/examples/awel/simple_rag_rewrite_example.py'> and model file /home/DB-GPT/examples/awel/simple_rag_rewrite_example.py
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_rag_rewrite_example) from mod <module 'unusual_prefix_bec60c6069e118fc06fbb667d7e76344b458c939_simple_rag_rewrite_example' from '/home/DB-GPT/examples/awel/simple_rag_rewrite_example.py'> and model file /home/DB-GPT/examples/awel/simple_rag_rewrite_example.py
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_rag_rewrite_example) from mod <module 'unusual_prefix_bec60c6069e118fc06fbb667d7e76344b458c939_simple_rag_rewrite_example' from '/home/DB-GPT/examples/awel/simple_rag_rewrite_example.py'> and model file /home/DB-GPT/examples/awel/simple_rag_rewrite_example.py
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_rag_summary_example.py
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_rag_summary_example.py
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_rag_summary_example.py
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_rag_summary_example) from mod <module 'unusual_prefix_14e17e50bbe0790c364d347efeda2ebbb9628315_simple_rag_summary_example' from '/home/DB-GPT/examples/awel/simple_rag_summary_example.py'> and model file /home/DB-GPT/examples/awel/simple_rag_summary_example.py
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_rag_summary_example) from mod <module 'unusual_prefix_14e17e50bbe0790c364d347efeda2ebbb9628315_simple_rag_summary_example' from '/home/DB-GPT/examples/awel/simple_rag_summary_example.py'> and model file /home/DB-GPT/examples/awel/simple_rag_summary_example.py
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_rag_summary_example) from mod <module 'unusual_prefix_14e17e50bbe0790c364d347efeda2ebbb9628315_simple_rag_summary_example' from '/home/DB-GPT/examples/awel/simple_rag_summary_example.py'> and model file /home/DB-GPT/examples/awel/simple_rag_summary_example.py
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=f5c9b493-25d6-49ad-b076-faff8bc5e9d4)
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=f5c9b493-25d6-49ad-b076-faff8bc5e9d4)
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7fd8bc94edd0>(AWEL_trigger_route__examples_simple_chat), endpoint: /examples/simple_chat, methods: ['POST']
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7fd8bc94edd0>(AWEL_trigger_route__examples_simple_chat), endpoint: /examples/simple_chat, methods: ['POST']
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7fd8bc94edd0>(AWEL_trigger_route__examples_simple_chat), endpoint: /examples/simple_chat, methods: ['POST']
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/simple_chat
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/simple_chat
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/simple_chat
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7fd8db8a76a0> to prefix path /api/v1/awel/trigger
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7fd8db8a76a0> to prefix path /api/v1/awel/trigger
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=a64c744e-4767-463a-886d-6e9c2f3a2ef1)
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=a64c744e-4767-463a-886d-6e9c2f3a2ef1)
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7fd8bc94eef0>(AWEL_trigger_route__examples_simple_history_multi_round_chat_completions), endpoint: /examples/simple_history/multi_round/chat/completions, methods: ['POST']
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7fd8bc94eef0>(AWEL_trigger_route__examples_simple_history_multi_round_chat_completions), endpoint: /examples/simple_history/multi_round/chat/completions, methods: ['POST']
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7fd8bc94eef0>(AWEL_trigger_route__examples_simple_history_multi_round_chat_completions), endpoint: /examples/simple_history/multi_round/chat/completions, methods: ['POST']
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/simple_history/multi_round/chat/completions
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/simple_history/multi_round/chat/completions
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/simple_history/multi_round/chat/completions
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7fd8db8a76a0> to prefix path /api/v1/awel/trigger
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7fd8db8a76a0> to prefix path /api/v1/awel/trigger
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=6fd87988-b0b0-41c3-b919-5b95d56e5084)
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=6fd87988-b0b0-41c3-b919-5b95d56e5084)
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function_get at 0x7fd8bc94f880>(AWEL_trigger_route__examples_hello), endpoint: /examples/hello, methods: ['GET']
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function_get at 0x7fd8bc94f880>(AWEL_trigger_route__examples_hello), endpoint: /examples/hello, methods: ['GET']
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function_get at 0x7fd8bc94f880>(AWEL_trigger_route__examples_hello), endpoint: /examples/hello, methods: ['GET']
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/hello
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/hello
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/hello
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7fd8db8a76a0> to prefix path /api/v1/awel/trigger
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7fd8db8a76a0> to prefix path /api/v1/awel/trigger
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=1a9b88c2-946f-42b8-bbda-57ae24097c6d)
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=1a9b88c2-946f-42b8-bbda-57ae24097c6d)
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7fd8bc94fbe0>(AWEL_trigger_route__examples_data_analyst_copilot), endpoint: /examples/data_analyst/copilot, methods: ['POST']
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7fd8bc94fbe0>(AWEL_trigger_route__examples_data_analyst_copilot), endpoint: /examples/data_analyst/copilot, methods: ['POST']
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7fd8bc94fbe0>(AWEL_trigger_route__examples_data_analyst_copilot), endpoint: /examples/data_analyst/copilot, methods: ['POST']
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/data_analyst/copilot
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/data_analyst/copilot
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/data_analyst/copilot
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7fd8db8a76a0> to prefix path /api/v1/awel/trigger
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7fd8db8a76a0> to prefix path /api/v1/awel/trigger
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=4b10bfa6-0eae-4b71-a611-b09bac8ab3c5)
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=4b10bfa6-0eae-4b71-a611-b09bac8ab3c5)
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7fd8bc94f010>(AWEL_trigger_route__examples_simple_client_chat_completions), endpoint: /examples/simple_client/chat/completions, methods: ['POST']
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7fd8bc94f010>(AWEL_trigger_route__examples_simple_client_chat_completions), endpoint: /examples/simple_client/chat/completions, methods: ['POST']
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7fd8bc94f010>(AWEL_trigger_route__examples_simple_client_chat_completions), endpoint: /examples/simple_client/chat/completions, methods: ['POST']
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/simple_client/chat/completions
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/simple_client/chat/completions
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/simple_client/chat/completions
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7fd8db8a76a0> to prefix path /api/v1/awel/trigger
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7fd8db8a76a0> to prefix path /api/v1/awel/trigger
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=5074b382-34fb-4d1b-bbce-e5d57ba4e461)
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=5074b382-34fb-4d1b-bbce-e5d57ba4e461)
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7fd8bc979750>(AWEL_trigger_route__examples_simple_client_count_token), endpoint: /examples/simple_client/count_token, methods: ['POST']
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7fd8bc979750>(AWEL_trigger_route__examples_simple_client_count_token), endpoint: /examples/simple_client/count_token, methods: ['POST']
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7fd8bc979750>(AWEL_trigger_route__examples_simple_client_count_token), endpoint: /examples/simple_client/count_token, methods: ['POST']
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/simple_client/count_token
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/simple_client/count_token
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/simple_client/count_token
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7fd8db8a76a0> to prefix path /api/v1/awel/trigger
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7fd8db8a76a0> to prefix path /api/v1/awel/trigger
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=41ba99ec-b993-4f30-99ff-6b3c310beb12)
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=41ba99ec-b993-4f30-99ff-6b3c310beb12)
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7fd8bc94fac0>(AWEL_trigger_route__examples_rag_schema_linking), endpoint: /examples/rag/schema_linking, methods: ['POST']
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7fd8bc94fac0>(AWEL_trigger_route__examples_rag_schema_linking), endpoint: /examples/rag/schema_linking, methods: ['POST']
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7fd8bc94fac0>(AWEL_trigger_route__examples_rag_schema_linking), endpoint: /examples/rag/schema_linking, methods: ['POST']
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/rag/schema_linking
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/rag/schema_linking
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/rag/schema_linking
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7fd8db8a76a0> to prefix path /api/v1/awel/trigger
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7fd8db8a76a0> to prefix path /api/v1/awel/trigger
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=eefb48e4-36ce-45c2-a09b-8b1ef18a2131)
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=eefb48e4-36ce-45c2-a09b-8b1ef18a2131)
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7fd8bc97aef0>(AWEL_trigger_route__examples_rag_rewrite), endpoint: /examples/rag/rewrite, methods: ['POST']
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7fd8bc97aef0>(AWEL_trigger_route__examples_rag_rewrite), endpoint: /examples/rag/rewrite, methods: ['POST']
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7fd8bc97aef0>(AWEL_trigger_route__examples_rag_rewrite), endpoint: /examples/rag/rewrite, methods: ['POST']
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/rag/rewrite
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/rag/rewrite
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/rag/rewrite
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7fd8db8a76a0> to prefix path /api/v1/awel/trigger
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7fd8db8a76a0> to prefix path /api/v1/awel/trigger
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=f71106cf-d712-4faf-a534-8881e4e33815)
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=f71106cf-d712-4faf-a534-8881e4e33815)
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7fd8bc97b010>(AWEL_trigger_route__examples_rag_summary), endpoint: /examples/rag/summary, methods: ['POST']
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7fd8bc97b010>(AWEL_trigger_route__examples_rag_summary), endpoint: /examples/rag/summary, methods: ['POST']
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7fd8bc97b010>(AWEL_trigger_route__examples_rag_summary), endpoint: /examples/rag/summary, methods: ['POST']
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/rag/summary
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/rag/summary
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/rag/summary
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7fd8db8a76a0> to prefix path /api/v1/awel/trigger
2025-03-31 17:07:21 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7fd8db8a76a0> to prefix path /api/v1/awel/trigger
2025-03-31 17:07:22 | INFO | dbgpt.model.cluster.worker.manager | Begin start all worker, apply_req: None
2025-03-31 17:07:22 | INFO | dbgpt.model.cluster.worker.manager | Begin start all worker, apply_req: None
2025-03-31 17:07:22 | INFO | dbgpt.model.cluster.worker.manager | Apply req: None, apply_func: <function LocalWorkerManager._start_all_worker.<locals>._start_worker at 0x7fd8bc789ab0>
2025-03-31 17:07:22 | INFO | dbgpt.model.cluster.worker.manager | Apply req: None, apply_func: <function LocalWorkerManager._start_all_worker.<locals>._start_worker at 0x7fd8bc789ab0>
2025-03-31 17:07:22 | INFO | dbgpt.model.cluster.worker.manager | Apply to all workers
2025-03-31 17:07:22 | INFO | dbgpt.model.cluster.worker.manager | Apply to all workers
2025-03-31 17:07:22 | INFO | dbgpt.model.cluster.worker.default_worker | Begin load model, model params: 

=========================== HFLLMDeployModelParameters ===========================

name: THUDM/glm-4-9b-chat-hf
provider: hf
verbose: False
concurrency: 5
backend: None
prompt_template: None
context_length: None
reasoning_model: None
path: models/THUDM/glm-4-9b-chat-hf
device: None
trust_remote_code: True
quantization: None
low_cpu_mem_usage: None
num_gpus: None
max_gpu_memory: None
torch_dtype: None
attn_implementation: None

======================================================================


2025-03-31 17:07:22 | INFO | dbgpt.model.cluster.worker.default_worker | Begin load model, model params: 

=========================== HFLLMDeployModelParameters ===========================

name: THUDM/glm-4-9b-chat-hf
provider: hf
verbose: False
concurrency: 5
backend: None
prompt_template: None
context_length: None
reasoning_model: None
path: models/THUDM/glm-4-9b-chat-hf
device: None
trust_remote_code: True
quantization: None
low_cpu_mem_usage: None
num_gpus: None
max_gpu_memory: None
torch_dtype: None
attn_implementation: None

======================================================================


2025-03-31 17:07:24 | INFO | dbgpt.model.adapter.hf_adapter | Load model from /home/DB-GPT/models/THUDM/glm-4-9b-chat-hf, from_pretrained_kwargs: {'device_map': 'auto', 'max_memory': {0: '27GiB', 1: '27GiB', 2: '27GiB', 3: '27GiB', 4: '27GiB', 5: '27GiB', 6: '27GiB', 7: '27GiB'}, 'torch_dtype': torch.float16, 'low_cpu_mem_usage': True}
2025-03-31 17:07:24 | INFO | dbgpt.model.adapter.hf_adapter | Load model from /home/DB-GPT/models/THUDM/glm-4-9b-chat-hf, from_pretrained_kwargs: {'device_map': 'auto', 'max_memory': {0: '27GiB', 1: '27GiB', 2: '27GiB', 3: '27GiB', 4: '27GiB', 5: '27GiB', 6: '27GiB', 7: '27GiB'}, 'torch_dtype': torch.float16, 'low_cpu_mem_usage': True}
2025-03-31 17:07:24 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:0
2025-03-31 17:07:24 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:0
2025-03-31 17:07:24 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:1
2025-03-31 17:07:24 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:1
2025-03-31 17:07:24 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:2
2025-03-31 17:07:24 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:2
2025-03-31 17:07:24 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:3
2025-03-31 17:07:24 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:3
2025-03-31 17:07:24 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:4
2025-03-31 17:07:24 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:4
2025-03-31 17:07:24 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:5
2025-03-31 17:07:24 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:5
2025-03-31 17:07:24 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:6
2025-03-31 17:07:24 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:6
2025-03-31 17:07:24 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:7
2025-03-31 17:07:24 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:7
2025-03-31 17:07:24 | INFO | dbgpt.model.cluster.worker.embedding_worker | Load embeddings model: BAAI/bge-large-zh-v1.5
2025-03-31 17:07:26 | INFO | datasets | PyTorch version 2.4.1+das.opt2.dtk2504 available.
2025-03-31 17:07:26 | INFO | datasets | Duckdb version 1.2.0 available.
2025-03-31 17:07:26 | INFO | sentence_transformers.SentenceTransformer | Use pytorch device_name: cuda
2025-03-31 17:07:26 | INFO | sentence_transformers.SentenceTransformer | Load pretrained SentenceTransformer: /home/DB-GPT/models/BAAI/bge-large-zh-v1.5
2025-03-31 17:07:28 | ERROR | dbgpt.model.cluster.worker.manager | Error starting worker manager: model THUDM/glm-4-9b-chat-hf@hf(172.17.0.3:5670) start failed, Traceback (most recent call last):
  File "/usr/local/lib/python3.10/dist-packages/transformers/utils/hub.py", line 342, in cached_file
    resolved_file = hf_hub_download(
  File "/usr/local/lib/python3.10/dist-packages/huggingface_hub/utils/_validators.py", line 106, in _inner_fn
    validate_repo_id(arg_value)
  File "/usr/local/lib/python3.10/dist-packages/huggingface_hub/utils/_validators.py", line 154, in validate_repo_id
    raise HFValidationError(
huggingface_hub.errors.HFValidationError: Repo id must be in the form 'repo_name' or 'namespace/repo_name': '/home/DB-GPT/models/THUDM/glm-4-9b-chat-hf'. Use `repo_type` argument if needed.

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "/home/DB-GPT/packages/dbgpt-core/src/dbgpt/model/cluster/worker/manager.py", line 631, in _start_worker
    await self.run_blocking_func(
  File "/home/DB-GPT/packages/dbgpt-core/src/dbgpt/model/cluster/worker/manager.py", line 146, in run_blocking_func
    return await loop.run_in_executor(self.executor, func, *args)
  File "/usr/lib/python3.10/concurrent/futures/thread.py", line 58, in run
    result = self.fn(*self.args, **self.kwargs)
  File "/home/DB-GPT/packages/dbgpt-core/src/dbgpt/model/cluster/worker/default_worker.py", line 121, in start
    self.model, self.tokenizer = self.ml.loader_with_params(
  File "/home/DB-GPT/packages/dbgpt-core/src/dbgpt/model/adapter/loader.py", line 70, in loader_with_params
    return llm_adapter.load_from_params(model_params)
  File "/home/DB-GPT/packages/dbgpt-core/src/dbgpt/model/adapter/hf_adapter.py", line 226, in load_from_params
    return huggingface_loader(self, params)
  File "/home/DB-GPT/packages/dbgpt-core/src/dbgpt/model/adapter/loader.py", line 172, in huggingface_loader
    model, tokenizer = llm_adapter.load(model_path, kwargs)
  File "/home/DB-GPT/packages/dbgpt-core/src/dbgpt/model/adapter/hf_adapter.py", line 197, in load
    tokenizer = AutoTokenizer.from_pretrained(
  File "/usr/local/lib/python3.10/dist-packages/transformers/models/auto/tokenization_auto.py", line 881, in from_pretrained
    tokenizer_config = get_tokenizer_config(pretrained_model_name_or_path, **kwargs)
  File "/usr/local/lib/python3.10/dist-packages/transformers/models/auto/tokenization_auto.py", line 713, in get_tokenizer_config
    resolved_config_file = cached_file(
  File "/usr/local/lib/python3.10/dist-packages/transformers/utils/hub.py", line 408, in cached_file
    raise EnvironmentError(
OSError: Incorrect path_or_model_id: '/home/DB-GPT/models/THUDM/glm-4-9b-chat-hf'. Please provide either the path to a local folder or the repo_id of a model on the Hub.

;model BAAI/bge-large-zh-v1.5@hf(172.17.0.3:5670) start successfully
2025-03-31 17:07:28 | ERROR | dbgpt.model.cluster.worker.manager | Error starting worker manager: model THUDM/glm-4-9b-chat-hf@hf(172.17.0.3:5670) start failed, Traceback (most recent call last):
  File "/usr/local/lib/python3.10/dist-packages/transformers/utils/hub.py", line 342, in cached_file
    resolved_file = hf_hub_download(
  File "/usr/local/lib/python3.10/dist-packages/huggingface_hub/utils/_validators.py", line 106, in _inner_fn
    validate_repo_id(arg_value)
  File "/usr/local/lib/python3.10/dist-packages/huggingface_hub/utils/_validators.py", line 154, in validate_repo_id
    raise HFValidationError(
huggingface_hub.errors.HFValidationError: Repo id must be in the form 'repo_name' or 'namespace/repo_name': '/home/DB-GPT/models/THUDM/glm-4-9b-chat-hf'. Use `repo_type` argument if needed.

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "/home/DB-GPT/packages/dbgpt-core/src/dbgpt/model/cluster/worker/manager.py", line 631, in _start_worker
    await self.run_blocking_func(
  File "/home/DB-GPT/packages/dbgpt-core/src/dbgpt/model/cluster/worker/manager.py", line 146, in run_blocking_func
    return await loop.run_in_executor(self.executor, func, *args)
  File "/usr/lib/python3.10/concurrent/futures/thread.py", line 58, in run
    result = self.fn(*self.args, **self.kwargs)
  File "/home/DB-GPT/packages/dbgpt-core/src/dbgpt/model/cluster/worker/default_worker.py", line 121, in start
    self.model, self.tokenizer = self.ml.loader_with_params(
  File "/home/DB-GPT/packages/dbgpt-core/src/dbgpt/model/adapter/loader.py", line 70, in loader_with_params
    return llm_adapter.load_from_params(model_params)
  File "/home/DB-GPT/packages/dbgpt-core/src/dbgpt/model/adapter/hf_adapter.py", line 226, in load_from_params
    return huggingface_loader(self, params)
  File "/home/DB-GPT/packages/dbgpt-core/src/dbgpt/model/adapter/loader.py", line 172, in huggingface_loader
    model, tokenizer = llm_adapter.load(model_path, kwargs)
  File "/home/DB-GPT/packages/dbgpt-core/src/dbgpt/model/adapter/hf_adapter.py", line 197, in load
    tokenizer = AutoTokenizer.from_pretrained(
  File "/usr/local/lib/python3.10/dist-packages/transformers/models/auto/tokenization_auto.py", line 881, in from_pretrained
    tokenizer_config = get_tokenizer_config(pretrained_model_name_or_path, **kwargs)
  File "/usr/local/lib/python3.10/dist-packages/transformers/models/auto/tokenization_auto.py", line 713, in get_tokenizer_config
    resolved_config_file = cached_file(
  File "/usr/local/lib/python3.10/dist-packages/transformers/utils/hub.py", line 408, in cached_file
    raise EnvironmentError(
OSError: Incorrect path_or_model_id: '/home/DB-GPT/models/THUDM/glm-4-9b-chat-hf'. Please provide either the path to a local folder or the repo_id of a model on the Hub.

;model BAAI/bge-large-zh-v1.5@hf(172.17.0.3:5670) start successfully
2025-03-31 17:07:28 | INFO | dbgpt.model.cluster.worker.manager | Stop all workers
2025-03-31 17:07:28 | INFO | dbgpt.model.cluster.worker.manager | Stop all workers
2025-03-31 17:07:28 | INFO | dbgpt.model.cluster.worker.manager | Apply req: None, apply_func: <function LocalWorkerManager._stop_all_worker.<locals>._stop_worker at 0x7fd7b29d3520>
2025-03-31 17:07:28 | INFO | dbgpt.model.cluster.worker.manager | Apply req: None, apply_func: <function LocalWorkerManager._stop_all_worker.<locals>._stop_worker at 0x7fd7b29d3520>
2025-03-31 17:07:28 | INFO | dbgpt.model.cluster.worker.manager | Apply to all workers
2025-03-31 17:07:28 | INFO | dbgpt.model.cluster.worker.manager | Apply to all workers
2025-03-31 17:07:28 | WARNING | dbgpt.model.cluster.worker.default_worker | Model has been stopped!!
2025-03-31 17:07:28 | WARNING | dbgpt.model.cluster.worker.default_worker | Model has been stopped!!
2025-03-31 17:07:29 | WARNING | dbgpt.model.cluster.worker.manager | Stop worker, ignored exception from deregister_func: All connection attempts failed
2025-03-31 17:07:29 | WARNING | dbgpt.model.cluster.worker.manager | Stop worker, ignored exception from deregister_func: All connection attempts failed
2025-03-31 17:07:29 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:0
2025-03-31 17:07:29 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:0
2025-03-31 17:07:29 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:1
2025-03-31 17:07:29 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:1
2025-03-31 17:07:29 | WARNING | dbgpt.model.cluster.worker.manager | Stop worker, ignored exception from deregister_func: All connection attempts failed
2025-03-31 17:07:29 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:2
2025-03-31 17:07:29 | WARNING | dbgpt.model.cluster.worker.manager | Stop worker, ignored exception from deregister_func: All connection attempts failed
2025-03-31 17:07:29 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:2
2025-03-31 17:07:29 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:3
2025-03-31 17:07:29 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:3
2025-03-31 17:07:29 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:4
2025-03-31 17:07:29 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:4
2025-03-31 17:07:29 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:5
2025-03-31 17:07:29 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:5
2025-03-31 17:07:29 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:6
2025-03-31 17:07:29 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:6
2025-03-31 17:07:29 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:7
2025-03-31 17:07:29 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:7
2025-03-31 17:07:29 | WARNING | dbgpt.model.cluster.worker.manager | Stop worker, ignored exception from deregister_func: All connection attempts failed
2025-03-31 17:07:29 | WARNING | dbgpt.model.cluster.worker.manager | Stop worker, ignored exception from deregister_func: All connection attempts failed
2025-03-31 17:08:43 | INFO | dbgpt.component | Register component with name dbgpt_unified_metadata_db_manager_factory and instance: <dbgpt.storage.metadata.db_factory.UnifiedDBManagerFactory object at 0x7fafc5e68d30>
2025-03-31 17:08:43 | INFO | dbgpt.component | Register component with name dbgpt_unified_metadata_db_manager_factory and instance: <dbgpt.storage.metadata.db_factory.UnifiedDBManagerFactory object at 0x7fafc5e68d30>
2025-03-31 17:08:43 | INFO | dbgpt.datasource.rdbms.base | Closing RDBMS connector resources...
2025-03-31 17:08:43 | INFO | dbgpt.datasource.rdbms.base | Closing RDBMS connector resources...
2025-03-31 17:08:46 | INFO | dbgpt.component | Register component with name dbgpt_thread_pool_default and instance: <dbgpt.util.executor_utils.DefaultExecutorFactory object at 0x7fafc2ebfdf0>
2025-03-31 17:08:46 | INFO | dbgpt.component | Register component with name dbgpt_thread_pool_default and instance: <dbgpt.util.executor_utils.DefaultExecutorFactory object at 0x7fafc2ebfdf0>
2025-03-31 17:08:46 | INFO | dbgpt.component | Register component with name dbgpt_default_scheduler and instance: <dbgpt_app.initialization.scheduler.DefaultScheduler object at 0x7fafc2ebf430>
2025-03-31 17:08:46 | INFO | dbgpt.component | Register component with name dbgpt_default_scheduler and instance: <dbgpt_app.initialization.scheduler.DefaultScheduler object at 0x7fafc2ebf430>
2025-03-31 17:08:46 | INFO | dbgpt.component | Register component with name dbgpt_model_controller and instance: <dbgpt.model.cluster.controller.controller.ModelControllerAdapter object at 0x7fb9b764e260>
2025-03-31 17:08:46 | INFO | dbgpt.component | Register component with name dbgpt_model_controller and instance: <dbgpt.model.cluster.controller.controller.ModelControllerAdapter object at 0x7fb9b764e260>
2025-03-31 17:08:46 | INFO | dbgpt.component | Register component with name dbgpt_connector_manager and instance: <dbgpt_serve.datasource.manages.connector_manager.ConnectorManager object at 0x7fafc2ebf2b0>
2025-03-31 17:08:46 | INFO | dbgpt.component | Register component with name dbgpt_connector_manager and instance: <dbgpt_serve.datasource.manages.connector_manager.ConnectorManager object at 0x7fafc2ebf2b0>
2025-03-31 17:08:46 | INFO | dbgpt.component | Register component with name dbgpt_rag_storage_manager and instance: <dbgpt_serve.rag.storage_manager.StorageManager object at 0x7fafc2ebf370>
2025-03-31 17:08:46 | INFO | dbgpt.component | Register component with name dbgpt_rag_storage_manager and instance: <dbgpt_serve.rag.storage_manager.StorageManager object at 0x7fafc2ebf370>
2025-03-31 17:08:46 | INFO | dbgpt.component | Register component with name dbgpt_plugin_hub and instance: <dbgpt_serve.agent.hub.controller.ModulePlugin object at 0x7fafc2934d00>
2025-03-31 17:08:46 | INFO | dbgpt.component | Register component with name dbgpt_plugin_hub and instance: <dbgpt_serve.agent.hub.controller.ModulePlugin object at 0x7fafc2934d00>
2025-03-31 17:08:46 | INFO | dbgpt.component | Register component with name dbgpt_multi_agents and instance: <dbgpt_serve.agent.agents.controller.MultiAgents object at 0x7fafc46e7730>
2025-03-31 17:08:46 | INFO | dbgpt.component | Register component with name dbgpt_multi_agents and instance: <dbgpt_serve.agent.agents.controller.MultiAgents object at 0x7fafc46e7730>
2025-03-31 17:08:46 | INFO | dbgpt_app.initialization.embedding_component | Register remote RemoteEmbeddingFactory
2025-03-31 17:08:46 | INFO | dbgpt.component | Register component with name embedding_factory and instance: <dbgpt_app.initialization.embedding_component.RemoteEmbeddingFactory object at 0x7fafc29a0130>
2025-03-31 17:08:46 | INFO | dbgpt.component | Register component with name embedding_factory and instance: <dbgpt_app.initialization.embedding_component.RemoteEmbeddingFactory object at 0x7fafc29a0130>
2025-03-31 17:08:46 | INFO | dbgpt.component | Register component with name dbgpt_model_cache_manager and instance: <dbgpt.storage.cache.manager.LocalCacheManager object at 0x7fafc29a0220>
2025-03-31 17:08:46 | INFO | dbgpt.component | Register component with name dbgpt_model_cache_manager and instance: <dbgpt.storage.cache.manager.LocalCacheManager object at 0x7fafc29a0220>
2025-03-31 17:08:46 | INFO | dbgpt.component | Register component with name dbgpt_awel_trigger_manager and instance: <dbgpt.core.awel.trigger.trigger_manager.DefaultTriggerManager object at 0x7fafc2977e50>
2025-03-31 17:08:46 | INFO | dbgpt.component | Register component with name dbgpt_awel_trigger_manager and instance: <dbgpt.core.awel.trigger.trigger_manager.DefaultTriggerManager object at 0x7fafc2977e50>
2025-03-31 17:08:46 | INFO | dbgpt.component | Register component with name dbgpt_awel_dag_manager and instance: <dbgpt.core.awel.dag.dag_manager.DAGManager object at 0x7fafc2977ca0>
2025-03-31 17:08:46 | INFO | dbgpt.component | Register component with name dbgpt_awel_dag_manager and instance: <dbgpt.core.awel.dag.dag_manager.DAGManager object at 0x7fafc2977ca0>
2025-03-31 17:08:46 | INFO | dbgpt.component | Register component with name dbgpt_resource_manager and instance: <dbgpt.agent.resource.manage.ResourceManager object at 0x7fafc2977b50>
2025-03-31 17:08:46 | INFO | dbgpt.component | Register component with name dbgpt_resource_manager and instance: <dbgpt.agent.resource.manage.ResourceManager object at 0x7fafc2977b50>
2025-03-31 17:08:46 | INFO | dbgpt.component | Register component with name dbgpt_agent_manager and instance: <dbgpt.agent.core.agent_manage.AgentManager object at 0x7fafc29d8070>
2025-03-31 17:08:46 | INFO | dbgpt.component | Register component with name dbgpt_agent_manager and instance: <dbgpt.agent.core.agent_manage.AgentManager object at 0x7fafc29d8070>
2025-03-31 17:08:46 | INFO | dbgpt.component | Register component with name dbgpt_app_editor_service and instance: <dbgpt_app.openapi.api_v1.editor.service.EditorService object at 0x7fafc29d9ed0>
2025-03-31 17:08:46 | INFO | dbgpt.component | Register component with name dbgpt_app_editor_service and instance: <dbgpt_app.openapi.api_v1.editor.service.EditorService object at 0x7fafc29d9ed0>
2025-03-31 17:08:46 | INFO | dbgpt.component | Register component with name dbgpt_serve_prompt and instance: <dbgpt_serve.prompt.serve.Serve object at 0x7fafc29da0b0>
2025-03-31 17:08:46 | INFO | dbgpt.component | Register component with name dbgpt_serve_prompt and instance: <dbgpt_serve.prompt.serve.Serve object at 0x7fafc29da0b0>
2025-03-31 17:08:46 | INFO | dbgpt.component | Register component with name dbgpt_serve_prompt_service and instance: <dbgpt_serve.prompt.service.service.Service object at 0x7fafc2815f60>
2025-03-31 17:08:46 | INFO | dbgpt.component | Register component with name dbgpt_serve_prompt_service and instance: <dbgpt_serve.prompt.service.service.Service object at 0x7fafc2815f60>
2025-03-31 17:08:46 | INFO | dbgpt.component | Register component with name dbgpt_serve_conversation and instance: <dbgpt_serve.conversation.serve.Serve object at 0x7fafc2815fc0>
2025-03-31 17:08:46 | INFO | dbgpt.component | Register component with name dbgpt_serve_conversation and instance: <dbgpt_serve.conversation.serve.Serve object at 0x7fafc2815fc0>
2025-03-31 17:08:46 | INFO | dbgpt.component | Register component with name dbgpt_serve_conversation_service and instance: <dbgpt_serve.conversation.service.service.Service object at 0x7fafc288c100>
2025-03-31 17:08:46 | INFO | dbgpt.component | Register component with name dbgpt_serve_conversation_service and instance: <dbgpt_serve.conversation.service.service.Service object at 0x7fafc288c100>
2025-03-31 17:08:46 | INFO | dbgpt.component | Register component with name dbgpt_variables_provider and instance: <dbgpt.core.interface.variables.StorageVariablesProvider object at 0x7fafc286bcd0>
2025-03-31 17:08:46 | INFO | dbgpt.component | Register component with name dbgpt_variables_provider and instance: <dbgpt.core.interface.variables.StorageVariablesProvider object at 0x7fafc286bcd0>
2025-03-31 17:08:46 | INFO | dbgpt.component | Register component with name dbgpt_serve_flow and instance: <dbgpt_serve.flow.serve.Serve object at 0x7fafc288c220>
2025-03-31 17:08:46 | INFO | dbgpt.component | Register component with name dbgpt_serve_flow and instance: <dbgpt_serve.flow.serve.Serve object at 0x7fafc288c220>
2025-03-31 17:08:47 | INFO | dbgpt.component | Register component with name dbgpt_dbgpts_loader and instance: <dbgpt.util.dbgpts.loader.DBGPTsLoader object at 0x7fafc1cc2560>
2025-03-31 17:08:47 | INFO | dbgpt.component | Register component with name dbgpt_dbgpts_loader and instance: <dbgpt.util.dbgpts.loader.DBGPTsLoader object at 0x7fafc1cc2560>
2025-03-31 17:08:47 | INFO | dbgpt.component | Register component with name dbgpt_serve_flow_service and instance: <dbgpt_serve.flow.service.service.Service object at 0x7fafc286b730>
2025-03-31 17:08:47 | INFO | dbgpt.component | Register component with name dbgpt_serve_flow_service and instance: <dbgpt_serve.flow.service.service.Service object at 0x7fafc286b730>
2025-03-31 17:08:47 | INFO | dbgpt.component | Register component with name dbgpt_serve_flow_variables_service and instance: <dbgpt_serve.flow.service.variables_service.VariablesService object at 0x7fafc1cc2500>
2025-03-31 17:08:47 | INFO | dbgpt.component | Register component with name dbgpt_serve_flow_variables_service and instance: <dbgpt_serve.flow.service.variables_service.VariablesService object at 0x7fafc1cc2500>
2025-03-31 17:08:47 | INFO | dbgpt.component | Register component with name dbgpt.core.flow.flows and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinFlowVariablesProvider object at 0x7fafc1cc26b0>
2025-03-31 17:08:47 | INFO | dbgpt.component | Register component with name dbgpt.core.flow.flows and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinFlowVariablesProvider object at 0x7fafc1cc26b0>
2025-03-31 17:08:47 | INFO | dbgpt.component | Register component with name dbgpt.core.flow.nodes and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinNodeVariablesProvider object at 0x7fafc1cc2440>
2025-03-31 17:08:47 | INFO | dbgpt.component | Register component with name dbgpt.core.flow.nodes and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinNodeVariablesProvider object at 0x7fafc1cc2440>
2025-03-31 17:08:47 | INFO | dbgpt.component | Register component with name dbgpt.core.variables and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinAllVariablesProvider object at 0x7fafc1cc2620>
2025-03-31 17:08:47 | INFO | dbgpt.component | Register component with name dbgpt.core.variables and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinAllVariablesProvider object at 0x7fafc1cc2620>
2025-03-31 17:08:47 | INFO | dbgpt.component | Register component with name dbgpt.core.secrets and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinAllSecretVariablesProvider object at 0x7fafc1cc2380>
2025-03-31 17:08:47 | INFO | dbgpt.component | Register component with name dbgpt.core.secrets and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinAllSecretVariablesProvider object at 0x7fafc1cc2380>
2025-03-31 17:08:47 | INFO | dbgpt.component | Register component with name dbgpt.core.model.llms and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinLLMVariablesProvider object at 0x7fafc1cc22f0>
2025-03-31 17:08:47 | INFO | dbgpt.component | Register component with name dbgpt.core.model.llms and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinLLMVariablesProvider object at 0x7fafc1cc22f0>
2025-03-31 17:08:47 | INFO | dbgpt.component | Register component with name dbgpt.core.model.embeddings and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinEmbeddingsVariablesProvider object at 0x7fafc1cc22c0>
2025-03-31 17:08:47 | INFO | dbgpt.component | Register component with name dbgpt.core.model.embeddings and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinEmbeddingsVariablesProvider object at 0x7fafc1cc22c0>
2025-03-31 17:08:47 | INFO | dbgpt.component | Register component with name dbgpt.core.datasources and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinDatasourceVariablesProvider object at 0x7fafc1cc2140>
2025-03-31 17:08:47 | INFO | dbgpt.component | Register component with name dbgpt.core.datasources and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinDatasourceVariablesProvider object at 0x7fafc1cc2140>
2025-03-31 17:08:47 | INFO | dbgpt.component | Register component with name dbgpt.core.agent.agents and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinAgentsVariablesProvider object at 0x7fafc1cc2200>
2025-03-31 17:08:47 | INFO | dbgpt.component | Register component with name dbgpt.core.agent.agents and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinAgentsVariablesProvider object at 0x7fafc1cc2200>
2025-03-31 17:08:47 | INFO | dbgpt.component | Register component with name dbgpt.core.knowledge_spaces and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinKnowledgeSpacesVariablesProvider object at 0x7fafc1cc2020>
2025-03-31 17:08:47 | INFO | dbgpt.component | Register component with name dbgpt.core.knowledge_spaces and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinKnowledgeSpacesVariablesProvider object at 0x7fafc1cc2020>
2025-03-31 17:08:47 | INFO | dbgpt.component | Register component with name dbgpt_rag and instance: <dbgpt_serve.rag.serve.Serve object at 0x7fafc1cc2110>
2025-03-31 17:08:47 | INFO | dbgpt.component | Register component with name dbgpt_rag and instance: <dbgpt_serve.rag.serve.Serve object at 0x7fafc1cc2110>
2025-03-31 17:08:47 | INFO | dbgpt.component | Register component with name dbgpt_rag_service and instance: <dbgpt_serve.rag.service.service.Service object at 0x7fafc161a950>
2025-03-31 17:08:47 | INFO | dbgpt.component | Register component with name dbgpt_rag_service and instance: <dbgpt_serve.rag.service.service.Service object at 0x7fafc161a950>
2025-03-31 17:08:47 | INFO | dbgpt.component | Register component with name dbgpt_datasource and instance: <dbgpt_serve.datasource.serve.Serve object at 0x7fafc161acb0>
2025-03-31 17:08:47 | INFO | dbgpt.component | Register component with name dbgpt_datasource and instance: <dbgpt_serve.datasource.serve.Serve object at 0x7fafc161acb0>
2025-03-31 17:08:47 | INFO | dbgpt.component | Register component with name dbgpt_datasource_service and instance: <dbgpt_serve.datasource.service.service.Service object at 0x7fafc16aca90>
2025-03-31 17:08:47 | INFO | dbgpt.component | Register component with name dbgpt_datasource_service and instance: <dbgpt_serve.datasource.service.service.Service object at 0x7fafc16aca90>
2025-03-31 17:08:47 | INFO | dbgpt.component | Register component with name dbgpt_serve_feedback and instance: <dbgpt_serve.feedback.serve.Serve object at 0x7fafc16acbb0>
2025-03-31 17:08:47 | INFO | dbgpt.component | Register component with name dbgpt_serve_feedback and instance: <dbgpt_serve.feedback.serve.Serve object at 0x7fafc16acbb0>
2025-03-31 17:08:47 | INFO | dbgpt.component | Register component with name dbgpt_serve_feedback_service and instance: <dbgpt_serve.feedback.service.service.Service object at 0x7fafc16af850>
2025-03-31 17:08:47 | INFO | dbgpt.component | Register component with name dbgpt_serve_feedback_service and instance: <dbgpt_serve.feedback.service.service.Service object at 0x7fafc16af850>
2025-03-31 17:08:47 | INFO | dbgpt.component | Register component with name dbgpt_serve_dbgpts_hub and instance: <dbgpt_serve.dbgpts.hub.serve.Serve object at 0x7fafc16af8b0>
2025-03-31 17:08:47 | INFO | dbgpt.component | Register component with name dbgpt_serve_dbgpts_hub and instance: <dbgpt_serve.dbgpts.hub.serve.Serve object at 0x7fafc16af8b0>
2025-03-31 17:08:47 | INFO | dbgpt.component | Register component with name dbgpt_serve_dbgpts_hub_service and instance: <dbgpt_serve.dbgpts.hub.service.service.Service object at 0x7fafc1186350>
2025-03-31 17:08:47 | INFO | dbgpt.component | Register component with name dbgpt_serve_dbgpts_hub_service and instance: <dbgpt_serve.dbgpts.hub.service.service.Service object at 0x7fafc1186350>
2025-03-31 17:08:47 | INFO | dbgpt.component | Register component with name dbgpt_serve_dbgpts_my and instance: <dbgpt_serve.dbgpts.my.serve.Serve object at 0x7fafc1185de0>
2025-03-31 17:08:47 | INFO | dbgpt.component | Register component with name dbgpt_serve_dbgpts_my and instance: <dbgpt_serve.dbgpts.my.serve.Serve object at 0x7fafc1185de0>
2025-03-31 17:08:47 | INFO | dbgpt.component | Register component with name dbgpt_serve_dbgpts_my_service and instance: <dbgpt_serve.dbgpts.my.service.service.Service object at 0x7fafc1018760>
2025-03-31 17:08:47 | INFO | dbgpt.component | Register component with name dbgpt_serve_dbgpts_my_service and instance: <dbgpt_serve.dbgpts.my.service.service.Service object at 0x7fafc1018760>
2025-03-31 17:08:47 | INFO | dbgpt.component | Register component with name dbgpt_serve_file and instance: <dbgpt_serve.file.serve.Serve object at 0x7fafc1019a20>
2025-03-31 17:08:47 | INFO | dbgpt.component | Register component with name dbgpt_serve_file and instance: <dbgpt_serve.file.serve.Serve object at 0x7fafc1019a20>
2025-03-31 17:08:47 | INFO | dbgpt.component | Register component with name dbgpt_serve_file_service and instance: <dbgpt_serve.file.service.service.Service object at 0x7fafc10c88b0>
2025-03-31 17:08:47 | INFO | dbgpt.component | Register component with name dbgpt_serve_file_service and instance: <dbgpt_serve.file.service.service.Service object at 0x7fafc10c88b0>
2025-03-31 17:08:48 | INFO | dbgpt.component | Register component with name dbgpt_serve_evaluate and instance: <dbgpt_serve.evaluate.serve.Serve object at 0x7fafc10c8fd0>
2025-03-31 17:08:48 | INFO | dbgpt.component | Register component with name dbgpt_serve_evaluate and instance: <dbgpt_serve.evaluate.serve.Serve object at 0x7fafc10c8fd0>
2025-03-31 17:08:48 | INFO | dbgpt.component | Register component with name dbgpt_serve_evaluate_service and instance: <dbgpt_serve.evaluate.service.service.Service object at 0x7fafc10c8160>
2025-03-31 17:08:48 | INFO | dbgpt.component | Register component with name dbgpt_serve_evaluate_service and instance: <dbgpt_serve.evaluate.service.service.Service object at 0x7fafc10c8160>
2025-03-31 17:08:48 | INFO | dbgpt.component | Register component with name dbgpt_serve_libro and instance: <dbgpt_serve.libro.serve.Serve object at 0x7fafc0b8c610>
2025-03-31 17:08:48 | INFO | dbgpt.component | Register component with name dbgpt_serve_libro and instance: <dbgpt_serve.libro.serve.Serve object at 0x7fafc0b8c610>
2025-03-31 17:08:48 | INFO | dbgpt.component | Register component with name dbgpt_serve_libro_service and instance: <dbgpt_serve.libro.service.service.Service object at 0x7fafc0be9f90>
2025-03-31 17:08:48 | INFO | dbgpt.component | Register component with name dbgpt_serve_libro_service and instance: <dbgpt_serve.libro.service.service.Service object at 0x7fafc0be9f90>
2025-03-31 17:08:48 | INFO | dbgpt.component | Register component with name dbgpt_serve_model and instance: <dbgpt_serve.model.serve.Serve object at 0x7fafc0bea0b0>
2025-03-31 17:08:48 | INFO | dbgpt.component | Register component with name dbgpt_serve_model and instance: <dbgpt_serve.model.serve.Serve object at 0x7fafc0bea0b0>
2025-03-31 17:08:48 | INFO | dbgpt.component | Register component with name dbgpt_serve_model_service and instance: <dbgpt_serve.model.service.service.Service object at 0x7fafc0bea2f0>
2025-03-31 17:08:48 | INFO | dbgpt.component | Register component with name dbgpt_serve_model_service and instance: <dbgpt_serve.model.service.service.Service object at 0x7fafc0bea2f0>
2025-03-31 17:08:48 | INFO | dbgpt.component | Register component with name base_dbgpt_component and instance: <dbgpt.util.code.server.CodeServer object at 0x7fafc0a43af0>
2025-03-31 17:08:48 | INFO | dbgpt.component | Register component with name base_dbgpt_component and instance: <dbgpt.util.code.server.CodeServer object at 0x7fafc0a43af0>
2025-03-31 17:08:49 | WARNING | dbgpt.util._db_migration_utils | Initialize and upgrade database metadata with alembic, just run this in your development environment, if you deploy this in production environment, please run webserver with --disable_alembic_upgrade(`python dbgpt/app/dbgpt_server.py --disable_alembic_upgrade`).
we suggest you to use `dbgpt db migration` to initialize and upgrade database metadata with alembic, your can run `dbgpt db migration --help` to get more information.
2025-03-31 17:08:49 | INFO | alembic.runtime.migration | Context impl SQLiteImpl.
2025-03-31 17:08:49 | INFO | alembic.runtime.migration | Will assume non-transactional DDL.
2025-03-31 17:08:49 | INFO | dbgpt.util._db_migration_utils | Migration versions and their file paths:
========================================Migration versions========================================

77cb31a83832 (current): New migration (Path: /home/DB-GPT/pilot/meta_data/alembic/versions/77cb31a83832_new_migration.py)
==========================================================================================
2025-03-31 17:08:49 | INFO | alembic.runtime.migration | Context impl SQLiteImpl.
2025-03-31 17:08:49 | INFO | alembic.runtime.migration | Will assume non-transactional DDL.
2025-03-31 17:08:49 | INFO | alembic.runtime.migration | Context impl SQLiteImpl.
2025-03-31 17:08:49 | INFO | alembic.runtime.migration | Will assume non-transactional DDL.
2025-03-31 17:08:49 | INFO | dbgpt.util._db_migration_utils | alembic migration current revision: 77cb31a83832, latest revision: 77cb31a83832
2025-03-31 17:08:49 | INFO | alembic.runtime.migration | Context impl SQLiteImpl.
2025-03-31 17:08:49 | INFO | alembic.runtime.migration | Will assume non-transactional DDL.
2025-03-31 17:08:51 | INFO | alembic.runtime.migration | Context impl SQLiteImpl.
2025-03-31 17:08:51 | INFO | alembic.runtime.migration | Will assume non-transactional DDL.
2025-03-31 17:08:52 | INFO | alembic.runtime.migration | Running upgrade 77cb31a83832 -> c91048d5a6b5, New migration
2025-03-31 17:08:52 | INFO | dbgpt.component | Register component with name dbgpt_file_storage_client and instance: <dbgpt.core.interface.file.FileStorageClient object at 0x7fafbf367820>
2025-03-31 17:08:52 | INFO | dbgpt.component | Register component with name dbgpt_file_storage_client and instance: <dbgpt.core.interface.file.FileStorageClient object at 0x7fafbf367820>
2025-03-31 17:08:52 | INFO | dbgpt_app.dbgpt_server | Model Unified Deployment Mode, run all services in the same process
2025-03-31 17:08:52 | INFO | dbgpt_app.dbgpt_server | Model Unified Deployment Mode, run all services in the same process
2025-03-31 17:08:52 | INFO | dbgpt.model.cluster.worker.manager | Register WorkerManager dbgpt_worker_manager_factory
2025-03-31 17:08:52 | INFO | dbgpt.model.cluster.worker.manager | Register WorkerManager dbgpt_worker_manager_factory
2025-03-31 17:08:52 | INFO | dbgpt.component | Register component with name dbgpt_worker_manager_factory and instance: <dbgpt.model.cluster.worker.manager._DefaultWorkerManagerFactory object at 0x7fafbf20fcd0>
2025-03-31 17:08:52 | INFO | dbgpt.component | Register component with name dbgpt_worker_manager_factory and instance: <dbgpt.model.cluster.worker.manager._DefaultWorkerManagerFactory object at 0x7fafbf20fcd0>
2025-03-31 17:08:52 | INFO | dbgpt.model.cluster.worker.manager | Worker params: 

=========================== ModelWorkerParameters ===========================

host: 0.0.0.0
port: 5670
daemon: False
log: 

=========================== LoggingParameters ===========================

level: INFO
file: None

======================================================================


trace: None
worker_type: None
worker_class: None
standalone: True
register: True
worker_register_host: None
controller_addr: None
send_heartbeat: True
heartbeat_interval: 20

======================================================================


2025-03-31 17:08:52 | INFO | dbgpt.model.cluster.worker.manager | Worker params: 

=========================== ModelWorkerParameters ===========================

host: 0.0.0.0
port: 5670
daemon: False
log: 

=========================== LoggingParameters ===========================

level: INFO
file: None

======================================================================


trace: None
worker_type: None
worker_class: None
standalone: True
register: True
worker_register_host: None
controller_addr: None
send_heartbeat: True
heartbeat_interval: 20

======================================================================


2025-03-31 17:08:52 | INFO | dbgpt.model.cluster.worker.manager | Run WorkerManager with standalone mode, controller_addr: http://127.0.0.1:5670
2025-03-31 17:08:52 | INFO | dbgpt.model.cluster.worker.manager | Run WorkerManager with standalone mode, controller_addr: http://127.0.0.1:5670
2025-03-31 17:08:52 | INFO | dbgpt.model.adapter.model_adapter | Current model THUDM/glm-4-9b-chat use new adapter <GLM4Adapter model_name=THUDM/glm-4-9b-chat model_path=/home/DB-GPT/models/THUDM/glm-4-9b-chat>
2025-03-31 17:08:52 | INFO | dbgpt.model.adapter.model_adapter | Current model THUDM/glm-4-9b-chat use new adapter <GLM4Adapter model_name=THUDM/glm-4-9b-chat model_path=/home/DB-GPT/models/THUDM/glm-4-9b-chat>
2025-03-31 17:08:52 | WARNING | dbgpt.util.api_utils | Health check failed for http://127.0.0.1:5670, error: HTTPConnectionPool(host='127.0.0.1', port=5670): Max retries exceeded with url: /api/health (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7fafbf285390>: Failed to establish a new connection: [Errno 111] Connection refused'))
2025-03-31 17:08:52 | INFO | dbgpt.model.cluster.worker.default_worker | model_name: THUDM/glm-4-9b-chat, model_path: /home/DB-GPT/models/THUDM/glm-4-9b-chat, model_param_class: <class 'dbgpt.model.adapter.hf_adapter.HFLLMDeployModelParameters'>
2025-03-31 17:08:52 | WARNING | dbgpt.util.api_utils | Health check failed for http://127.0.0.1:5670, error: HTTPConnectionPool(host='127.0.0.1', port=5670): Max retries exceeded with url: /api/health (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7fafbf285390>: Failed to establish a new connection: [Errno 111] Connection refused'))
2025-03-31 17:08:52 | INFO | dbgpt.model.cluster.worker.default_worker | model_name: THUDM/glm-4-9b-chat, model_path: /home/DB-GPT/models/THUDM/glm-4-9b-chat, model_param_class: <class 'dbgpt.model.adapter.hf_adapter.HFLLMDeployModelParameters'>
2025-03-31 17:08:52 | INFO | dbgpt.model.cluster.worker.manager | Init empty instances list for THUDM/glm-4-9b-chat@llm
2025-03-31 17:08:52 | INFO | dbgpt.model.cluster.worker.manager | Init empty instances list for THUDM/glm-4-9b-chat@llm
2025-03-31 17:08:52 | INFO | dbgpt.model.cluster.worker.manager | Start local embedding worker with embedding parameters


=========================== ModelWorkerParameters ===========================

host: 0.0.0.0
port: 8001
daemon: False
log: 

=========================== LoggingParameters ===========================

level: ${env:DBGPT_LOG_LEVEL:-INFO}
file: None

======================================================================


trace: None
worker_type: text2vec
worker_class: None
standalone: False
register: True
worker_register_host: None
controller_addr: None
send_heartbeat: True
heartbeat_interval: 20

======================================================================


2025-03-31 17:08:52 | INFO | dbgpt.model.cluster.worker.manager | Start local embedding worker with embedding parameters


=========================== ModelWorkerParameters ===========================

host: 0.0.0.0
port: 8001
daemon: False
log: 

=========================== LoggingParameters ===========================

level: ${env:DBGPT_LOG_LEVEL:-INFO}
file: None

======================================================================


trace: None
worker_type: text2vec
worker_class: None
standalone: False
register: True
worker_register_host: None
controller_addr: None
send_heartbeat: True
heartbeat_interval: 20

======================================================================


2025-03-31 17:08:52 | INFO | dbgpt.model.cluster.worker.manager | Init empty instances list for BAAI/bge-large-zh-v1.5@text2vec
2025-03-31 17:08:52 | INFO | dbgpt.model.cluster.worker.manager | Init empty instances list for BAAI/bge-large-zh-v1.5@text2vec
2025-03-31 17:08:52 | INFO | dbgpt.util.dbgpts.loader | Found 0 dbgpts packages from /root/.dbgpts/packages/13f94a500b3b8b8477e6f87356068c15
2025-03-31 17:08:52 | INFO | dbgpt_serve.flow.service.compat_service | Found compat file: 0.7.0, use latest: 0.7.0
2025-03-31 17:08:54 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/awel_flow_ui_components.py
2025-03-31 17:08:54 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/awel_flow_ui_components.py
2025-03-31 17:08:54 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/awel_flow_ui_components.py
2025-03-31 17:08:54 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_chat_dag_example.py
2025-03-31 17:08:54 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_chat_dag_example.py
2025-03-31 17:08:54 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_chat_dag_example.py
2025-03-31 17:08:54 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_dag_example) from mod <module 'unusual_prefix_7f93a289b452e786f74233daa5a969e1fd501b71_simple_chat_dag_example' from '/home/DB-GPT/examples/awel/simple_chat_dag_example.py'> and model file /home/DB-GPT/examples/awel/simple_chat_dag_example.py
2025-03-31 17:08:54 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_dag_example) from mod <module 'unusual_prefix_7f93a289b452e786f74233daa5a969e1fd501b71_simple_chat_dag_example' from '/home/DB-GPT/examples/awel/simple_chat_dag_example.py'> and model file /home/DB-GPT/examples/awel/simple_chat_dag_example.py
2025-03-31 17:08:54 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_dag_example) from mod <module 'unusual_prefix_7f93a289b452e786f74233daa5a969e1fd501b71_simple_chat_dag_example' from '/home/DB-GPT/examples/awel/simple_chat_dag_example.py'> and model file /home/DB-GPT/examples/awel/simple_chat_dag_example.py
2025-03-31 17:08:54 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_chat_history_example.py
2025-03-31 17:08:54 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_chat_history_example.py
2025-03-31 17:08:54 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_chat_history_example.py
2025-03-31 17:08:54 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_chat_history) from mod <module 'unusual_prefix_bac1fcf83805e9d79523500ef9de83e5115f69a1_simple_chat_history_example' from '/home/DB-GPT/examples/awel/simple_chat_history_example.py'> and model file /home/DB-GPT/examples/awel/simple_chat_history_example.py
2025-03-31 17:08:54 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_chat_history) from mod <module 'unusual_prefix_bac1fcf83805e9d79523500ef9de83e5115f69a1_simple_chat_history_example' from '/home/DB-GPT/examples/awel/simple_chat_history_example.py'> and model file /home/DB-GPT/examples/awel/simple_chat_history_example.py
2025-03-31 17:08:54 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_chat_history) from mod <module 'unusual_prefix_bac1fcf83805e9d79523500ef9de83e5115f69a1_simple_chat_history_example' from '/home/DB-GPT/examples/awel/simple_chat_history_example.py'> and model file /home/DB-GPT/examples/awel/simple_chat_history_example.py
2025-03-31 17:08:54 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_dag_example.py
2025-03-31 17:08:54 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_dag_example.py
2025-03-31 17:08:54 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_dag_example.py
2025-03-31 17:08:54 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=simple_dag_example) from mod <module 'unusual_prefix_fd02d664f9a189c3be5c5599808ca1d1153a6edf_simple_dag_example' from '/home/DB-GPT/examples/awel/simple_dag_example.py'> and model file /home/DB-GPT/examples/awel/simple_dag_example.py
2025-03-31 17:08:54 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=simple_dag_example) from mod <module 'unusual_prefix_fd02d664f9a189c3be5c5599808ca1d1153a6edf_simple_dag_example' from '/home/DB-GPT/examples/awel/simple_dag_example.py'> and model file /home/DB-GPT/examples/awel/simple_dag_example.py
2025-03-31 17:08:54 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=simple_dag_example) from mod <module 'unusual_prefix_fd02d664f9a189c3be5c5599808ca1d1153a6edf_simple_dag_example' from '/home/DB-GPT/examples/awel/simple_dag_example.py'> and model file /home/DB-GPT/examples/awel/simple_dag_example.py
2025-03-31 17:08:54 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/data_analyst_assistant.py
2025-03-31 17:08:54 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/data_analyst_assistant.py
2025-03-31 17:08:54 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/data_analyst_assistant.py
2025-03-31 17:08:54 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_data_analyst_assistant) from mod <module 'unusual_prefix_26267e42ed6b36891895191fc865906fc5c9903c_data_analyst_assistant' from '/home/DB-GPT/examples/awel/data_analyst_assistant.py'> and model file /home/DB-GPT/examples/awel/data_analyst_assistant.py
2025-03-31 17:08:54 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_data_analyst_assistant) from mod <module 'unusual_prefix_26267e42ed6b36891895191fc865906fc5c9903c_data_analyst_assistant' from '/home/DB-GPT/examples/awel/data_analyst_assistant.py'> and model file /home/DB-GPT/examples/awel/data_analyst_assistant.py
2025-03-31 17:08:54 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_data_analyst_assistant) from mod <module 'unusual_prefix_26267e42ed6b36891895191fc865906fc5c9903c_data_analyst_assistant' from '/home/DB-GPT/examples/awel/data_analyst_assistant.py'> and model file /home/DB-GPT/examples/awel/data_analyst_assistant.py
2025-03-31 17:08:54 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_llm_client_example.py
2025-03-31 17:08:54 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_llm_client_example.py
2025-03-31 17:08:54 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_llm_client_example.py
2025-03-31 17:08:54 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_llm_client_generate) from mod <module 'unusual_prefix_fa5740ee7c9c6d005009382b43e55de50b9eda0d_simple_llm_client_example' from '/home/DB-GPT/examples/awel/simple_llm_client_example.py'> and model file /home/DB-GPT/examples/awel/simple_llm_client_example.py
2025-03-31 17:08:54 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_llm_client_generate) from mod <module 'unusual_prefix_fa5740ee7c9c6d005009382b43e55de50b9eda0d_simple_llm_client_example' from '/home/DB-GPT/examples/awel/simple_llm_client_example.py'> and model file /home/DB-GPT/examples/awel/simple_llm_client_example.py
2025-03-31 17:08:54 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_llm_client_generate) from mod <module 'unusual_prefix_fa5740ee7c9c6d005009382b43e55de50b9eda0d_simple_llm_client_example' from '/home/DB-GPT/examples/awel/simple_llm_client_example.py'> and model file /home/DB-GPT/examples/awel/simple_llm_client_example.py
2025-03-31 17:08:54 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_llm_client_count_token) from mod <module 'unusual_prefix_fa5740ee7c9c6d005009382b43e55de50b9eda0d_simple_llm_client_example' from '/home/DB-GPT/examples/awel/simple_llm_client_example.py'> and model file /home/DB-GPT/examples/awel/simple_llm_client_example.py
2025-03-31 17:08:54 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_llm_client_count_token) from mod <module 'unusual_prefix_fa5740ee7c9c6d005009382b43e55de50b9eda0d_simple_llm_client_example' from '/home/DB-GPT/examples/awel/simple_llm_client_example.py'> and model file /home/DB-GPT/examples/awel/simple_llm_client_example.py
2025-03-31 17:08:54 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_llm_client_count_token) from mod <module 'unusual_prefix_fa5740ee7c9c6d005009382b43e55de50b9eda0d_simple_llm_client_example' from '/home/DB-GPT/examples/awel/simple_llm_client_example.py'> and model file /home/DB-GPT/examples/awel/simple_llm_client_example.py
2025-03-31 17:08:54 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_nl_schema_sql_chart_example.py
2025-03-31 17:08:54 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_nl_schema_sql_chart_example.py
2025-03-31 17:08:54 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_nl_schema_sql_chart_example.py
2025-03-31 17:08:56 | INFO | dbgpt.datasource.rdbms.base | Closing RDBMS connector resources...
2025-03-31 17:08:56 | INFO | dbgpt.datasource.rdbms.base | Closing RDBMS connector resources...
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=simple_nl_schema_sql_chart_example) from mod <module 'unusual_prefix_aa5ab7ad0c92b4d4895d19a5e92366b8877d079f_simple_nl_schema_sql_chart_example' from '/home/DB-GPT/examples/awel/simple_nl_schema_sql_chart_example.py'> and model file /home/DB-GPT/examples/awel/simple_nl_schema_sql_chart_example.py
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=simple_nl_schema_sql_chart_example) from mod <module 'unusual_prefix_aa5ab7ad0c92b4d4895d19a5e92366b8877d079f_simple_nl_schema_sql_chart_example' from '/home/DB-GPT/examples/awel/simple_nl_schema_sql_chart_example.py'> and model file /home/DB-GPT/examples/awel/simple_nl_schema_sql_chart_example.py
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=simple_nl_schema_sql_chart_example) from mod <module 'unusual_prefix_aa5ab7ad0c92b4d4895d19a5e92366b8877d079f_simple_nl_schema_sql_chart_example' from '/home/DB-GPT/examples/awel/simple_nl_schema_sql_chart_example.py'> and model file /home/DB-GPT/examples/awel/simple_nl_schema_sql_chart_example.py
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_rag_rewrite_example.py
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_rag_rewrite_example.py
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_rag_rewrite_example.py
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_rag_rewrite_example) from mod <module 'unusual_prefix_bec60c6069e118fc06fbb667d7e76344b458c939_simple_rag_rewrite_example' from '/home/DB-GPT/examples/awel/simple_rag_rewrite_example.py'> and model file /home/DB-GPT/examples/awel/simple_rag_rewrite_example.py
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_rag_rewrite_example) from mod <module 'unusual_prefix_bec60c6069e118fc06fbb667d7e76344b458c939_simple_rag_rewrite_example' from '/home/DB-GPT/examples/awel/simple_rag_rewrite_example.py'> and model file /home/DB-GPT/examples/awel/simple_rag_rewrite_example.py
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_rag_rewrite_example) from mod <module 'unusual_prefix_bec60c6069e118fc06fbb667d7e76344b458c939_simple_rag_rewrite_example' from '/home/DB-GPT/examples/awel/simple_rag_rewrite_example.py'> and model file /home/DB-GPT/examples/awel/simple_rag_rewrite_example.py
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_rag_summary_example.py
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_rag_summary_example.py
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_rag_summary_example.py
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_rag_summary_example) from mod <module 'unusual_prefix_14e17e50bbe0790c364d347efeda2ebbb9628315_simple_rag_summary_example' from '/home/DB-GPT/examples/awel/simple_rag_summary_example.py'> and model file /home/DB-GPT/examples/awel/simple_rag_summary_example.py
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_rag_summary_example) from mod <module 'unusual_prefix_14e17e50bbe0790c364d347efeda2ebbb9628315_simple_rag_summary_example' from '/home/DB-GPT/examples/awel/simple_rag_summary_example.py'> and model file /home/DB-GPT/examples/awel/simple_rag_summary_example.py
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_rag_summary_example) from mod <module 'unusual_prefix_14e17e50bbe0790c364d347efeda2ebbb9628315_simple_rag_summary_example' from '/home/DB-GPT/examples/awel/simple_rag_summary_example.py'> and model file /home/DB-GPT/examples/awel/simple_rag_summary_example.py
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=f13bdfb7-dc68-4387-9dda-3946a09879b2)
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=f13bdfb7-dc68-4387-9dda-3946a09879b2)
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7faf6fe316c0>(AWEL_trigger_route__examples_simple_chat), endpoint: /examples/simple_chat, methods: ['POST']
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7faf6fe316c0>(AWEL_trigger_route__examples_simple_chat), endpoint: /examples/simple_chat, methods: ['POST']
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7faf6fe316c0>(AWEL_trigger_route__examples_simple_chat), endpoint: /examples/simple_chat, methods: ['POST']
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/simple_chat
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/simple_chat
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/simple_chat
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7fafc2977dc0> to prefix path /api/v1/awel/trigger
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7fafc2977dc0> to prefix path /api/v1/awel/trigger
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=1ff4eb80-6ef6-4444-b919-5a88eedb9b26)
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=1ff4eb80-6ef6-4444-b919-5a88eedb9b26)
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7faf6fe323b0>(AWEL_trigger_route__examples_simple_history_multi_round_chat_completions), endpoint: /examples/simple_history/multi_round/chat/completions, methods: ['POST']
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7faf6fe323b0>(AWEL_trigger_route__examples_simple_history_multi_round_chat_completions), endpoint: /examples/simple_history/multi_round/chat/completions, methods: ['POST']
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7faf6fe323b0>(AWEL_trigger_route__examples_simple_history_multi_round_chat_completions), endpoint: /examples/simple_history/multi_round/chat/completions, methods: ['POST']
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/simple_history/multi_round/chat/completions
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/simple_history/multi_round/chat/completions
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/simple_history/multi_round/chat/completions
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7fafc2977dc0> to prefix path /api/v1/awel/trigger
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7fafc2977dc0> to prefix path /api/v1/awel/trigger
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=a2257e2f-654c-4c39-b4f2-61595ff9f46e)
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=a2257e2f-654c-4c39-b4f2-61595ff9f46e)
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function_get at 0x7faf6fe31cf0>(AWEL_trigger_route__examples_hello), endpoint: /examples/hello, methods: ['GET']
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function_get at 0x7faf6fe31cf0>(AWEL_trigger_route__examples_hello), endpoint: /examples/hello, methods: ['GET']
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function_get at 0x7faf6fe31cf0>(AWEL_trigger_route__examples_hello), endpoint: /examples/hello, methods: ['GET']
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/hello
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/hello
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/hello
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7fafc2977dc0> to prefix path /api/v1/awel/trigger
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7fafc2977dc0> to prefix path /api/v1/awel/trigger
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=d24f3d73-3183-4dd8-990c-2c1626fc32c3)
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=d24f3d73-3183-4dd8-990c-2c1626fc32c3)
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7faf6fe31630>(AWEL_trigger_route__examples_data_analyst_copilot), endpoint: /examples/data_analyst/copilot, methods: ['POST']
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7faf6fe31630>(AWEL_trigger_route__examples_data_analyst_copilot), endpoint: /examples/data_analyst/copilot, methods: ['POST']
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7faf6fe31630>(AWEL_trigger_route__examples_data_analyst_copilot), endpoint: /examples/data_analyst/copilot, methods: ['POST']
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/data_analyst/copilot
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/data_analyst/copilot
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/data_analyst/copilot
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7fafc2977dc0> to prefix path /api/v1/awel/trigger
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7fafc2977dc0> to prefix path /api/v1/awel/trigger
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=a3fbdd9b-c476-4c7f-9990-6e21d5a06c66)
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=a3fbdd9b-c476-4c7f-9990-6e21d5a06c66)
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7faf6fe33640>(AWEL_trigger_route__examples_simple_client_chat_completions), endpoint: /examples/simple_client/chat/completions, methods: ['POST']
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7faf6fe33640>(AWEL_trigger_route__examples_simple_client_chat_completions), endpoint: /examples/simple_client/chat/completions, methods: ['POST']
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7faf6fe33640>(AWEL_trigger_route__examples_simple_client_chat_completions), endpoint: /examples/simple_client/chat/completions, methods: ['POST']
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/simple_client/chat/completions
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/simple_client/chat/completions
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/simple_client/chat/completions
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7fafc2977dc0> to prefix path /api/v1/awel/trigger
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7fafc2977dc0> to prefix path /api/v1/awel/trigger
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=0e188242-4458-4e28-a2a8-27d1e5ab465b)
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=0e188242-4458-4e28-a2a8-27d1e5ab465b)
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7faf6fe7cc10>(AWEL_trigger_route__examples_simple_client_count_token), endpoint: /examples/simple_client/count_token, methods: ['POST']
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7faf6fe7cc10>(AWEL_trigger_route__examples_simple_client_count_token), endpoint: /examples/simple_client/count_token, methods: ['POST']
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7faf6fe7cc10>(AWEL_trigger_route__examples_simple_client_count_token), endpoint: /examples/simple_client/count_token, methods: ['POST']
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/simple_client/count_token
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/simple_client/count_token
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/simple_client/count_token
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7fafc2977dc0> to prefix path /api/v1/awel/trigger
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7fafc2977dc0> to prefix path /api/v1/awel/trigger
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=240a48ed-2064-4224-8f89-e77fb375f396)
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=240a48ed-2064-4224-8f89-e77fb375f396)
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7faf6fe33d90>(AWEL_trigger_route__examples_rag_schema_linking), endpoint: /examples/rag/schema_linking, methods: ['POST']
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7faf6fe33d90>(AWEL_trigger_route__examples_rag_schema_linking), endpoint: /examples/rag/schema_linking, methods: ['POST']
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7faf6fe33d90>(AWEL_trigger_route__examples_rag_schema_linking), endpoint: /examples/rag/schema_linking, methods: ['POST']
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/rag/schema_linking
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/rag/schema_linking
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/rag/schema_linking
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7fafc2977dc0> to prefix path /api/v1/awel/trigger
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7fafc2977dc0> to prefix path /api/v1/awel/trigger
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=004f7945-5ba9-4c0d-babd-2174a4a9d9f7)
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=004f7945-5ba9-4c0d-babd-2174a4a9d9f7)
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7faf6fe7cd30>(AWEL_trigger_route__examples_rag_rewrite), endpoint: /examples/rag/rewrite, methods: ['POST']
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7faf6fe7cd30>(AWEL_trigger_route__examples_rag_rewrite), endpoint: /examples/rag/rewrite, methods: ['POST']
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7faf6fe7cd30>(AWEL_trigger_route__examples_rag_rewrite), endpoint: /examples/rag/rewrite, methods: ['POST']
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/rag/rewrite
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/rag/rewrite
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/rag/rewrite
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7fafc2977dc0> to prefix path /api/v1/awel/trigger
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7fafc2977dc0> to prefix path /api/v1/awel/trigger
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=69cc94d4-2792-4148-8f37-439ea2610cad)
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=69cc94d4-2792-4148-8f37-439ea2610cad)
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7faf6fe7d2d0>(AWEL_trigger_route__examples_rag_summary), endpoint: /examples/rag/summary, methods: ['POST']
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7faf6fe7d2d0>(AWEL_trigger_route__examples_rag_summary), endpoint: /examples/rag/summary, methods: ['POST']
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7faf6fe7d2d0>(AWEL_trigger_route__examples_rag_summary), endpoint: /examples/rag/summary, methods: ['POST']
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/rag/summary
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/rag/summary
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/rag/summary
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7fafc2977dc0> to prefix path /api/v1/awel/trigger
2025-03-31 17:08:56 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7fafc2977dc0> to prefix path /api/v1/awel/trigger
2025-03-31 17:08:57 | WARNING | dbgpt.util.api_utils | Health check failed for http://127.0.0.1:5670, error: HTTPConnectionPool(host='127.0.0.1', port=5670): Max retries exceeded with url: /api/health (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7faf6fc681c0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2025-03-31 17:08:57 | WARNING | dbgpt.util.api_utils | Health check failed for http://127.0.0.1:5670, error: HTTPConnectionPool(host='127.0.0.1', port=5670): Max retries exceeded with url: /api/health (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7faf6fc681c0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2025-03-31 17:08:57 | INFO | dbgpt.model.cluster.worker.manager | Begin start all worker, apply_req: None
2025-03-31 17:08:57 | INFO | dbgpt.model.cluster.worker.manager | Begin start all worker, apply_req: None
2025-03-31 17:08:57 | INFO | dbgpt.model.cluster.worker.manager | Apply req: None, apply_func: <function LocalWorkerManager._start_all_worker.<locals>._start_worker at 0x7faf6fc64310>
2025-03-31 17:08:57 | INFO | dbgpt.model.cluster.worker.manager | Apply req: None, apply_func: <function LocalWorkerManager._start_all_worker.<locals>._start_worker at 0x7faf6fc64310>
2025-03-31 17:08:57 | INFO | dbgpt.model.cluster.worker.manager | Apply to all workers
2025-03-31 17:08:57 | INFO | dbgpt.model.cluster.worker.manager | Apply to all workers
2025-03-31 17:08:57 | INFO | dbgpt.model.cluster.worker.default_worker | Begin load model, model params: 

=========================== HFLLMDeployModelParameters ===========================

name: THUDM/glm-4-9b-chat
provider: hf
verbose: False
concurrency: 5
backend: None
prompt_template: None
context_length: None
reasoning_model: None
path: models/THUDM/glm-4-9b-chat
device: None
trust_remote_code: True
quantization: None
low_cpu_mem_usage: None
num_gpus: None
max_gpu_memory: None
torch_dtype: None
attn_implementation: None

======================================================================


2025-03-31 17:08:57 | INFO | dbgpt.model.cluster.worker.default_worker | Begin load model, model params: 

=========================== HFLLMDeployModelParameters ===========================

name: THUDM/glm-4-9b-chat
provider: hf
verbose: False
concurrency: 5
backend: None
prompt_template: None
context_length: None
reasoning_model: None
path: models/THUDM/glm-4-9b-chat
device: None
trust_remote_code: True
quantization: None
low_cpu_mem_usage: None
num_gpus: None
max_gpu_memory: None
torch_dtype: None
attn_implementation: None

======================================================================


2025-03-31 17:08:58 | INFO | dbgpt.model.adapter.hf_adapter | Load model from /home/DB-GPT/models/THUDM/glm-4-9b-chat, from_pretrained_kwargs: {'device_map': 'auto', 'max_memory': {0: '27GiB', 1: '27GiB', 2: '27GiB', 3: '27GiB', 4: '27GiB', 5: '27GiB', 6: '27GiB', 7: '27GiB'}, 'torch_dtype': torch.float16, 'low_cpu_mem_usage': True}
2025-03-31 17:08:58 | INFO | dbgpt.model.adapter.hf_adapter | Load model from /home/DB-GPT/models/THUDM/glm-4-9b-chat, from_pretrained_kwargs: {'device_map': 'auto', 'max_memory': {0: '27GiB', 1: '27GiB', 2: '27GiB', 3: '27GiB', 4: '27GiB', 5: '27GiB', 6: '27GiB', 7: '27GiB'}, 'torch_dtype': torch.float16, 'low_cpu_mem_usage': True}
2025-03-31 17:09:05 | INFO | dbgpt.util.code.server | Code server is ready
2025-03-31 17:09:15 | INFO | dbgpt.model.cluster.worker.default_worker | Parse model max length 128000 from model THUDM/glm-4-9b-chat.
2025-03-31 17:09:15 | INFO | dbgpt.model.cluster.worker.default_worker | Parse model max length 128000 from model THUDM/glm-4-9b-chat.
2025-03-31 17:09:15 | INFO | dbgpt.model.cluster.worker.embedding_worker | Load embeddings model: BAAI/bge-large-zh-v1.5
2025-03-31 17:09:15 | INFO | datasets | PyTorch version 2.4.1+das.opt2.dtk2504 available.
2025-03-31 17:09:15 | INFO | datasets | Duckdb version 1.2.0 available.
2025-03-31 17:09:15 | INFO | sentence_transformers.SentenceTransformer | Use pytorch device_name: cuda
2025-03-31 17:09:15 | INFO | sentence_transformers.SentenceTransformer | Load pretrained SentenceTransformer: /home/DB-GPT/models/BAAI/bge-large-zh-v1.5
2025-03-31 17:09:17 | INFO | dbgpt.model.cluster.worker.manager | There has model storage, start the model from storage
2025-03-31 17:09:17 | INFO | dbgpt.model.cluster.worker.manager | There has model storage, start the model from storage
2025-03-31 17:09:33 | INFO | dbgpt_app.openapi.api_v1.api_v1 | /controller/model/types
2025-03-31 17:09:33 | INFO | dbgpt.model.cluster.controller.controller | Get all instances with None, healthy_only: True
2025-03-31 17:09:33 | INFO | dbgpt.model.cluster.controller.controller | Get all instances with None, healthy_only: True
2025-03-31 17:09:33 | INFO | dbgpt_serve.agent.app.controller | app_detail:chat_normal,chat_normal
2025-03-31 17:10:48 | INFO | dbgpt_app.openapi.api_v1.api_v1 | chat_completions:chat_normal,,THUDM/glm-4-9b-chat, timestamp=1743412248869
2025-03-31 17:10:48 | INFO | dbgpt_app.openapi.api_v1.api_v1 | get_chat_instance:conv_uid='95100ae2-0e09-11f0-a78a-0242ac110003' user_input='美国多少人口' user_name='001' chat_mode='chat_normal' app_code='chat_normal' temperature=0.6 max_new_tokens=4000 select_param='' model_name='THUDM/glm-4-9b-chat' incremental=False sys_code=None prompt_code=None ext_info={}
2025-03-31 17:10:50 | INFO | dbgpt.core._private.prompt_registry | Get prompt template of scene_name: chat_normal with model_name: THUDM/glm-4-9b-chat, proxyllm_backend: None, language: zh
2025-03-31 17:10:50 | INFO | dbgpt.core._private.prompt_registry | Get prompt template of scene_name: chat_normal with model_name: THUDM/glm-4-9b-chat, proxyllm_backend: None, language: zh
2025-03-31 17:10:51 | INFO | dbgpt.core.awel.runner.local_runner | Begin run workflow from end operator, id: 989d1fea-98fe-4c63-b15d-c94b72ad4e3a, runner: <dbgpt.core.awel.runner.local_runner.DefaultWorkflowRunner object at 0x7fafc2977e80>
2025-03-31 17:10:51 | INFO | dbgpt.core.awel.runner.local_runner | Begin run workflow from end operator, id: 989d1fea-98fe-4c63-b15d-c94b72ad4e3a, runner: <dbgpt.core.awel.runner.local_runner.DefaultWorkflowRunner object at 0x7fafc2977e80>
2025-03-31 17:10:51 | INFO | dbgpt.core.awel.runner.local_runner | Begin run workflow from end operator, id: 989d1fea-98fe-4c63-b15d-c94b72ad4e3a, runner: <dbgpt.core.awel.runner.local_runner.DefaultWorkflowRunner object at 0x7fafc2977e80>
2025-03-31 17:10:51 | INFO | dbgpt.core.awel.runner.local_runner | Begin run workflow from end operator, id: 037f59ec-3cd3-4b29-bac4-3b19a54cff8b, runner: <dbgpt.core.awel.runner.local_runner.DefaultWorkflowRunner object at 0x7fafc2977e80>
2025-03-31 17:10:51 | INFO | dbgpt.core.awel.runner.local_runner | Begin run workflow from end operator, id: 037f59ec-3cd3-4b29-bac4-3b19a54cff8b, runner: <dbgpt.core.awel.runner.local_runner.DefaultWorkflowRunner object at 0x7fafc2977e80>
2025-03-31 17:10:51 | INFO | dbgpt.core.awel.runner.local_runner | Begin run workflow from end operator, id: 037f59ec-3cd3-4b29-bac4-3b19a54cff8b, runner: <dbgpt.core.awel.runner.local_runner.DefaultWorkflowRunner object at 0x7fafc2977e80>
2025-03-31 17:10:51 | WARNING | dbgpt.model.cluster.worker.default_worker | Failed to count token, try tiktoken
2025-03-31 17:10:51 | WARNING | dbgpt.model.cluster.worker.default_worker | Failed to count token, try tiktoken
2025-03-31 17:10:51 | INFO | dbgpt.model.proxy.base | tiktoken installed, using it to count tokens, tiktoken will download tokenizer from network, also you can download it and put it in the directory of environment variable TIKTOKEN_CACHE_DIR
2025-03-31 17:10:51 | INFO | dbgpt.model.proxy.base | tiktoken installed, using it to count tokens, tiktoken will download tokenizer from network, also you can download it and put it in the directory of environment variable TIKTOKEN_CACHE_DIR
2025-03-31 17:10:51 | WARNING | dbgpt.model.proxy.base | cl100k_base's tokenizer not found, using cl100k_base encoding.
2025-03-31 17:10:51 | WARNING | dbgpt.model.proxy.base | cl100k_base's tokenizer not found, using cl100k_base encoding.
2025-03-31 17:10:54 | INFO | dbgpt_app.scene.base_chat | payload request: 
ModelRequest(model='THUDM/glm-4-9b-chat', messages=[ModelMessage(role='system', content='你是一个有用的 AI 助手。', round_index=0), ModelMessage(role='human', content='美国多少人口', round_index=0)], temperature=0.6, top_p=None, max_new_tokens=4000, stop=None, stop_token_ids=None, context_len=None, echo=False, span_id='d497cfc1dbbf9145bd47abb67931956a:fd606c5e67cc16cc', context=ModelRequestContext(stream=True, cache_enable=False, user_name='001', sys_code=None, conv_uid=None, span_id='d497cfc1dbbf9145bd47abb67931956a:fd606c5e67cc16cc', chat_mode='chat_normal', chat_param=None, extra={}, request_id=None, is_reasoning_model=False))
2025-03-31 17:10:54 | INFO | dbgpt_app.scene.base_chat | payload request: 
ModelRequest(model='THUDM/glm-4-9b-chat', messages=[ModelMessage(role='system', content='你是一个有用的 AI 助手。', round_index=0), ModelMessage(role='human', content='美国多少人口', round_index=0)], temperature=0.6, top_p=None, max_new_tokens=4000, stop=None, stop_token_ids=None, context_len=None, echo=False, span_id='d497cfc1dbbf9145bd47abb67931956a:fd606c5e67cc16cc', context=ModelRequestContext(stream=True, cache_enable=False, user_name='001', sys_code=None, conv_uid=None, span_id='d497cfc1dbbf9145bd47abb67931956a:fd606c5e67cc16cc', chat_mode='chat_normal', chat_param=None, extra={}, request_id=None, is_reasoning_model=False))
2025-03-31 17:10:54 | INFO | dbgpt.core.awel.runner.local_runner | Begin run workflow from end operator, id: 47d909ff-6a6d-4a0a-aba1-ee8b1e490344, runner: <dbgpt.core.awel.runner.local_runner.DefaultWorkflowRunner object at 0x7fafc2977e80>
2025-03-31 17:10:54 | INFO | dbgpt.core.awel.runner.local_runner | Begin run workflow from end operator, id: 47d909ff-6a6d-4a0a-aba1-ee8b1e490344, runner: <dbgpt.core.awel.runner.local_runner.DefaultWorkflowRunner object at 0x7fafc2977e80>
2025-03-31 17:10:54 | INFO | dbgpt.core.awel.runner.local_runner | Begin run workflow from end operator, id: 47d909ff-6a6d-4a0a-aba1-ee8b1e490344, runner: <dbgpt.core.awel.runner.local_runner.DefaultWorkflowRunner object at 0x7fafc2977e80>
2025-03-31 17:10:54 | INFO | dbgpt.core.awel.operators.common_operator | branch_input_ctxs 0 result None, is_empty: False
2025-03-31 17:10:54 | INFO | dbgpt.core.awel.operators.common_operator | branch_input_ctxs 0 result None, is_empty: False
2025-03-31 17:10:54 | INFO | dbgpt.core.awel.operators.common_operator | branch_input_ctxs 0 result None, is_empty: False
2025-03-31 17:10:54 | INFO | dbgpt.core.awel.operators.common_operator | Skip node name llm_model_cache_node
2025-03-31 17:10:54 | INFO | dbgpt.core.awel.operators.common_operator | Skip node name llm_model_cache_node
2025-03-31 17:10:54 | INFO | dbgpt.core.awel.operators.common_operator | Skip node name llm_model_cache_node
2025-03-31 17:10:54 | INFO | dbgpt.core.awel.operators.common_operator | branch_input_ctxs 1 result True, is_empty: False
2025-03-31 17:10:54 | INFO | dbgpt.core.awel.operators.common_operator | branch_input_ctxs 1 result True, is_empty: False
2025-03-31 17:10:54 | INFO | dbgpt.core.awel.operators.common_operator | branch_input_ctxs 1 result True, is_empty: False
2025-03-31 17:10:54 | INFO | dbgpt.core.awel.runner.local_runner | Skip node name llm_model_cache_node, node id 3fec891b-16a9-43ce-99e3-9c55237fe446
2025-03-31 17:10:54 | INFO | dbgpt.core.awel.runner.local_runner | Skip node name llm_model_cache_node, node id 3fec891b-16a9-43ce-99e3-9c55237fe446
2025-03-31 17:10:54 | INFO | dbgpt.core.awel.runner.local_runner | Skip node name llm_model_cache_node, node id 3fec891b-16a9-43ce-99e3-9c55237fe446
2025-03-31 17:10:54 | INFO | dbgpt.model.adapter.base | Message version is v2
2025-03-31 17:10:54 | INFO | dbgpt.model.adapter.base | Message version is v2
2025-03-31 17:10:54 | INFO | dbgpt.model.adapter.base | support_system_message: True
2025-03-31 17:10:54 | INFO | dbgpt.model.adapter.base | support_system_message: True
2025-03-31 17:10:55 | INFO | dbgpt.model.cluster.worker.default_worker | current generate stream function is synchronous generate stream function
2025-03-31 17:10:55 | INFO | dbgpt.model.cluster.worker.default_worker | current generate stream function is synchronous generate stream function
2025-03-31 17:10:55 | INFO | dbgpt.model.cluster.worker.default_worker | llm_adapter: <GLM4Adapter model_name=THUDM/glm-4-9b-chat model_path=/home/DB-GPT/models/THUDM/glm-4-9b-chat>

model prompt: 

[gMASK]<sop><|system|>
你是一个有用的 AI 助手。<|user|>
美国多少人口<|assistant|>

generate stream output:

2025-03-31 17:10:55 | INFO | dbgpt.model.cluster.worker.default_worker | llm_adapter: <GLM4Adapter model_name=THUDM/glm-4-9b-chat model_path=/home/DB-GPT/models/THUDM/glm-4-9b-chat>

model prompt: 

[gMASK]<sop><|system|>
你是一个有用的 AI 助手。<|user|>
美国多少人口<|assistant|>

generate stream output:

2025-03-31 17:10:55 | ERROR | dbgpt.model.cluster.worker.default_worker | Model inference error, detail: Traceback (most recent call last):
  File "/home/DB-GPT/packages/dbgpt-core/src/dbgpt/model/cluster/worker/default_worker.py", line 178, in generate_stream
    for output in generate_stream_func(
  File "/usr/local/lib/python3.10/dist-packages/torch/utils/_contextlib.py", line 36, in generator_context
    response = gen.send(None)
  File "/home/DB-GPT/packages/dbgpt-core/src/dbgpt/model/llm/llm_out/hf_chat_llm.py", line 37, in huggingface_chat_generate_stream
    input_ids = tokenizer(prompt).input_ids
  File "/usr/local/lib/python3.10/dist-packages/transformers/tokenization_utils_base.py", line 2877, in __call__
    encodings = self._call_one(text=text, text_pair=text_pair, **all_kwargs)
  File "/usr/local/lib/python3.10/dist-packages/transformers/tokenization_utils_base.py", line 2987, in _call_one
    return self.encode_plus(
  File "/usr/local/lib/python3.10/dist-packages/transformers/tokenization_utils_base.py", line 3063, in encode_plus
    return self._encode_plus(
  File "/usr/local/lib/python3.10/dist-packages/transformers/tokenization_utils.py", line 804, in _encode_plus
    return self.prepare_for_model(
  File "/usr/local/lib/python3.10/dist-packages/transformers/tokenization_utils_base.py", line 3559, in prepare_for_model
    encoded_inputs = self.pad(
  File "/usr/local/lib/python3.10/dist-packages/transformers/tokenization_utils_base.py", line 3361, in pad
    encoded_inputs = self._pad(
TypeError: ChatGLM4Tokenizer._pad() got an unexpected keyword argument 'padding_side'

2025-03-31 17:10:55 | ERROR | dbgpt.model.cluster.worker.default_worker | Model inference error, detail: Traceback (most recent call last):
  File "/home/DB-GPT/packages/dbgpt-core/src/dbgpt/model/cluster/worker/default_worker.py", line 178, in generate_stream
    for output in generate_stream_func(
  File "/usr/local/lib/python3.10/dist-packages/torch/utils/_contextlib.py", line 36, in generator_context
    response = gen.send(None)
  File "/home/DB-GPT/packages/dbgpt-core/src/dbgpt/model/llm/llm_out/hf_chat_llm.py", line 37, in huggingface_chat_generate_stream
    input_ids = tokenizer(prompt).input_ids
  File "/usr/local/lib/python3.10/dist-packages/transformers/tokenization_utils_base.py", line 2877, in __call__
    encodings = self._call_one(text=text, text_pair=text_pair, **all_kwargs)
  File "/usr/local/lib/python3.10/dist-packages/transformers/tokenization_utils_base.py", line 2987, in _call_one
    return self.encode_plus(
  File "/usr/local/lib/python3.10/dist-packages/transformers/tokenization_utils_base.py", line 3063, in encode_plus
    return self._encode_plus(
  File "/usr/local/lib/python3.10/dist-packages/transformers/tokenization_utils.py", line 804, in _encode_plus
    return self.prepare_for_model(
  File "/usr/local/lib/python3.10/dist-packages/transformers/tokenization_utils_base.py", line 3559, in prepare_for_model
    encoded_inputs = self.pad(
  File "/usr/local/lib/python3.10/dist-packages/transformers/tokenization_utils_base.py", line 3361, in pad
    encoded_inputs = self._pad(
TypeError: ChatGLM4Tokenizer._pad() got an unexpected keyword argument 'padding_side'

2025-03-31 17:10:55 | ERROR | dbgpt_app.scene.base_chat | model response parse failedModel server error!code=1, error msg is **LLMServer Generate Error, Please CheckErrorInfo.**: ChatGLM4Tokenizer._pad() got an unexpected keyword argument 'padding_side'
2025-03-31 17:10:55 | ERROR | dbgpt_app.scene.base_chat | model response parse failedModel server error!code=1, error msg is **LLMServer Generate Error, Please CheckErrorInfo.**: ChatGLM4Tokenizer._pad() got an unexpected keyword argument 'padding_side'
2025-03-31 17:12:45 | INFO | dbgpt.model.cluster.worker.manager | Stop all workers
2025-03-31 17:12:45 | INFO | dbgpt.model.cluster.worker.manager | Stop all workers
2025-03-31 17:12:45 | INFO | dbgpt.model.cluster.worker.manager | Apply req: None, apply_func: <function LocalWorkerManager._stop_all_worker.<locals>._stop_worker at 0x7fae97236a70>
2025-03-31 17:12:45 | INFO | dbgpt.model.cluster.worker.manager | Apply req: None, apply_func: <function LocalWorkerManager._stop_all_worker.<locals>._stop_worker at 0x7fae97236a70>
2025-03-31 17:12:45 | INFO | dbgpt.model.cluster.worker.manager | Apply to all workers
2025-03-31 17:12:45 | INFO | dbgpt.model.cluster.worker.manager | Apply to all workers
2025-03-31 17:12:46 | WARNING | dbgpt.model.cluster.worker.manager | Stop worker, ignored exception from deregister_func: All connection attempts failed
2025-03-31 17:12:46 | WARNING | dbgpt.model.cluster.worker.manager | Stop worker, ignored exception from deregister_func: All connection attempts failed
2025-03-31 17:12:46 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:0
2025-03-31 17:12:46 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:0
2025-03-31 17:12:48 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:1
2025-03-31 17:12:48 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:1
2025-03-31 17:12:48 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:0
2025-03-31 17:12:48 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:2
2025-03-31 17:12:48 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:2
2025-03-31 17:12:48 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:0
2025-03-31 17:12:48 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:3
2025-03-31 17:12:48 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:1
2025-03-31 17:12:48 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:3
2025-03-31 17:12:48 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:1
2025-03-31 17:12:48 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:4
2025-03-31 17:12:48 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:2
2025-03-31 17:12:48 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:4
2025-03-31 17:12:48 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:2
2025-03-31 17:12:48 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:5
2025-03-31 17:12:48 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:5
2025-03-31 17:12:48 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:3
2025-03-31 17:12:48 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:6
2025-03-31 17:12:48 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:6
2025-03-31 17:12:48 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:3
2025-03-31 17:12:48 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:7
2025-03-31 17:12:48 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:7
2025-03-31 17:12:48 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:4
2025-03-31 17:12:48 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:4
2025-03-31 17:12:48 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:5
2025-03-31 17:12:48 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:5
2025-03-31 17:12:48 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:6
2025-03-31 17:12:48 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:6
2025-03-31 17:12:48 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:7
2025-03-31 17:12:48 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:7
2025-03-31 17:12:48 | WARNING | dbgpt.model.cluster.worker.manager | Stop worker, ignored exception from deregister_func: All connection attempts failed
2025-03-31 17:12:48 | WARNING | dbgpt.model.cluster.worker.manager | Stop worker, ignored exception from deregister_func: All connection attempts failed
2025-03-31 17:12:48 | WARNING | dbgpt.model.cluster.worker.manager | Stop worker, ignored exception from deregister_func: All connection attempts failed
2025-03-31 17:12:48 | WARNING | dbgpt.model.cluster.worker.manager | Stop worker, ignored exception from deregister_func: All connection attempts failed
2025-03-31 20:50:35 | INFO | dbgpt.component | Register component with name dbgpt_unified_metadata_db_manager_factory and instance: <dbgpt.storage.metadata.db_factory.UnifiedDBManagerFactory object at 0x7f1845498df0>
2025-03-31 20:50:35 | INFO | dbgpt.component | Register component with name dbgpt_unified_metadata_db_manager_factory and instance: <dbgpt.storage.metadata.db_factory.UnifiedDBManagerFactory object at 0x7f1845498df0>
2025-03-31 20:50:35 | INFO | dbgpt.datasource.rdbms.base | Closing RDBMS connector resources...
2025-03-31 20:50:35 | INFO | dbgpt.datasource.rdbms.base | Closing RDBMS connector resources...
2025-03-31 20:50:38 | INFO | dbgpt.component | Register component with name dbgpt_thread_pool_default and instance: <dbgpt.util.executor_utils.DefaultExecutorFactory object at 0x7f18424effd0>
2025-03-31 20:50:38 | INFO | dbgpt.component | Register component with name dbgpt_thread_pool_default and instance: <dbgpt.util.executor_utils.DefaultExecutorFactory object at 0x7f18424effd0>
2025-03-31 20:50:38 | INFO | dbgpt.component | Register component with name dbgpt_default_scheduler and instance: <dbgpt_app.initialization.scheduler.DefaultScheduler object at 0x7f18424ef580>
2025-03-31 20:50:38 | INFO | dbgpt.component | Register component with name dbgpt_default_scheduler and instance: <dbgpt_app.initialization.scheduler.DefaultScheduler object at 0x7f18424ef580>
2025-03-31 20:50:38 | INFO | dbgpt.component | Register component with name dbgpt_model_controller and instance: <dbgpt.model.cluster.controller.controller.ModelControllerAdapter object at 0x7f2236ed2260>
2025-03-31 20:50:38 | INFO | dbgpt.component | Register component with name dbgpt_model_controller and instance: <dbgpt.model.cluster.controller.controller.ModelControllerAdapter object at 0x7f2236ed2260>
2025-03-31 20:50:38 | INFO | dbgpt.component | Register component with name dbgpt_connector_manager and instance: <dbgpt_serve.datasource.manages.connector_manager.ConnectorManager object at 0x7f18424ef430>
2025-03-31 20:50:38 | INFO | dbgpt.component | Register component with name dbgpt_connector_manager and instance: <dbgpt_serve.datasource.manages.connector_manager.ConnectorManager object at 0x7f18424ef430>
2025-03-31 20:50:38 | INFO | dbgpt.component | Register component with name dbgpt_rag_storage_manager and instance: <dbgpt_serve.rag.storage_manager.StorageManager object at 0x7f18424ed420>
2025-03-31 20:50:38 | INFO | dbgpt.component | Register component with name dbgpt_rag_storage_manager and instance: <dbgpt_serve.rag.storage_manager.StorageManager object at 0x7f18424ed420>
2025-03-31 20:50:38 | INFO | dbgpt.component | Register component with name dbgpt_plugin_hub and instance: <dbgpt_serve.agent.hub.controller.ModulePlugin object at 0x7f1841f68e50>
2025-03-31 20:50:38 | INFO | dbgpt.component | Register component with name dbgpt_plugin_hub and instance: <dbgpt_serve.agent.hub.controller.ModulePlugin object at 0x7f1841f68e50>
2025-03-31 20:50:38 | INFO | dbgpt.component | Register component with name dbgpt_multi_agents and instance: <dbgpt_serve.agent.agents.controller.MultiAgents object at 0x7f184371b7f0>
2025-03-31 20:50:38 | INFO | dbgpt.component | Register component with name dbgpt_multi_agents and instance: <dbgpt_serve.agent.agents.controller.MultiAgents object at 0x7f184371b7f0>
2025-03-31 20:50:38 | INFO | dbgpt_app.initialization.embedding_component | Register remote RemoteEmbeddingFactory
2025-03-31 20:50:38 | INFO | dbgpt.component | Register component with name embedding_factory and instance: <dbgpt_app.initialization.embedding_component.RemoteEmbeddingFactory object at 0x7f1841fd41f0>
2025-03-31 20:50:38 | INFO | dbgpt.component | Register component with name embedding_factory and instance: <dbgpt_app.initialization.embedding_component.RemoteEmbeddingFactory object at 0x7f1841fd41f0>
2025-03-31 20:50:38 | INFO | dbgpt.component | Register component with name dbgpt_model_cache_manager and instance: <dbgpt.storage.cache.manager.LocalCacheManager object at 0x7f1841fd42e0>
2025-03-31 20:50:38 | INFO | dbgpt.component | Register component with name dbgpt_model_cache_manager and instance: <dbgpt.storage.cache.manager.LocalCacheManager object at 0x7f1841fd42e0>
2025-03-31 20:50:38 | INFO | dbgpt.component | Register component with name dbgpt_awel_trigger_manager and instance: <dbgpt.core.awel.trigger.trigger_manager.DefaultTriggerManager object at 0x7f1841fabf10>
2025-03-31 20:50:38 | INFO | dbgpt.component | Register component with name dbgpt_awel_trigger_manager and instance: <dbgpt.core.awel.trigger.trigger_manager.DefaultTriggerManager object at 0x7f1841fabf10>
2025-03-31 20:50:38 | INFO | dbgpt.component | Register component with name dbgpt_awel_dag_manager and instance: <dbgpt.core.awel.dag.dag_manager.DAGManager object at 0x7f1841fabd60>
2025-03-31 20:50:38 | INFO | dbgpt.component | Register component with name dbgpt_awel_dag_manager and instance: <dbgpt.core.awel.dag.dag_manager.DAGManager object at 0x7f1841fabd60>
2025-03-31 20:50:38 | INFO | dbgpt.component | Register component with name dbgpt_resource_manager and instance: <dbgpt.agent.resource.manage.ResourceManager object at 0x7f1841fabc10>
2025-03-31 20:50:38 | INFO | dbgpt.component | Register component with name dbgpt_resource_manager and instance: <dbgpt.agent.resource.manage.ResourceManager object at 0x7f1841fabc10>
2025-03-31 20:50:38 | INFO | dbgpt.component | Register component with name dbgpt_agent_manager and instance: <dbgpt.agent.core.agent_manage.AgentManager object at 0x7f1841e0c0d0>
2025-03-31 20:50:38 | INFO | dbgpt.component | Register component with name dbgpt_agent_manager and instance: <dbgpt.agent.core.agent_manage.AgentManager object at 0x7f1841e0c0d0>
2025-03-31 20:50:38 | INFO | dbgpt.component | Register component with name dbgpt_app_editor_service and instance: <dbgpt_app.openapi.api_v1.editor.service.EditorService object at 0x7f1841e0df30>
2025-03-31 20:50:38 | INFO | dbgpt.component | Register component with name dbgpt_app_editor_service and instance: <dbgpt_app.openapi.api_v1.editor.service.EditorService object at 0x7f1841e0df30>
2025-03-31 20:50:38 | INFO | dbgpt.component | Register component with name dbgpt_serve_prompt and instance: <dbgpt_serve.prompt.serve.Serve object at 0x7f1841e0e170>
2025-03-31 20:50:38 | INFO | dbgpt.component | Register component with name dbgpt_serve_prompt and instance: <dbgpt_serve.prompt.serve.Serve object at 0x7f1841e0e170>
2025-03-31 20:50:39 | INFO | dbgpt.component | Register component with name dbgpt_serve_prompt_service and instance: <dbgpt_serve.prompt.service.service.Service object at 0x7f1841e4a020>
2025-03-31 20:50:39 | INFO | dbgpt.component | Register component with name dbgpt_serve_prompt_service and instance: <dbgpt_serve.prompt.service.service.Service object at 0x7f1841e4a020>
2025-03-31 20:50:39 | INFO | dbgpt.component | Register component with name dbgpt_serve_conversation and instance: <dbgpt_serve.conversation.serve.Serve object at 0x7f1841e4a080>
2025-03-31 20:50:39 | INFO | dbgpt.component | Register component with name dbgpt_serve_conversation and instance: <dbgpt_serve.conversation.serve.Serve object at 0x7f1841e4a080>
2025-03-31 20:50:39 | INFO | dbgpt.component | Register component with name dbgpt_serve_conversation_service and instance: <dbgpt_serve.conversation.service.service.Service object at 0x7f1841ec01c0>
2025-03-31 20:50:39 | INFO | dbgpt.component | Register component with name dbgpt_serve_conversation_service and instance: <dbgpt_serve.conversation.service.service.Service object at 0x7f1841ec01c0>
2025-03-31 20:50:39 | INFO | dbgpt.component | Register component with name dbgpt_variables_provider and instance: <dbgpt.core.interface.variables.StorageVariablesProvider object at 0x7f1841e9fd90>
2025-03-31 20:50:39 | INFO | dbgpt.component | Register component with name dbgpt_variables_provider and instance: <dbgpt.core.interface.variables.StorageVariablesProvider object at 0x7f1841e9fd90>
2025-03-31 20:50:39 | INFO | dbgpt.component | Register component with name dbgpt_serve_flow and instance: <dbgpt_serve.flow.serve.Serve object at 0x7f1841ec02e0>
2025-03-31 20:50:39 | INFO | dbgpt.component | Register component with name dbgpt_serve_flow and instance: <dbgpt_serve.flow.serve.Serve object at 0x7f1841ec02e0>
2025-03-31 20:50:39 | INFO | dbgpt.component | Register component with name dbgpt_dbgpts_loader and instance: <dbgpt.util.dbgpts.loader.DBGPTsLoader object at 0x7f18412f23b0>
2025-03-31 20:50:39 | INFO | dbgpt.component | Register component with name dbgpt_dbgpts_loader and instance: <dbgpt.util.dbgpts.loader.DBGPTsLoader object at 0x7f18412f23b0>
2025-03-31 20:50:39 | INFO | dbgpt.component | Register component with name dbgpt_serve_flow_service and instance: <dbgpt_serve.flow.service.service.Service object at 0x7f1841e9f7f0>
2025-03-31 20:50:39 | INFO | dbgpt.component | Register component with name dbgpt_serve_flow_service and instance: <dbgpt_serve.flow.service.service.Service object at 0x7f1841e9f7f0>
2025-03-31 20:50:39 | INFO | dbgpt.component | Register component with name dbgpt_serve_flow_variables_service and instance: <dbgpt_serve.flow.service.variables_service.VariablesService object at 0x7f18412f2350>
2025-03-31 20:50:39 | INFO | dbgpt.component | Register component with name dbgpt_serve_flow_variables_service and instance: <dbgpt_serve.flow.service.variables_service.VariablesService object at 0x7f18412f2350>
2025-03-31 20:50:39 | INFO | dbgpt.component | Register component with name dbgpt.core.flow.flows and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinFlowVariablesProvider object at 0x7f18412f2500>
2025-03-31 20:50:39 | INFO | dbgpt.component | Register component with name dbgpt.core.flow.flows and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinFlowVariablesProvider object at 0x7f18412f2500>
2025-03-31 20:50:39 | INFO | dbgpt.component | Register component with name dbgpt.core.flow.nodes and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinNodeVariablesProvider object at 0x7f18412f2290>
2025-03-31 20:50:39 | INFO | dbgpt.component | Register component with name dbgpt.core.flow.nodes and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinNodeVariablesProvider object at 0x7f18412f2290>
2025-03-31 20:50:39 | INFO | dbgpt.component | Register component with name dbgpt.core.variables and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinAllVariablesProvider object at 0x7f18412f2470>
2025-03-31 20:50:39 | INFO | dbgpt.component | Register component with name dbgpt.core.variables and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinAllVariablesProvider object at 0x7f18412f2470>
2025-03-31 20:50:39 | INFO | dbgpt.component | Register component with name dbgpt.core.secrets and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinAllSecretVariablesProvider object at 0x7f18412f21d0>
2025-03-31 20:50:39 | INFO | dbgpt.component | Register component with name dbgpt.core.secrets and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinAllSecretVariablesProvider object at 0x7f18412f21d0>
2025-03-31 20:50:39 | INFO | dbgpt.component | Register component with name dbgpt.core.model.llms and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinLLMVariablesProvider object at 0x7f18412f2140>
2025-03-31 20:50:39 | INFO | dbgpt.component | Register component with name dbgpt.core.model.llms and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinLLMVariablesProvider object at 0x7f18412f2140>
2025-03-31 20:50:39 | INFO | dbgpt.component | Register component with name dbgpt.core.model.embeddings and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinEmbeddingsVariablesProvider object at 0x7f18412f2110>
2025-03-31 20:50:39 | INFO | dbgpt.component | Register component with name dbgpt.core.model.embeddings and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinEmbeddingsVariablesProvider object at 0x7f18412f2110>
2025-03-31 20:50:39 | INFO | dbgpt.component | Register component with name dbgpt.core.datasources and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinDatasourceVariablesProvider object at 0x7f18412f1f90>
2025-03-31 20:50:39 | INFO | dbgpt.component | Register component with name dbgpt.core.datasources and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinDatasourceVariablesProvider object at 0x7f18412f1f90>
2025-03-31 20:50:39 | INFO | dbgpt.component | Register component with name dbgpt.core.agent.agents and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinAgentsVariablesProvider object at 0x7f18412f2050>
2025-03-31 20:50:39 | INFO | dbgpt.component | Register component with name dbgpt.core.agent.agents and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinAgentsVariablesProvider object at 0x7f18412f2050>
2025-03-31 20:50:39 | INFO | dbgpt.component | Register component with name dbgpt.core.knowledge_spaces and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinKnowledgeSpacesVariablesProvider object at 0x7f18412f1e70>
2025-03-31 20:50:39 | INFO | dbgpt.component | Register component with name dbgpt.core.knowledge_spaces and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinKnowledgeSpacesVariablesProvider object at 0x7f18412f1e70>
2025-03-31 20:50:39 | INFO | dbgpt.component | Register component with name dbgpt_rag and instance: <dbgpt_serve.rag.serve.Serve object at 0x7f18412f1f60>
2025-03-31 20:50:39 | INFO | dbgpt.component | Register component with name dbgpt_rag and instance: <dbgpt_serve.rag.serve.Serve object at 0x7f18412f1f60>
2025-03-31 20:50:39 | INFO | dbgpt.component | Register component with name dbgpt_rag_service and instance: <dbgpt_serve.rag.service.service.Service object at 0x7f1840c4a7a0>
2025-03-31 20:50:39 | INFO | dbgpt.component | Register component with name dbgpt_rag_service and instance: <dbgpt_serve.rag.service.service.Service object at 0x7f1840c4a7a0>
2025-03-31 20:50:39 | INFO | dbgpt.component | Register component with name dbgpt_datasource and instance: <dbgpt_serve.datasource.serve.Serve object at 0x7f1840c4ab00>
2025-03-31 20:50:39 | INFO | dbgpt.component | Register component with name dbgpt_datasource and instance: <dbgpt_serve.datasource.serve.Serve object at 0x7f1840c4ab00>
2025-03-31 20:50:39 | INFO | dbgpt.component | Register component with name dbgpt_datasource_service and instance: <dbgpt_serve.datasource.service.service.Service object at 0x7f1840cdc8e0>
2025-03-31 20:50:39 | INFO | dbgpt.component | Register component with name dbgpt_datasource_service and instance: <dbgpt_serve.datasource.service.service.Service object at 0x7f1840cdc8e0>
2025-03-31 20:50:39 | INFO | dbgpt.component | Register component with name dbgpt_serve_feedback and instance: <dbgpt_serve.feedback.serve.Serve object at 0x7f1840cdca00>
2025-03-31 20:50:39 | INFO | dbgpt.component | Register component with name dbgpt_serve_feedback and instance: <dbgpt_serve.feedback.serve.Serve object at 0x7f1840cdca00>
2025-03-31 20:50:39 | INFO | dbgpt.component | Register component with name dbgpt_serve_feedback_service and instance: <dbgpt_serve.feedback.service.service.Service object at 0x7f1840cdfdc0>
2025-03-31 20:50:39 | INFO | dbgpt.component | Register component with name dbgpt_serve_feedback_service and instance: <dbgpt_serve.feedback.service.service.Service object at 0x7f1840cdfdc0>
2025-03-31 20:50:39 | INFO | dbgpt.component | Register component with name dbgpt_serve_dbgpts_hub and instance: <dbgpt_serve.dbgpts.hub.serve.Serve object at 0x7f1840cdf7c0>
2025-03-31 20:50:39 | INFO | dbgpt.component | Register component with name dbgpt_serve_dbgpts_hub and instance: <dbgpt_serve.dbgpts.hub.serve.Serve object at 0x7f1840cdf7c0>
2025-03-31 20:50:39 | INFO | dbgpt.component | Register component with name dbgpt_serve_dbgpts_hub_service and instance: <dbgpt_serve.dbgpts.hub.service.service.Service object at 0x7f18407b2890>
2025-03-31 20:50:39 | INFO | dbgpt.component | Register component with name dbgpt_serve_dbgpts_hub_service and instance: <dbgpt_serve.dbgpts.hub.service.service.Service object at 0x7f18407b2890>
2025-03-31 20:50:40 | INFO | dbgpt.component | Register component with name dbgpt_serve_dbgpts_my and instance: <dbgpt_serve.dbgpts.my.serve.Serve object at 0x7f18407b2920>
2025-03-31 20:50:40 | INFO | dbgpt.component | Register component with name dbgpt_serve_dbgpts_my and instance: <dbgpt_serve.dbgpts.my.serve.Serve object at 0x7f18407b2920>
2025-03-31 20:50:40 | INFO | dbgpt.component | Register component with name dbgpt_serve_dbgpts_my_service and instance: <dbgpt_serve.dbgpts.my.service.service.Service object at 0x7f18406b02b0>
2025-03-31 20:50:40 | INFO | dbgpt.component | Register component with name dbgpt_serve_dbgpts_my_service and instance: <dbgpt_serve.dbgpts.my.service.service.Service object at 0x7f18406b02b0>
2025-03-31 20:50:40 | INFO | dbgpt.component | Register component with name dbgpt_serve_file and instance: <dbgpt_serve.file.serve.Serve object at 0x7f18406b03d0>
2025-03-31 20:50:40 | INFO | dbgpt.component | Register component with name dbgpt_serve_file and instance: <dbgpt_serve.file.serve.Serve object at 0x7f18406b03d0>
2025-03-31 20:50:40 | INFO | dbgpt.component | Register component with name dbgpt_serve_file_service and instance: <dbgpt_serve.file.service.service.Service object at 0x7f1840108910>
2025-03-31 20:50:40 | INFO | dbgpt.component | Register component with name dbgpt_serve_file_service and instance: <dbgpt_serve.file.service.service.Service object at 0x7f1840108910>
2025-03-31 20:50:40 | INFO | dbgpt.component | Register component with name dbgpt_serve_evaluate and instance: <dbgpt_serve.evaluate.serve.Serve object at 0x7f1840108a00>
2025-03-31 20:50:40 | INFO | dbgpt.component | Register component with name dbgpt_serve_evaluate and instance: <dbgpt_serve.evaluate.serve.Serve object at 0x7f1840108a00>
2025-03-31 20:50:40 | INFO | dbgpt.component | Register component with name dbgpt_serve_evaluate_service and instance: <dbgpt_serve.evaluate.service.service.Service object at 0x7f184010b430>
2025-03-31 20:50:40 | INFO | dbgpt.component | Register component with name dbgpt_serve_evaluate_service and instance: <dbgpt_serve.evaluate.service.service.Service object at 0x7f184010b430>
2025-03-31 20:50:41 | INFO | dbgpt.component | Register component with name dbgpt_serve_libro and instance: <dbgpt_serve.libro.serve.Serve object at 0x7f18401e8610>
2025-03-31 20:50:41 | INFO | dbgpt.component | Register component with name dbgpt_serve_libro and instance: <dbgpt_serve.libro.serve.Serve object at 0x7f18401e8610>
2025-03-31 20:50:41 | INFO | dbgpt.component | Register component with name dbgpt_serve_libro_service and instance: <dbgpt_serve.libro.service.service.Service object at 0x7f1840016710>
2025-03-31 20:50:41 | INFO | dbgpt.component | Register component with name dbgpt_serve_libro_service and instance: <dbgpt_serve.libro.service.service.Service object at 0x7f1840016710>
2025-03-31 20:50:41 | INFO | dbgpt.component | Register component with name dbgpt_serve_model and instance: <dbgpt_serve.model.serve.Serve object at 0x7f1840016830>
2025-03-31 20:50:41 | INFO | dbgpt.component | Register component with name dbgpt_serve_model and instance: <dbgpt_serve.model.serve.Serve object at 0x7f1840016830>
2025-03-31 20:50:41 | INFO | dbgpt.component | Register component with name dbgpt_serve_model_service and instance: <dbgpt_serve.model.service.service.Service object at 0x7f1840016a70>
2025-03-31 20:50:41 | INFO | dbgpt.component | Register component with name dbgpt_serve_model_service and instance: <dbgpt_serve.model.service.service.Service object at 0x7f1840016a70>
2025-03-31 20:50:41 | INFO | dbgpt.component | Register component with name base_dbgpt_component and instance: <dbgpt.util.code.server.CodeServer object at 0x7f1840073820>
2025-03-31 20:50:41 | INFO | dbgpt.component | Register component with name base_dbgpt_component and instance: <dbgpt.util.code.server.CodeServer object at 0x7f1840073820>
2025-03-31 20:50:42 | WARNING | dbgpt.util._db_migration_utils | Initialize and upgrade database metadata with alembic, just run this in your development environment, if you deploy this in production environment, please run webserver with --disable_alembic_upgrade(`python dbgpt/app/dbgpt_server.py --disable_alembic_upgrade`).
we suggest you to use `dbgpt db migration` to initialize and upgrade database metadata with alembic, your can run `dbgpt db migration --help` to get more information.
2025-03-31 20:50:42 | INFO | alembic.runtime.migration | Context impl SQLiteImpl.
2025-03-31 20:50:42 | INFO | alembic.runtime.migration | Will assume non-transactional DDL.
2025-03-31 20:50:42 | INFO | dbgpt.util._db_migration_utils | Migration versions and their file paths:
========================================Migration versions========================================

c91048d5a6b5 (current): New migration (Path: /home/DB-GPT/pilot/meta_data/alembic/versions/c91048d5a6b5_new_migration.py)
77cb31a83832 : New migration (Path: /home/DB-GPT/pilot/meta_data/alembic/versions/77cb31a83832_new_migration.py)
==========================================================================================
2025-03-31 20:50:42 | INFO | alembic.runtime.migration | Context impl SQLiteImpl.
2025-03-31 20:50:42 | INFO | alembic.runtime.migration | Will assume non-transactional DDL.
2025-03-31 20:50:42 | INFO | alembic.runtime.migration | Context impl SQLiteImpl.
2025-03-31 20:50:42 | INFO | alembic.runtime.migration | Will assume non-transactional DDL.
2025-03-31 20:50:42 | INFO | dbgpt.util._db_migration_utils | alembic migration current revision: c91048d5a6b5, latest revision: c91048d5a6b5
2025-03-31 20:50:42 | INFO | alembic.runtime.migration | Context impl SQLiteImpl.
2025-03-31 20:50:42 | INFO | alembic.runtime.migration | Will assume non-transactional DDL.
2025-03-31 20:50:45 | INFO | alembic.runtime.migration | Context impl SQLiteImpl.
2025-03-31 20:50:45 | INFO | alembic.runtime.migration | Will assume non-transactional DDL.
2025-03-31 20:50:45 | INFO | alembic.runtime.migration | Running upgrade c91048d5a6b5 -> b57d83cdc260, New migration
2025-03-31 20:50:45 | INFO | dbgpt.component | Register component with name dbgpt_file_storage_client and instance: <dbgpt.core.interface.file.FileStorageClient object at 0x7f183e99b670>
2025-03-31 20:50:45 | INFO | dbgpt.component | Register component with name dbgpt_file_storage_client and instance: <dbgpt.core.interface.file.FileStorageClient object at 0x7f183e99b670>
2025-03-31 20:50:45 | INFO | dbgpt_app.dbgpt_server | Model Unified Deployment Mode, run all services in the same process
2025-03-31 20:50:45 | INFO | dbgpt_app.dbgpt_server | Model Unified Deployment Mode, run all services in the same process
2025-03-31 20:50:45 | INFO | dbgpt.model.cluster.worker.manager | Register WorkerManager dbgpt_worker_manager_factory
2025-03-31 20:50:45 | INFO | dbgpt.model.cluster.worker.manager | Register WorkerManager dbgpt_worker_manager_factory
2025-03-31 20:50:45 | INFO | dbgpt.component | Register component with name dbgpt_worker_manager_factory and instance: <dbgpt.model.cluster.worker.manager._DefaultWorkerManagerFactory object at 0x7f183e83fc10>
2025-03-31 20:50:45 | INFO | dbgpt.component | Register component with name dbgpt_worker_manager_factory and instance: <dbgpt.model.cluster.worker.manager._DefaultWorkerManagerFactory object at 0x7f183e83fc10>
2025-03-31 20:50:45 | INFO | dbgpt.model.cluster.worker.manager | Worker params: 

=========================== ModelWorkerParameters ===========================

host: 0.0.0.0
port: 5670
daemon: False
log: 

=========================== LoggingParameters ===========================

level: INFO
file: None

======================================================================


trace: None
worker_type: None
worker_class: None
standalone: True
register: True
worker_register_host: None
controller_addr: None
send_heartbeat: True
heartbeat_interval: 20

======================================================================


2025-03-31 20:50:45 | INFO | dbgpt.model.cluster.worker.manager | Worker params: 

=========================== ModelWorkerParameters ===========================

host: 0.0.0.0
port: 5670
daemon: False
log: 

=========================== LoggingParameters ===========================

level: INFO
file: None

======================================================================


trace: None
worker_type: None
worker_class: None
standalone: True
register: True
worker_register_host: None
controller_addr: None
send_heartbeat: True
heartbeat_interval: 20

======================================================================


2025-03-31 20:50:45 | INFO | dbgpt.model.cluster.worker.manager | Run WorkerManager with standalone mode, controller_addr: http://127.0.0.1:5670
2025-03-31 20:50:45 | INFO | dbgpt.model.cluster.worker.manager | Run WorkerManager with standalone mode, controller_addr: http://127.0.0.1:5670
2025-03-31 20:50:45 | INFO | dbgpt.model.adapter.model_adapter | Current model Qwen/QwQ-32B use new adapter <CommonModelAdapter model_name=Qwen/QwQ-32B model_path=/home/DB-GPT/models/Qwen/QwQ-32B>
2025-03-31 20:50:45 | INFO | dbgpt.model.adapter.model_adapter | Current model Qwen/QwQ-32B use new adapter <CommonModelAdapter model_name=Qwen/QwQ-32B model_path=/home/DB-GPT/models/Qwen/QwQ-32B>
2025-03-31 20:50:45 | INFO | dbgpt.model.cluster.worker.default_worker | model_name: Qwen/QwQ-32B, model_path: /home/DB-GPT/models/Qwen/QwQ-32B, model_param_class: <class 'dbgpt.model.adapter.hf_adapter.HFLLMDeployModelParameters'>
2025-03-31 20:50:45 | WARNING | dbgpt.util.api_utils | Health check failed for http://127.0.0.1:5670, error: HTTPConnectionPool(host='127.0.0.1', port=5670): Max retries exceeded with url: /api/health (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f183e8b5870>: Failed to establish a new connection: [Errno 111] Connection refused'))
2025-03-31 20:50:45 | INFO | dbgpt.model.cluster.worker.default_worker | model_name: Qwen/QwQ-32B, model_path: /home/DB-GPT/models/Qwen/QwQ-32B, model_param_class: <class 'dbgpt.model.adapter.hf_adapter.HFLLMDeployModelParameters'>
2025-03-31 20:50:45 | WARNING | dbgpt.util.api_utils | Health check failed for http://127.0.0.1:5670, error: HTTPConnectionPool(host='127.0.0.1', port=5670): Max retries exceeded with url: /api/health (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f183e8b5870>: Failed to establish a new connection: [Errno 111] Connection refused'))
2025-03-31 20:50:45 | INFO | dbgpt.model.cluster.worker.manager | Init empty instances list for Qwen/QwQ-32B@llm
2025-03-31 20:50:45 | INFO | dbgpt.model.cluster.worker.manager | Init empty instances list for Qwen/QwQ-32B@llm
2025-03-31 20:50:45 | INFO | dbgpt.model.cluster.worker.manager | Start local embedding worker with embedding parameters


=========================== ModelWorkerParameters ===========================

host: 0.0.0.0
port: 8001
daemon: False
log: 

=========================== LoggingParameters ===========================

level: ${env:DBGPT_LOG_LEVEL:-INFO}
file: None

======================================================================


trace: None
worker_type: text2vec
worker_class: None
standalone: False
register: True
worker_register_host: None
controller_addr: None
send_heartbeat: True
heartbeat_interval: 20

======================================================================


2025-03-31 20:50:45 | INFO | dbgpt.model.cluster.worker.manager | Start local embedding worker with embedding parameters


=========================== ModelWorkerParameters ===========================

host: 0.0.0.0
port: 8001
daemon: False
log: 

=========================== LoggingParameters ===========================

level: ${env:DBGPT_LOG_LEVEL:-INFO}
file: None

======================================================================


trace: None
worker_type: text2vec
worker_class: None
standalone: False
register: True
worker_register_host: None
controller_addr: None
send_heartbeat: True
heartbeat_interval: 20

======================================================================


2025-03-31 20:50:45 | INFO | dbgpt.model.cluster.worker.manager | Init empty instances list for BAAI/bge-large-zh-v1.5@text2vec
2025-03-31 20:50:45 | INFO | dbgpt.model.cluster.worker.manager | Init empty instances list for BAAI/bge-large-zh-v1.5@text2vec
2025-03-31 20:50:45 | INFO | dbgpt.util.dbgpts.loader | Found 0 dbgpts packages from /root/.dbgpts/packages/13f94a500b3b8b8477e6f87356068c15
2025-03-31 20:50:45 | INFO | dbgpt_serve.flow.service.compat_service | Found compat file: 0.7.0, use latest: 0.7.0
2025-03-31 20:50:48 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/awel_flow_ui_components.py
2025-03-31 20:50:48 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/awel_flow_ui_components.py
2025-03-31 20:50:48 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/awel_flow_ui_components.py
2025-03-31 20:50:48 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_chat_dag_example.py
2025-03-31 20:50:48 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_chat_dag_example.py
2025-03-31 20:50:48 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_chat_dag_example.py
2025-03-31 20:50:48 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_dag_example) from mod <module 'unusual_prefix_7f93a289b452e786f74233daa5a969e1fd501b71_simple_chat_dag_example' from '/home/DB-GPT/examples/awel/simple_chat_dag_example.py'> and model file /home/DB-GPT/examples/awel/simple_chat_dag_example.py
2025-03-31 20:50:48 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_dag_example) from mod <module 'unusual_prefix_7f93a289b452e786f74233daa5a969e1fd501b71_simple_chat_dag_example' from '/home/DB-GPT/examples/awel/simple_chat_dag_example.py'> and model file /home/DB-GPT/examples/awel/simple_chat_dag_example.py
2025-03-31 20:50:48 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_dag_example) from mod <module 'unusual_prefix_7f93a289b452e786f74233daa5a969e1fd501b71_simple_chat_dag_example' from '/home/DB-GPT/examples/awel/simple_chat_dag_example.py'> and model file /home/DB-GPT/examples/awel/simple_chat_dag_example.py
2025-03-31 20:50:48 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_chat_history_example.py
2025-03-31 20:50:48 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_chat_history_example.py
2025-03-31 20:50:48 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_chat_history_example.py
2025-03-31 20:50:48 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_chat_history) from mod <module 'unusual_prefix_bac1fcf83805e9d79523500ef9de83e5115f69a1_simple_chat_history_example' from '/home/DB-GPT/examples/awel/simple_chat_history_example.py'> and model file /home/DB-GPT/examples/awel/simple_chat_history_example.py
2025-03-31 20:50:48 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_chat_history) from mod <module 'unusual_prefix_bac1fcf83805e9d79523500ef9de83e5115f69a1_simple_chat_history_example' from '/home/DB-GPT/examples/awel/simple_chat_history_example.py'> and model file /home/DB-GPT/examples/awel/simple_chat_history_example.py
2025-03-31 20:50:48 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_chat_history) from mod <module 'unusual_prefix_bac1fcf83805e9d79523500ef9de83e5115f69a1_simple_chat_history_example' from '/home/DB-GPT/examples/awel/simple_chat_history_example.py'> and model file /home/DB-GPT/examples/awel/simple_chat_history_example.py
2025-03-31 20:50:48 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_dag_example.py
2025-03-31 20:50:48 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_dag_example.py
2025-03-31 20:50:48 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_dag_example.py
2025-03-31 20:50:48 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=simple_dag_example) from mod <module 'unusual_prefix_fd02d664f9a189c3be5c5599808ca1d1153a6edf_simple_dag_example' from '/home/DB-GPT/examples/awel/simple_dag_example.py'> and model file /home/DB-GPT/examples/awel/simple_dag_example.py
2025-03-31 20:50:48 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=simple_dag_example) from mod <module 'unusual_prefix_fd02d664f9a189c3be5c5599808ca1d1153a6edf_simple_dag_example' from '/home/DB-GPT/examples/awel/simple_dag_example.py'> and model file /home/DB-GPT/examples/awel/simple_dag_example.py
2025-03-31 20:50:48 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=simple_dag_example) from mod <module 'unusual_prefix_fd02d664f9a189c3be5c5599808ca1d1153a6edf_simple_dag_example' from '/home/DB-GPT/examples/awel/simple_dag_example.py'> and model file /home/DB-GPT/examples/awel/simple_dag_example.py
2025-03-31 20:50:48 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/data_analyst_assistant.py
2025-03-31 20:50:48 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/data_analyst_assistant.py
2025-03-31 20:50:48 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/data_analyst_assistant.py
2025-03-31 20:50:48 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_data_analyst_assistant) from mod <module 'unusual_prefix_26267e42ed6b36891895191fc865906fc5c9903c_data_analyst_assistant' from '/home/DB-GPT/examples/awel/data_analyst_assistant.py'> and model file /home/DB-GPT/examples/awel/data_analyst_assistant.py
2025-03-31 20:50:48 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_data_analyst_assistant) from mod <module 'unusual_prefix_26267e42ed6b36891895191fc865906fc5c9903c_data_analyst_assistant' from '/home/DB-GPT/examples/awel/data_analyst_assistant.py'> and model file /home/DB-GPT/examples/awel/data_analyst_assistant.py
2025-03-31 20:50:48 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_data_analyst_assistant) from mod <module 'unusual_prefix_26267e42ed6b36891895191fc865906fc5c9903c_data_analyst_assistant' from '/home/DB-GPT/examples/awel/data_analyst_assistant.py'> and model file /home/DB-GPT/examples/awel/data_analyst_assistant.py
2025-03-31 20:50:48 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_llm_client_example.py
2025-03-31 20:50:48 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_llm_client_example.py
2025-03-31 20:50:48 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_llm_client_example.py
2025-03-31 20:50:48 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_llm_client_generate) from mod <module 'unusual_prefix_fa5740ee7c9c6d005009382b43e55de50b9eda0d_simple_llm_client_example' from '/home/DB-GPT/examples/awel/simple_llm_client_example.py'> and model file /home/DB-GPT/examples/awel/simple_llm_client_example.py
2025-03-31 20:50:48 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_llm_client_generate) from mod <module 'unusual_prefix_fa5740ee7c9c6d005009382b43e55de50b9eda0d_simple_llm_client_example' from '/home/DB-GPT/examples/awel/simple_llm_client_example.py'> and model file /home/DB-GPT/examples/awel/simple_llm_client_example.py
2025-03-31 20:50:48 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_llm_client_generate) from mod <module 'unusual_prefix_fa5740ee7c9c6d005009382b43e55de50b9eda0d_simple_llm_client_example' from '/home/DB-GPT/examples/awel/simple_llm_client_example.py'> and model file /home/DB-GPT/examples/awel/simple_llm_client_example.py
2025-03-31 20:50:48 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_llm_client_count_token) from mod <module 'unusual_prefix_fa5740ee7c9c6d005009382b43e55de50b9eda0d_simple_llm_client_example' from '/home/DB-GPT/examples/awel/simple_llm_client_example.py'> and model file /home/DB-GPT/examples/awel/simple_llm_client_example.py
2025-03-31 20:50:48 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_llm_client_count_token) from mod <module 'unusual_prefix_fa5740ee7c9c6d005009382b43e55de50b9eda0d_simple_llm_client_example' from '/home/DB-GPT/examples/awel/simple_llm_client_example.py'> and model file /home/DB-GPT/examples/awel/simple_llm_client_example.py
2025-03-31 20:50:48 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_llm_client_count_token) from mod <module 'unusual_prefix_fa5740ee7c9c6d005009382b43e55de50b9eda0d_simple_llm_client_example' from '/home/DB-GPT/examples/awel/simple_llm_client_example.py'> and model file /home/DB-GPT/examples/awel/simple_llm_client_example.py
2025-03-31 20:50:48 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_nl_schema_sql_chart_example.py
2025-03-31 20:50:48 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_nl_schema_sql_chart_example.py
2025-03-31 20:50:48 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_nl_schema_sql_chart_example.py
2025-03-31 20:50:49 | INFO | dbgpt.datasource.rdbms.base | Closing RDBMS connector resources...
2025-03-31 20:50:49 | INFO | dbgpt.datasource.rdbms.base | Closing RDBMS connector resources...
2025-03-31 20:50:49 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=simple_nl_schema_sql_chart_example) from mod <module 'unusual_prefix_aa5ab7ad0c92b4d4895d19a5e92366b8877d079f_simple_nl_schema_sql_chart_example' from '/home/DB-GPT/examples/awel/simple_nl_schema_sql_chart_example.py'> and model file /home/DB-GPT/examples/awel/simple_nl_schema_sql_chart_example.py
2025-03-31 20:50:49 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=simple_nl_schema_sql_chart_example) from mod <module 'unusual_prefix_aa5ab7ad0c92b4d4895d19a5e92366b8877d079f_simple_nl_schema_sql_chart_example' from '/home/DB-GPT/examples/awel/simple_nl_schema_sql_chart_example.py'> and model file /home/DB-GPT/examples/awel/simple_nl_schema_sql_chart_example.py
2025-03-31 20:50:49 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=simple_nl_schema_sql_chart_example) from mod <module 'unusual_prefix_aa5ab7ad0c92b4d4895d19a5e92366b8877d079f_simple_nl_schema_sql_chart_example' from '/home/DB-GPT/examples/awel/simple_nl_schema_sql_chart_example.py'> and model file /home/DB-GPT/examples/awel/simple_nl_schema_sql_chart_example.py
2025-03-31 20:50:49 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_rag_rewrite_example.py
2025-03-31 20:50:49 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_rag_rewrite_example.py
2025-03-31 20:50:49 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_rag_rewrite_example.py
2025-03-31 20:50:49 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_rag_rewrite_example) from mod <module 'unusual_prefix_bec60c6069e118fc06fbb667d7e76344b458c939_simple_rag_rewrite_example' from '/home/DB-GPT/examples/awel/simple_rag_rewrite_example.py'> and model file /home/DB-GPT/examples/awel/simple_rag_rewrite_example.py
2025-03-31 20:50:49 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_rag_rewrite_example) from mod <module 'unusual_prefix_bec60c6069e118fc06fbb667d7e76344b458c939_simple_rag_rewrite_example' from '/home/DB-GPT/examples/awel/simple_rag_rewrite_example.py'> and model file /home/DB-GPT/examples/awel/simple_rag_rewrite_example.py
2025-03-31 20:50:49 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_rag_rewrite_example) from mod <module 'unusual_prefix_bec60c6069e118fc06fbb667d7e76344b458c939_simple_rag_rewrite_example' from '/home/DB-GPT/examples/awel/simple_rag_rewrite_example.py'> and model file /home/DB-GPT/examples/awel/simple_rag_rewrite_example.py
2025-03-31 20:50:49 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_rag_summary_example.py
2025-03-31 20:50:49 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_rag_summary_example.py
2025-03-31 20:50:49 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_rag_summary_example.py
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_rag_summary_example) from mod <module 'unusual_prefix_14e17e50bbe0790c364d347efeda2ebbb9628315_simple_rag_summary_example' from '/home/DB-GPT/examples/awel/simple_rag_summary_example.py'> and model file /home/DB-GPT/examples/awel/simple_rag_summary_example.py
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_rag_summary_example) from mod <module 'unusual_prefix_14e17e50bbe0790c364d347efeda2ebbb9628315_simple_rag_summary_example' from '/home/DB-GPT/examples/awel/simple_rag_summary_example.py'> and model file /home/DB-GPT/examples/awel/simple_rag_summary_example.py
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_rag_summary_example) from mod <module 'unusual_prefix_14e17e50bbe0790c364d347efeda2ebbb9628315_simple_rag_summary_example' from '/home/DB-GPT/examples/awel/simple_rag_summary_example.py'> and model file /home/DB-GPT/examples/awel/simple_rag_summary_example.py
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=729e23f8-8930-4d9a-87b0-b105f6cfbe67)
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=729e23f8-8930-4d9a-87b0-b105f6cfbe67)
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7f17ef5796c0>(AWEL_trigger_route__examples_simple_chat), endpoint: /examples/simple_chat, methods: ['POST']
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7f17ef5796c0>(AWEL_trigger_route__examples_simple_chat), endpoint: /examples/simple_chat, methods: ['POST']
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7f17ef5796c0>(AWEL_trigger_route__examples_simple_chat), endpoint: /examples/simple_chat, methods: ['POST']
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/simple_chat
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/simple_chat
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/simple_chat
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7f1841fabe80> to prefix path /api/v1/awel/trigger
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7f1841fabe80> to prefix path /api/v1/awel/trigger
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=32b069b7-4f8b-45da-a4e4-6884c1474f20)
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=32b069b7-4f8b-45da-a4e4-6884c1474f20)
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7f17ef57a3b0>(AWEL_trigger_route__examples_simple_history_multi_round_chat_completions), endpoint: /examples/simple_history/multi_round/chat/completions, methods: ['POST']
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7f17ef57a3b0>(AWEL_trigger_route__examples_simple_history_multi_round_chat_completions), endpoint: /examples/simple_history/multi_round/chat/completions, methods: ['POST']
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7f17ef57a3b0>(AWEL_trigger_route__examples_simple_history_multi_round_chat_completions), endpoint: /examples/simple_history/multi_round/chat/completions, methods: ['POST']
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/simple_history/multi_round/chat/completions
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/simple_history/multi_round/chat/completions
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/simple_history/multi_round/chat/completions
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7f1841fabe80> to prefix path /api/v1/awel/trigger
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7f1841fabe80> to prefix path /api/v1/awel/trigger
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=07a86be3-4d06-4012-a8d7-7fc09addda11)
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=07a86be3-4d06-4012-a8d7-7fc09addda11)
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function_get at 0x7f17ef579ea0>(AWEL_trigger_route__examples_hello), endpoint: /examples/hello, methods: ['GET']
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function_get at 0x7f17ef579ea0>(AWEL_trigger_route__examples_hello), endpoint: /examples/hello, methods: ['GET']
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function_get at 0x7f17ef579ea0>(AWEL_trigger_route__examples_hello), endpoint: /examples/hello, methods: ['GET']
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/hello
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/hello
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/hello
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7f1841fabe80> to prefix path /api/v1/awel/trigger
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7f1841fabe80> to prefix path /api/v1/awel/trigger
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=3cabc197-5543-405a-ae17-123f12745137)
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=3cabc197-5543-405a-ae17-123f12745137)
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7f17ef57b490>(AWEL_trigger_route__examples_data_analyst_copilot), endpoint: /examples/data_analyst/copilot, methods: ['POST']
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7f17ef57b490>(AWEL_trigger_route__examples_data_analyst_copilot), endpoint: /examples/data_analyst/copilot, methods: ['POST']
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7f17ef57b490>(AWEL_trigger_route__examples_data_analyst_copilot), endpoint: /examples/data_analyst/copilot, methods: ['POST']
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/data_analyst/copilot
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/data_analyst/copilot
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/data_analyst/copilot
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7f1841fabe80> to prefix path /api/v1/awel/trigger
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7f1841fabe80> to prefix path /api/v1/awel/trigger
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=f433148f-3ece-4f60-ad3e-7d1994605163)
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=f433148f-3ece-4f60-ad3e-7d1994605163)
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7f17ef57b520>(AWEL_trigger_route__examples_simple_client_chat_completions), endpoint: /examples/simple_client/chat/completions, methods: ['POST']
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7f17ef57b520>(AWEL_trigger_route__examples_simple_client_chat_completions), endpoint: /examples/simple_client/chat/completions, methods: ['POST']
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7f17ef57b520>(AWEL_trigger_route__examples_simple_client_chat_completions), endpoint: /examples/simple_client/chat/completions, methods: ['POST']
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/simple_client/chat/completions
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/simple_client/chat/completions
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/simple_client/chat/completions
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7f1841fabe80> to prefix path /api/v1/awel/trigger
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7f1841fabe80> to prefix path /api/v1/awel/trigger
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=73f3c1ec-78c1-45ef-bad0-1128a9782b01)
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=73f3c1ec-78c1-45ef-bad0-1128a9782b01)
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7f17ef5c4c10>(AWEL_trigger_route__examples_simple_client_count_token), endpoint: /examples/simple_client/count_token, methods: ['POST']
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7f17ef5c4c10>(AWEL_trigger_route__examples_simple_client_count_token), endpoint: /examples/simple_client/count_token, methods: ['POST']
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7f17ef5c4c10>(AWEL_trigger_route__examples_simple_client_count_token), endpoint: /examples/simple_client/count_token, methods: ['POST']
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/simple_client/count_token
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/simple_client/count_token
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/simple_client/count_token
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7f1841fabe80> to prefix path /api/v1/awel/trigger
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7f1841fabe80> to prefix path /api/v1/awel/trigger
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=da428146-2982-4af5-bf93-655ee72e79fa)
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=da428146-2982-4af5-bf93-655ee72e79fa)
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7f17ef57bbe0>(AWEL_trigger_route__examples_rag_schema_linking), endpoint: /examples/rag/schema_linking, methods: ['POST']
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7f17ef57bbe0>(AWEL_trigger_route__examples_rag_schema_linking), endpoint: /examples/rag/schema_linking, methods: ['POST']
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7f17ef57bbe0>(AWEL_trigger_route__examples_rag_schema_linking), endpoint: /examples/rag/schema_linking, methods: ['POST']
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/rag/schema_linking
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/rag/schema_linking
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/rag/schema_linking
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7f1841fabe80> to prefix path /api/v1/awel/trigger
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7f1841fabe80> to prefix path /api/v1/awel/trigger
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=7091d722-9240-4e89-b487-b0ddfece1a1c)
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=7091d722-9240-4e89-b487-b0ddfece1a1c)
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7f17ef5c41f0>(AWEL_trigger_route__examples_rag_rewrite), endpoint: /examples/rag/rewrite, methods: ['POST']
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7f17ef5c41f0>(AWEL_trigger_route__examples_rag_rewrite), endpoint: /examples/rag/rewrite, methods: ['POST']
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7f17ef5c41f0>(AWEL_trigger_route__examples_rag_rewrite), endpoint: /examples/rag/rewrite, methods: ['POST']
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/rag/rewrite
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/rag/rewrite
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/rag/rewrite
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7f1841fabe80> to prefix path /api/v1/awel/trigger
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7f1841fabe80> to prefix path /api/v1/awel/trigger
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=82ecae83-9e18-4964-aaef-22812fb3c552)
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=82ecae83-9e18-4964-aaef-22812fb3c552)
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7f17ef5c5fc0>(AWEL_trigger_route__examples_rag_summary), endpoint: /examples/rag/summary, methods: ['POST']
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7f17ef5c5fc0>(AWEL_trigger_route__examples_rag_summary), endpoint: /examples/rag/summary, methods: ['POST']
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7f17ef5c5fc0>(AWEL_trigger_route__examples_rag_summary), endpoint: /examples/rag/summary, methods: ['POST']
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/rag/summary
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/rag/summary
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/rag/summary
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7f1841fabe80> to prefix path /api/v1/awel/trigger
2025-03-31 20:50:50 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7f1841fabe80> to prefix path /api/v1/awel/trigger
2025-03-31 20:50:50 | WARNING | dbgpt.util.api_utils | Health check failed for http://127.0.0.1:5670, error: HTTPConnectionPool(host='127.0.0.1', port=5670): Max retries exceeded with url: /api/health (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f17ef3ac160>: Failed to establish a new connection: [Errno 111] Connection refused'))
2025-03-31 20:50:50 | WARNING | dbgpt.util.api_utils | Health check failed for http://127.0.0.1:5670, error: HTTPConnectionPool(host='127.0.0.1', port=5670): Max retries exceeded with url: /api/health (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f17ef3ac160>: Failed to establish a new connection: [Errno 111] Connection refused'))
2025-03-31 20:50:50 | INFO | dbgpt.model.cluster.worker.manager | Begin start all worker, apply_req: None
2025-03-31 20:50:50 | INFO | dbgpt.model.cluster.worker.manager | Begin start all worker, apply_req: None
2025-03-31 20:50:50 | INFO | dbgpt.model.cluster.worker.manager | Apply req: None, apply_func: <function LocalWorkerManager._start_all_worker.<locals>._start_worker at 0x7f17ef3b8310>
2025-03-31 20:50:50 | INFO | dbgpt.model.cluster.worker.manager | Apply req: None, apply_func: <function LocalWorkerManager._start_all_worker.<locals>._start_worker at 0x7f17ef3b8310>
2025-03-31 20:50:50 | INFO | dbgpt.model.cluster.worker.manager | Apply to all workers
2025-03-31 20:50:50 | INFO | dbgpt.model.cluster.worker.manager | Apply to all workers
2025-03-31 20:50:50 | INFO | dbgpt.model.cluster.worker.default_worker | Begin load model, model params: 

=========================== HFLLMDeployModelParameters ===========================

name: Qwen/QwQ-32B
provider: hf
verbose: False
concurrency: 5
backend: None
prompt_template: None
context_length: None
reasoning_model: None
path: models/Qwen/QwQ-32B
device: None
trust_remote_code: True
quantization: None
low_cpu_mem_usage: None
num_gpus: None
max_gpu_memory: None
torch_dtype: None
attn_implementation: None

======================================================================


2025-03-31 20:50:50 | INFO | dbgpt.model.cluster.worker.default_worker | Begin load model, model params: 

=========================== HFLLMDeployModelParameters ===========================

name: Qwen/QwQ-32B
provider: hf
verbose: False
concurrency: 5
backend: None
prompt_template: None
context_length: None
reasoning_model: None
path: models/Qwen/QwQ-32B
device: None
trust_remote_code: True
quantization: None
low_cpu_mem_usage: None
num_gpus: None
max_gpu_memory: None
torch_dtype: None
attn_implementation: None

======================================================================


2025-03-31 20:50:52 | INFO | dbgpt.model.adapter.hf_adapter | Load model from /home/DB-GPT/models/Qwen/QwQ-32B, from_pretrained_kwargs: {'device_map': 'auto', 'max_memory': {0: '27GiB', 1: '27GiB', 2: '27GiB', 3: '27GiB', 4: '27GiB', 5: '27GiB', 6: '27GiB', 7: '27GiB'}, 'torch_dtype': torch.float16, 'low_cpu_mem_usage': True}
2025-03-31 20:50:52 | INFO | dbgpt.model.adapter.hf_adapter | Load model from /home/DB-GPT/models/Qwen/QwQ-32B, from_pretrained_kwargs: {'device_map': 'auto', 'max_memory': {0: '27GiB', 1: '27GiB', 2: '27GiB', 3: '27GiB', 4: '27GiB', 5: '27GiB', 6: '27GiB', 7: '27GiB'}, 'torch_dtype': torch.float16, 'low_cpu_mem_usage': True}
2025-03-31 20:50:54 | WARNING | transformers.models.qwen2.modeling_qwen2 | Sliding Window Attention is enabled but not implemented for `sdpa`; unexpected results may be encountered.
2025-03-31 20:50:54 | WARNING | transformers.models.qwen2.modeling_qwen2 | Sliding Window Attention is enabled but not implemented for `sdpa`; unexpected results may be encountered.
2025-03-31 20:50:55 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:0
2025-03-31 20:50:55 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:0
2025-03-31 20:50:55 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:1
2025-03-31 20:50:55 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:1
2025-03-31 20:50:55 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:2
2025-03-31 20:50:55 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:2
2025-03-31 20:50:55 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:3
2025-03-31 20:50:55 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:3
2025-03-31 20:50:55 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:4
2025-03-31 20:50:55 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:4
2025-03-31 20:50:55 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:5
2025-03-31 20:50:55 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:5
2025-03-31 20:50:55 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:6
2025-03-31 20:50:55 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:6
2025-03-31 20:50:55 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:7
2025-03-31 20:50:55 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:7
2025-03-31 20:50:55 | INFO | dbgpt.model.cluster.worker.embedding_worker | Load embeddings model: BAAI/bge-large-zh-v1.5
2025-03-31 20:50:55 | INFO | datasets | PyTorch version 2.4.1+das.opt2.dtk2504 available.
2025-03-31 20:50:55 | INFO | datasets | Duckdb version 1.2.0 available.
2025-03-31 20:50:55 | INFO | sentence_transformers.SentenceTransformer | Use pytorch device_name: cuda
2025-03-31 20:50:55 | INFO | sentence_transformers.SentenceTransformer | Load pretrained SentenceTransformer: /home/DB-GPT/models/BAAI/bge-large-zh-v1.5
2025-03-31 20:50:56 | ERROR | dbgpt.model.cluster.worker.manager | Error starting worker manager: model Qwen/QwQ-32B@hf(172.17.0.3:5670) start failed, Traceback (most recent call last):
  File "/home/DB-GPT/packages/dbgpt-core/src/dbgpt/model/cluster/worker/manager.py", line 631, in _start_worker
    await self.run_blocking_func(
  File "/home/DB-GPT/packages/dbgpt-core/src/dbgpt/model/cluster/worker/manager.py", line 146, in run_blocking_func
    return await loop.run_in_executor(self.executor, func, *args)
  File "/usr/lib/python3.10/concurrent/futures/thread.py", line 58, in run
    result = self.fn(*self.args, **self.kwargs)
  File "/home/DB-GPT/packages/dbgpt-core/src/dbgpt/model/cluster/worker/default_worker.py", line 121, in start
    self.model, self.tokenizer = self.ml.loader_with_params(
  File "/home/DB-GPT/packages/dbgpt-core/src/dbgpt/model/adapter/loader.py", line 70, in loader_with_params
    return llm_adapter.load_from_params(model_params)
  File "/home/DB-GPT/packages/dbgpt-core/src/dbgpt/model/adapter/hf_adapter.py", line 226, in load_from_params
    return huggingface_loader(self, params)
  File "/home/DB-GPT/packages/dbgpt-core/src/dbgpt/model/adapter/loader.py", line 172, in huggingface_loader
    model, tokenizer = llm_adapter.load(model_path, kwargs)
  File "/home/DB-GPT/packages/dbgpt-core/src/dbgpt/model/adapter/hf_adapter.py", line 211, in load
    model = AutoModelForCausalLM.from_pretrained(
  File "/usr/local/lib/python3.10/dist-packages/transformers/models/auto/auto_factory.py", line 564, in from_pretrained
    return model_class.from_pretrained(
  File "/usr/local/lib/python3.10/dist-packages/transformers/modeling_utils.py", line 262, in _wrapper
    return func(*args, **kwargs)
  File "/usr/local/lib/python3.10/dist-packages/transformers/modeling_utils.py", line 4319, in from_pretrained
    ) = cls._load_pretrained_model(
  File "/usr/local/lib/python3.10/dist-packages/transformers/modeling_utils.py", line 4873, in _load_pretrained_model
    state_dict = load_state_dict(
  File "/usr/local/lib/python3.10/dist-packages/transformers/modeling_utils.py", line 525, in load_state_dict
    with safe_open(checkpoint_file, framework="pt") as f:
safetensors_rust.SafetensorError: Error while deserializing header: MetadataIncompleteBuffer

;model BAAI/bge-large-zh-v1.5@hf(172.17.0.3:5670) start successfully
2025-03-31 20:50:56 | ERROR | dbgpt.model.cluster.worker.manager | Error starting worker manager: model Qwen/QwQ-32B@hf(172.17.0.3:5670) start failed, Traceback (most recent call last):
  File "/home/DB-GPT/packages/dbgpt-core/src/dbgpt/model/cluster/worker/manager.py", line 631, in _start_worker
    await self.run_blocking_func(
  File "/home/DB-GPT/packages/dbgpt-core/src/dbgpt/model/cluster/worker/manager.py", line 146, in run_blocking_func
    return await loop.run_in_executor(self.executor, func, *args)
  File "/usr/lib/python3.10/concurrent/futures/thread.py", line 58, in run
    result = self.fn(*self.args, **self.kwargs)
  File "/home/DB-GPT/packages/dbgpt-core/src/dbgpt/model/cluster/worker/default_worker.py", line 121, in start
    self.model, self.tokenizer = self.ml.loader_with_params(
  File "/home/DB-GPT/packages/dbgpt-core/src/dbgpt/model/adapter/loader.py", line 70, in loader_with_params
    return llm_adapter.load_from_params(model_params)
  File "/home/DB-GPT/packages/dbgpt-core/src/dbgpt/model/adapter/hf_adapter.py", line 226, in load_from_params
    return huggingface_loader(self, params)
  File "/home/DB-GPT/packages/dbgpt-core/src/dbgpt/model/adapter/loader.py", line 172, in huggingface_loader
    model, tokenizer = llm_adapter.load(model_path, kwargs)
  File "/home/DB-GPT/packages/dbgpt-core/src/dbgpt/model/adapter/hf_adapter.py", line 211, in load
    model = AutoModelForCausalLM.from_pretrained(
  File "/usr/local/lib/python3.10/dist-packages/transformers/models/auto/auto_factory.py", line 564, in from_pretrained
    return model_class.from_pretrained(
  File "/usr/local/lib/python3.10/dist-packages/transformers/modeling_utils.py", line 262, in _wrapper
    return func(*args, **kwargs)
  File "/usr/local/lib/python3.10/dist-packages/transformers/modeling_utils.py", line 4319, in from_pretrained
    ) = cls._load_pretrained_model(
  File "/usr/local/lib/python3.10/dist-packages/transformers/modeling_utils.py", line 4873, in _load_pretrained_model
    state_dict = load_state_dict(
  File "/usr/local/lib/python3.10/dist-packages/transformers/modeling_utils.py", line 525, in load_state_dict
    with safe_open(checkpoint_file, framework="pt") as f:
safetensors_rust.SafetensorError: Error while deserializing header: MetadataIncompleteBuffer

;model BAAI/bge-large-zh-v1.5@hf(172.17.0.3:5670) start successfully
2025-03-31 20:50:56 | INFO | dbgpt.model.cluster.worker.manager | Stop all workers
2025-03-31 20:50:56 | INFO | dbgpt.model.cluster.worker.manager | Stop all workers
2025-03-31 20:50:56 | INFO | dbgpt.model.cluster.worker.manager | Apply req: None, apply_func: <function LocalWorkerManager._stop_all_worker.<locals>._stop_worker at 0x7f1734083010>
2025-03-31 20:50:56 | INFO | dbgpt.model.cluster.worker.manager | Apply req: None, apply_func: <function LocalWorkerManager._stop_all_worker.<locals>._stop_worker at 0x7f1734083010>
2025-03-31 20:50:56 | INFO | dbgpt.model.cluster.worker.manager | Apply to all workers
2025-03-31 20:50:56 | INFO | dbgpt.model.cluster.worker.manager | Apply to all workers
2025-03-31 20:50:56 | WARNING | dbgpt.model.cluster.worker.default_worker | Model has been stopped!!
2025-03-31 20:50:56 | WARNING | dbgpt.model.cluster.worker.default_worker | Model has been stopped!!
2025-03-31 20:50:57 | WARNING | dbgpt.model.cluster.worker.manager | Stop worker, ignored exception from deregister_func: All connection attempts failed
2025-03-31 20:50:57 | WARNING | dbgpt.model.cluster.worker.manager | Stop worker, ignored exception from deregister_func: All connection attempts failed
2025-03-31 20:50:57 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:0
2025-03-31 20:50:57 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:0
2025-03-31 20:50:57 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:1
2025-03-31 20:50:57 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:1
2025-03-31 20:50:57 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:2
2025-03-31 20:50:57 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:2
2025-03-31 20:50:57 | WARNING | dbgpt.model.cluster.worker.manager | Stop worker, ignored exception from deregister_func: All connection attempts failed
2025-03-31 20:50:57 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:3
2025-03-31 20:50:57 | WARNING | dbgpt.model.cluster.worker.manager | Stop worker, ignored exception from deregister_func: All connection attempts failed
2025-03-31 20:50:57 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:3
2025-03-31 20:50:57 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:4
2025-03-31 20:50:57 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:4
2025-03-31 20:50:57 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:5
2025-03-31 20:50:57 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:5
2025-03-31 20:50:57 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:6
2025-03-31 20:50:57 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:6
2025-03-31 20:50:57 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:7
2025-03-31 20:50:57 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:7
2025-03-31 20:50:57 | WARNING | dbgpt.model.cluster.worker.manager | Stop worker, ignored exception from deregister_func: All connection attempts failed
2025-03-31 20:50:57 | WARNING | dbgpt.model.cluster.worker.manager | Stop worker, ignored exception from deregister_func: All connection attempts failed
2025-03-31 20:55:03 | INFO | dbgpt.component | Register component with name dbgpt_unified_metadata_db_manager_factory and instance: <dbgpt.storage.metadata.db_factory.UnifiedDBManagerFactory object at 0x7f6150e6cd00>
2025-03-31 20:55:03 | INFO | dbgpt.component | Register component with name dbgpt_unified_metadata_db_manager_factory and instance: <dbgpt.storage.metadata.db_factory.UnifiedDBManagerFactory object at 0x7f6150e6cd00>
2025-03-31 20:55:03 | INFO | dbgpt.datasource.rdbms.base | Closing RDBMS connector resources...
2025-03-31 20:55:03 | INFO | dbgpt.datasource.rdbms.base | Closing RDBMS connector resources...
2025-03-31 20:55:05 | INFO | dbgpt.component | Register component with name dbgpt_thread_pool_default and instance: <dbgpt.util.executor_utils.DefaultExecutorFactory object at 0x7f614dec3dc0>
2025-03-31 20:55:05 | INFO | dbgpt.component | Register component with name dbgpt_thread_pool_default and instance: <dbgpt.util.executor_utils.DefaultExecutorFactory object at 0x7f614dec3dc0>
2025-03-31 20:55:05 | INFO | dbgpt.component | Register component with name dbgpt_default_scheduler and instance: <dbgpt_app.initialization.scheduler.DefaultScheduler object at 0x7f614dec3400>
2025-03-31 20:55:05 | INFO | dbgpt.component | Register component with name dbgpt_default_scheduler and instance: <dbgpt_app.initialization.scheduler.DefaultScheduler object at 0x7f614dec3400>
2025-03-31 20:55:05 | INFO | dbgpt.component | Register component with name dbgpt_model_controller and instance: <dbgpt.model.cluster.controller.controller.ModelControllerAdapter object at 0x7f6b4263e260>
2025-03-31 20:55:05 | INFO | dbgpt.component | Register component with name dbgpt_model_controller and instance: <dbgpt.model.cluster.controller.controller.ModelControllerAdapter object at 0x7f6b4263e260>
2025-03-31 20:55:05 | INFO | dbgpt.component | Register component with name dbgpt_connector_manager and instance: <dbgpt_serve.datasource.manages.connector_manager.ConnectorManager object at 0x7f614dec3280>
2025-03-31 20:55:05 | INFO | dbgpt.component | Register component with name dbgpt_connector_manager and instance: <dbgpt_serve.datasource.manages.connector_manager.ConnectorManager object at 0x7f614dec3280>
2025-03-31 20:55:05 | INFO | dbgpt.component | Register component with name dbgpt_rag_storage_manager and instance: <dbgpt_serve.rag.storage_manager.StorageManager object at 0x7f614dec3340>
2025-03-31 20:55:05 | INFO | dbgpt.component | Register component with name dbgpt_rag_storage_manager and instance: <dbgpt_serve.rag.storage_manager.StorageManager object at 0x7f614dec3340>
2025-03-31 20:55:05 | INFO | dbgpt.component | Register component with name dbgpt_plugin_hub and instance: <dbgpt_serve.agent.hub.controller.ModulePlugin object at 0x7f614d9381f0>
2025-03-31 20:55:05 | INFO | dbgpt.component | Register component with name dbgpt_plugin_hub and instance: <dbgpt_serve.agent.hub.controller.ModulePlugin object at 0x7f614d9381f0>
2025-03-31 20:55:05 | INFO | dbgpt.component | Register component with name dbgpt_multi_agents and instance: <dbgpt_serve.agent.agents.controller.MultiAgents object at 0x7f614f6eb700>
2025-03-31 20:55:05 | INFO | dbgpt.component | Register component with name dbgpt_multi_agents and instance: <dbgpt_serve.agent.agents.controller.MultiAgents object at 0x7f614f6eb700>
2025-03-31 20:55:05 | INFO | dbgpt_app.initialization.embedding_component | Register remote RemoteEmbeddingFactory
2025-03-31 20:55:05 | INFO | dbgpt.component | Register component with name embedding_factory and instance: <dbgpt_app.initialization.embedding_component.RemoteEmbeddingFactory object at 0x7f614d9a8100>
2025-03-31 20:55:05 | INFO | dbgpt.component | Register component with name embedding_factory and instance: <dbgpt_app.initialization.embedding_component.RemoteEmbeddingFactory object at 0x7f614d9a8100>
2025-03-31 20:55:05 | INFO | dbgpt.component | Register component with name dbgpt_model_cache_manager and instance: <dbgpt.storage.cache.manager.LocalCacheManager object at 0x7f614d9a81f0>
2025-03-31 20:55:05 | INFO | dbgpt.component | Register component with name dbgpt_model_cache_manager and instance: <dbgpt.storage.cache.manager.LocalCacheManager object at 0x7f614d9a81f0>
2025-03-31 20:55:05 | INFO | dbgpt.component | Register component with name dbgpt_awel_trigger_manager and instance: <dbgpt.core.awel.trigger.trigger_manager.DefaultTriggerManager object at 0x7f614d97be20>
2025-03-31 20:55:05 | INFO | dbgpt.component | Register component with name dbgpt_awel_trigger_manager and instance: <dbgpt.core.awel.trigger.trigger_manager.DefaultTriggerManager object at 0x7f614d97be20>
2025-03-31 20:55:05 | INFO | dbgpt.component | Register component with name dbgpt_awel_dag_manager and instance: <dbgpt.core.awel.dag.dag_manager.DAGManager object at 0x7f614d97bc70>
2025-03-31 20:55:05 | INFO | dbgpt.component | Register component with name dbgpt_awel_dag_manager and instance: <dbgpt.core.awel.dag.dag_manager.DAGManager object at 0x7f614d97bc70>
2025-03-31 20:55:06 | INFO | dbgpt.component | Register component with name dbgpt_resource_manager and instance: <dbgpt.agent.resource.manage.ResourceManager object at 0x7f614d97bb20>
2025-03-31 20:55:06 | INFO | dbgpt.component | Register component with name dbgpt_resource_manager and instance: <dbgpt.agent.resource.manage.ResourceManager object at 0x7f614d97bb20>
2025-03-31 20:55:06 | INFO | dbgpt.component | Register component with name dbgpt_agent_manager and instance: <dbgpt.agent.core.agent_manage.AgentManager object at 0x7f614d9dc040>
2025-03-31 20:55:06 | INFO | dbgpt.component | Register component with name dbgpt_agent_manager and instance: <dbgpt.agent.core.agent_manage.AgentManager object at 0x7f614d9dc040>
2025-03-31 20:55:06 | INFO | dbgpt.component | Register component with name dbgpt_app_editor_service and instance: <dbgpt_app.openapi.api_v1.editor.service.EditorService object at 0x7f614d9ddea0>
2025-03-31 20:55:06 | INFO | dbgpt.component | Register component with name dbgpt_app_editor_service and instance: <dbgpt_app.openapi.api_v1.editor.service.EditorService object at 0x7f614d9ddea0>
2025-03-31 20:55:06 | INFO | dbgpt.component | Register component with name dbgpt_serve_prompt and instance: <dbgpt_serve.prompt.serve.Serve object at 0x7f614d9de080>
2025-03-31 20:55:06 | INFO | dbgpt.component | Register component with name dbgpt_serve_prompt and instance: <dbgpt_serve.prompt.serve.Serve object at 0x7f614d9de080>
2025-03-31 20:55:06 | INFO | dbgpt.component | Register component with name dbgpt_serve_prompt_service and instance: <dbgpt_serve.prompt.service.service.Service object at 0x7f614d819f30>
2025-03-31 20:55:06 | INFO | dbgpt.component | Register component with name dbgpt_serve_prompt_service and instance: <dbgpt_serve.prompt.service.service.Service object at 0x7f614d819f30>
2025-03-31 20:55:06 | INFO | dbgpt.component | Register component with name dbgpt_serve_conversation and instance: <dbgpt_serve.conversation.serve.Serve object at 0x7f614d819f90>
2025-03-31 20:55:06 | INFO | dbgpt.component | Register component with name dbgpt_serve_conversation and instance: <dbgpt_serve.conversation.serve.Serve object at 0x7f614d819f90>
2025-03-31 20:55:06 | INFO | dbgpt.component | Register component with name dbgpt_serve_conversation_service and instance: <dbgpt_serve.conversation.service.service.Service object at 0x7f614d8940d0>
2025-03-31 20:55:06 | INFO | dbgpt.component | Register component with name dbgpt_serve_conversation_service and instance: <dbgpt_serve.conversation.service.service.Service object at 0x7f614d8940d0>
2025-03-31 20:55:06 | INFO | dbgpt.component | Register component with name dbgpt_variables_provider and instance: <dbgpt.core.interface.variables.StorageVariablesProvider object at 0x7f614d86fca0>
2025-03-31 20:55:06 | INFO | dbgpt.component | Register component with name dbgpt_variables_provider and instance: <dbgpt.core.interface.variables.StorageVariablesProvider object at 0x7f614d86fca0>
2025-03-31 20:55:06 | INFO | dbgpt.component | Register component with name dbgpt_serve_flow and instance: <dbgpt_serve.flow.serve.Serve object at 0x7f614d8941f0>
2025-03-31 20:55:06 | INFO | dbgpt.component | Register component with name dbgpt_serve_flow and instance: <dbgpt_serve.flow.serve.Serve object at 0x7f614d8941f0>
2025-03-31 20:55:06 | INFO | dbgpt.component | Register component with name dbgpt_dbgpts_loader and instance: <dbgpt.util.dbgpts.loader.DBGPTsLoader object at 0x7f614ccc22c0>
2025-03-31 20:55:06 | INFO | dbgpt.component | Register component with name dbgpt_dbgpts_loader and instance: <dbgpt.util.dbgpts.loader.DBGPTsLoader object at 0x7f614ccc22c0>
2025-03-31 20:55:06 | INFO | dbgpt.component | Register component with name dbgpt_serve_flow_service and instance: <dbgpt_serve.flow.service.service.Service object at 0x7f614d86f700>
2025-03-31 20:55:06 | INFO | dbgpt.component | Register component with name dbgpt_serve_flow_service and instance: <dbgpt_serve.flow.service.service.Service object at 0x7f614d86f700>
2025-03-31 20:55:06 | INFO | dbgpt.component | Register component with name dbgpt_serve_flow_variables_service and instance: <dbgpt_serve.flow.service.variables_service.VariablesService object at 0x7f614ccc2260>
2025-03-31 20:55:06 | INFO | dbgpt.component | Register component with name dbgpt_serve_flow_variables_service and instance: <dbgpt_serve.flow.service.variables_service.VariablesService object at 0x7f614ccc2260>
2025-03-31 20:55:06 | INFO | dbgpt.component | Register component with name dbgpt.core.flow.flows and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinFlowVariablesProvider object at 0x7f614ccc2410>
2025-03-31 20:55:06 | INFO | dbgpt.component | Register component with name dbgpt.core.flow.flows and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinFlowVariablesProvider object at 0x7f614ccc2410>
2025-03-31 20:55:06 | INFO | dbgpt.component | Register component with name dbgpt.core.flow.nodes and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinNodeVariablesProvider object at 0x7f614ccc21a0>
2025-03-31 20:55:06 | INFO | dbgpt.component | Register component with name dbgpt.core.flow.nodes and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinNodeVariablesProvider object at 0x7f614ccc21a0>
2025-03-31 20:55:06 | INFO | dbgpt.component | Register component with name dbgpt.core.variables and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinAllVariablesProvider object at 0x7f614ccc2380>
2025-03-31 20:55:06 | INFO | dbgpt.component | Register component with name dbgpt.core.variables and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinAllVariablesProvider object at 0x7f614ccc2380>
2025-03-31 20:55:06 | INFO | dbgpt.component | Register component with name dbgpt.core.secrets and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinAllSecretVariablesProvider object at 0x7f614ccc20e0>
2025-03-31 20:55:06 | INFO | dbgpt.component | Register component with name dbgpt.core.secrets and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinAllSecretVariablesProvider object at 0x7f614ccc20e0>
2025-03-31 20:55:06 | INFO | dbgpt.component | Register component with name dbgpt.core.model.llms and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinLLMVariablesProvider object at 0x7f614ccc2050>
2025-03-31 20:55:06 | INFO | dbgpt.component | Register component with name dbgpt.core.model.llms and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinLLMVariablesProvider object at 0x7f614ccc2050>
2025-03-31 20:55:06 | INFO | dbgpt.component | Register component with name dbgpt.core.model.embeddings and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinEmbeddingsVariablesProvider object at 0x7f614ccc2020>
2025-03-31 20:55:06 | INFO | dbgpt.component | Register component with name dbgpt.core.model.embeddings and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinEmbeddingsVariablesProvider object at 0x7f614ccc2020>
2025-03-31 20:55:06 | INFO | dbgpt.component | Register component with name dbgpt.core.datasources and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinDatasourceVariablesProvider object at 0x7f614ccc1ea0>
2025-03-31 20:55:06 | INFO | dbgpt.component | Register component with name dbgpt.core.datasources and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinDatasourceVariablesProvider object at 0x7f614ccc1ea0>
2025-03-31 20:55:06 | INFO | dbgpt.component | Register component with name dbgpt.core.agent.agents and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinAgentsVariablesProvider object at 0x7f614ccc1f60>
2025-03-31 20:55:06 | INFO | dbgpt.component | Register component with name dbgpt.core.agent.agents and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinAgentsVariablesProvider object at 0x7f614ccc1f60>
2025-03-31 20:55:06 | INFO | dbgpt.component | Register component with name dbgpt.core.knowledge_spaces and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinKnowledgeSpacesVariablesProvider object at 0x7f614ccc1d80>
2025-03-31 20:55:06 | INFO | dbgpt.component | Register component with name dbgpt.core.knowledge_spaces and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinKnowledgeSpacesVariablesProvider object at 0x7f614ccc1d80>
2025-03-31 20:55:06 | INFO | dbgpt.component | Register component with name dbgpt_rag and instance: <dbgpt_serve.rag.serve.Serve object at 0x7f614ccc1e70>
2025-03-31 20:55:06 | INFO | dbgpt.component | Register component with name dbgpt_rag and instance: <dbgpt_serve.rag.serve.Serve object at 0x7f614ccc1e70>
2025-03-31 20:55:06 | INFO | dbgpt.component | Register component with name dbgpt_rag_service and instance: <dbgpt_serve.rag.service.service.Service object at 0x7f614c61a620>
2025-03-31 20:55:06 | INFO | dbgpt.component | Register component with name dbgpt_rag_service and instance: <dbgpt_serve.rag.service.service.Service object at 0x7f614c61a620>
2025-03-31 20:55:06 | INFO | dbgpt.component | Register component with name dbgpt_datasource and instance: <dbgpt_serve.datasource.serve.Serve object at 0x7f614c61a830>
2025-03-31 20:55:06 | INFO | dbgpt.component | Register component with name dbgpt_datasource and instance: <dbgpt_serve.datasource.serve.Serve object at 0x7f614c61a830>
2025-03-31 20:55:07 | INFO | dbgpt.component | Register component with name dbgpt_datasource_service and instance: <dbgpt_serve.datasource.service.service.Service object at 0x7f614c6ac7f0>
2025-03-31 20:55:07 | INFO | dbgpt.component | Register component with name dbgpt_datasource_service and instance: <dbgpt_serve.datasource.service.service.Service object at 0x7f614c6ac7f0>
2025-03-31 20:55:07 | INFO | dbgpt.component | Register component with name dbgpt_serve_feedback and instance: <dbgpt_serve.feedback.serve.Serve object at 0x7f614c6ac910>
2025-03-31 20:55:07 | INFO | dbgpt.component | Register component with name dbgpt_serve_feedback and instance: <dbgpt_serve.feedback.serve.Serve object at 0x7f614c6ac910>
2025-03-31 20:55:07 | INFO | dbgpt.component | Register component with name dbgpt_serve_feedback_service and instance: <dbgpt_serve.feedback.service.service.Service object at 0x7f614c6aff10>
2025-03-31 20:55:07 | INFO | dbgpt.component | Register component with name dbgpt_serve_feedback_service and instance: <dbgpt_serve.feedback.service.service.Service object at 0x7f614c6aff10>
2025-03-31 20:55:07 | INFO | dbgpt.component | Register component with name dbgpt_serve_dbgpts_hub and instance: <dbgpt_serve.dbgpts.hub.serve.Serve object at 0x7f614c6af700>
2025-03-31 20:55:07 | INFO | dbgpt.component | Register component with name dbgpt_serve_dbgpts_hub and instance: <dbgpt_serve.dbgpts.hub.serve.Serve object at 0x7f614c6af700>
2025-03-31 20:55:07 | INFO | dbgpt.component | Register component with name dbgpt_serve_dbgpts_hub_service and instance: <dbgpt_serve.dbgpts.hub.service.service.Service object at 0x7f614c18a0b0>
2025-03-31 20:55:07 | INFO | dbgpt.component | Register component with name dbgpt_serve_dbgpts_hub_service and instance: <dbgpt_serve.dbgpts.hub.service.service.Service object at 0x7f614c18a0b0>
2025-03-31 20:55:07 | INFO | dbgpt.component | Register component with name dbgpt_serve_dbgpts_my and instance: <dbgpt_serve.dbgpts.my.serve.Serve object at 0x7f614c189b40>
2025-03-31 20:55:07 | INFO | dbgpt.component | Register component with name dbgpt_serve_dbgpts_my and instance: <dbgpt_serve.dbgpts.my.serve.Serve object at 0x7f614c189b40>
2025-03-31 20:55:07 | INFO | dbgpt.component | Register component with name dbgpt_serve_dbgpts_my_service and instance: <dbgpt_serve.dbgpts.my.service.service.Service object at 0x7f614c02a710>
2025-03-31 20:55:07 | INFO | dbgpt.component | Register component with name dbgpt_serve_dbgpts_my_service and instance: <dbgpt_serve.dbgpts.my.service.service.Service object at 0x7f614c02a710>
2025-03-31 20:55:07 | INFO | dbgpt.component | Register component with name dbgpt_serve_file and instance: <dbgpt_serve.file.serve.Serve object at 0x7f614c02a620>
2025-03-31 20:55:07 | INFO | dbgpt.component | Register component with name dbgpt_serve_file and instance: <dbgpt_serve.file.serve.Serve object at 0x7f614c02a620>
2025-03-31 20:55:07 | INFO | dbgpt.component | Register component with name dbgpt_serve_file_service and instance: <dbgpt_serve.file.service.service.Service object at 0x7f614c0d0730>
2025-03-31 20:55:07 | INFO | dbgpt.component | Register component with name dbgpt_serve_file_service and instance: <dbgpt_serve.file.service.service.Service object at 0x7f614c0d0730>
2025-03-31 20:55:07 | INFO | dbgpt.component | Register component with name dbgpt_serve_evaluate and instance: <dbgpt_serve.evaluate.serve.Serve object at 0x7f614c0d0460>
2025-03-31 20:55:07 | INFO | dbgpt.component | Register component with name dbgpt_serve_evaluate and instance: <dbgpt_serve.evaluate.serve.Serve object at 0x7f614c0d0460>
2025-03-31 20:55:07 | INFO | dbgpt.component | Register component with name dbgpt_serve_evaluate_service and instance: <dbgpt_serve.evaluate.service.service.Service object at 0x7f614c0d07f0>
2025-03-31 20:55:07 | INFO | dbgpt.component | Register component with name dbgpt_serve_evaluate_service and instance: <dbgpt_serve.evaluate.service.service.Service object at 0x7f614c0d07f0>
2025-03-31 20:55:07 | INFO | dbgpt.component | Register component with name dbgpt_serve_libro and instance: <dbgpt_serve.libro.serve.Serve object at 0x7f614bb94370>
2025-03-31 20:55:07 | INFO | dbgpt.component | Register component with name dbgpt_serve_libro and instance: <dbgpt_serve.libro.serve.Serve object at 0x7f614bb94370>
2025-03-31 20:55:07 | INFO | dbgpt.component | Register component with name dbgpt_serve_libro_service and instance: <dbgpt_serve.libro.service.service.Service object at 0x7f614bbedcf0>
2025-03-31 20:55:07 | INFO | dbgpt.component | Register component with name dbgpt_serve_libro_service and instance: <dbgpt_serve.libro.service.service.Service object at 0x7f614bbedcf0>
2025-03-31 20:55:07 | INFO | dbgpt.component | Register component with name dbgpt_serve_model and instance: <dbgpt_serve.model.serve.Serve object at 0x7f614bbede10>
2025-03-31 20:55:07 | INFO | dbgpt.component | Register component with name dbgpt_serve_model and instance: <dbgpt_serve.model.serve.Serve object at 0x7f614bbede10>
2025-03-31 20:55:07 | INFO | dbgpt.component | Register component with name dbgpt_serve_model_service and instance: <dbgpt_serve.model.service.service.Service object at 0x7f614bbee050>
2025-03-31 20:55:07 | INFO | dbgpt.component | Register component with name dbgpt_serve_model_service and instance: <dbgpt_serve.model.service.service.Service object at 0x7f614bbee050>
2025-03-31 20:55:08 | INFO | dbgpt.component | Register component with name base_dbgpt_component and instance: <dbgpt.util.code.server.CodeServer object at 0x7f614ba47850>
2025-03-31 20:55:08 | INFO | dbgpt.component | Register component with name base_dbgpt_component and instance: <dbgpt.util.code.server.CodeServer object at 0x7f614ba47850>
2025-03-31 20:55:08 | WARNING | dbgpt.util._db_migration_utils | Initialize and upgrade database metadata with alembic, just run this in your development environment, if you deploy this in production environment, please run webserver with --disable_alembic_upgrade(`python dbgpt/app/dbgpt_server.py --disable_alembic_upgrade`).
we suggest you to use `dbgpt db migration` to initialize and upgrade database metadata with alembic, your can run `dbgpt db migration --help` to get more information.
2025-03-31 20:55:08 | INFO | alembic.runtime.migration | Context impl SQLiteImpl.
2025-03-31 20:55:08 | INFO | alembic.runtime.migration | Will assume non-transactional DDL.
2025-03-31 20:55:08 | INFO | dbgpt.util._db_migration_utils | Migration versions and their file paths:
========================================Migration versions========================================

b57d83cdc260 (current): New migration (Path: /home/DB-GPT/pilot/meta_data/alembic/versions/b57d83cdc260_new_migration.py)
c91048d5a6b5 : New migration (Path: /home/DB-GPT/pilot/meta_data/alembic/versions/c91048d5a6b5_new_migration.py)
77cb31a83832 : New migration (Path: /home/DB-GPT/pilot/meta_data/alembic/versions/77cb31a83832_new_migration.py)
==========================================================================================
2025-03-31 20:55:08 | INFO | alembic.runtime.migration | Context impl SQLiteImpl.
2025-03-31 20:55:08 | INFO | alembic.runtime.migration | Will assume non-transactional DDL.
2025-03-31 20:55:08 | INFO | alembic.runtime.migration | Context impl SQLiteImpl.
2025-03-31 20:55:08 | INFO | alembic.runtime.migration | Will assume non-transactional DDL.
2025-03-31 20:55:08 | INFO | dbgpt.util._db_migration_utils | alembic migration current revision: b57d83cdc260, latest revision: b57d83cdc260
2025-03-31 20:55:08 | INFO | alembic.runtime.migration | Context impl SQLiteImpl.
2025-03-31 20:55:08 | INFO | alembic.runtime.migration | Will assume non-transactional DDL.
2025-03-31 20:55:11 | INFO | alembic.runtime.migration | Context impl SQLiteImpl.
2025-03-31 20:55:11 | INFO | alembic.runtime.migration | Will assume non-transactional DDL.
2025-03-31 20:55:11 | INFO | alembic.runtime.migration | Running upgrade b57d83cdc260 -> b82f35a36053, New migration
2025-03-31 20:55:11 | INFO | dbgpt.component | Register component with name dbgpt_file_storage_client and instance: <dbgpt.core.interface.file.FileStorageClient object at 0x7f614a36b340>
2025-03-31 20:55:11 | INFO | dbgpt.component | Register component with name dbgpt_file_storage_client and instance: <dbgpt.core.interface.file.FileStorageClient object at 0x7f614a36b340>
2025-03-31 20:55:11 | INFO | dbgpt_app.dbgpt_server | Model Unified Deployment Mode, run all services in the same process
2025-03-31 20:55:11 | INFO | dbgpt_app.dbgpt_server | Model Unified Deployment Mode, run all services in the same process
2025-03-31 20:55:11 | INFO | dbgpt.model.cluster.worker.manager | Register WorkerManager dbgpt_worker_manager_factory
2025-03-31 20:55:11 | INFO | dbgpt.model.cluster.worker.manager | Register WorkerManager dbgpt_worker_manager_factory
2025-03-31 20:55:11 | INFO | dbgpt.component | Register component with name dbgpt_worker_manager_factory and instance: <dbgpt.model.cluster.worker.manager._DefaultWorkerManagerFactory object at 0x7f614a213490>
2025-03-31 20:55:11 | INFO | dbgpt.component | Register component with name dbgpt_worker_manager_factory and instance: <dbgpt.model.cluster.worker.manager._DefaultWorkerManagerFactory object at 0x7f614a213490>
2025-03-31 20:55:11 | INFO | dbgpt.model.cluster.worker.manager | Worker params: 

=========================== ModelWorkerParameters ===========================

host: 0.0.0.0
port: 5670
daemon: False
log: 

=========================== LoggingParameters ===========================

level: INFO
file: None

======================================================================


trace: None
worker_type: None
worker_class: None
standalone: True
register: True
worker_register_host: None
controller_addr: None
send_heartbeat: True
heartbeat_interval: 20

======================================================================


2025-03-31 20:55:11 | INFO | dbgpt.model.cluster.worker.manager | Worker params: 

=========================== ModelWorkerParameters ===========================

host: 0.0.0.0
port: 5670
daemon: False
log: 

=========================== LoggingParameters ===========================

level: INFO
file: None

======================================================================


trace: None
worker_type: None
worker_class: None
standalone: True
register: True
worker_register_host: None
controller_addr: None
send_heartbeat: True
heartbeat_interval: 20

======================================================================


2025-03-31 20:55:11 | INFO | dbgpt.model.cluster.worker.manager | Run WorkerManager with standalone mode, controller_addr: http://127.0.0.1:5670
2025-03-31 20:55:11 | INFO | dbgpt.model.cluster.worker.manager | Run WorkerManager with standalone mode, controller_addr: http://127.0.0.1:5670
2025-03-31 20:55:11 | INFO | dbgpt.model.adapter.model_adapter | Current model Qwen/QwQ-32B use new adapter <CommonModelAdapter model_name=Qwen/QwQ-32B model_path=/home/DB-GPT/models/Qwen/QwQ-32B>
2025-03-31 20:55:11 | INFO | dbgpt.model.adapter.model_adapter | Current model Qwen/QwQ-32B use new adapter <CommonModelAdapter model_name=Qwen/QwQ-32B model_path=/home/DB-GPT/models/Qwen/QwQ-32B>
2025-03-31 20:55:11 | WARNING | dbgpt.util.api_utils | Health check failed for http://127.0.0.1:5670, error: HTTPConnectionPool(host='127.0.0.1', port=5670): Max retries exceeded with url: /api/health (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f614a234b50>: Failed to establish a new connection: [Errno 111] Connection refused'))
2025-03-31 20:55:11 | INFO | dbgpt.model.cluster.worker.default_worker | model_name: Qwen/QwQ-32B, model_path: /home/DB-GPT/models/Qwen/QwQ-32B, model_param_class: <class 'dbgpt.model.adapter.hf_adapter.HFLLMDeployModelParameters'>
2025-03-31 20:55:11 | WARNING | dbgpt.util.api_utils | Health check failed for http://127.0.0.1:5670, error: HTTPConnectionPool(host='127.0.0.1', port=5670): Max retries exceeded with url: /api/health (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f614a234b50>: Failed to establish a new connection: [Errno 111] Connection refused'))
2025-03-31 20:55:11 | INFO | dbgpt.model.cluster.worker.default_worker | model_name: Qwen/QwQ-32B, model_path: /home/DB-GPT/models/Qwen/QwQ-32B, model_param_class: <class 'dbgpt.model.adapter.hf_adapter.HFLLMDeployModelParameters'>
2025-03-31 20:55:11 | INFO | dbgpt.model.cluster.worker.manager | Init empty instances list for Qwen/QwQ-32B@llm
2025-03-31 20:55:11 | INFO | dbgpt.model.cluster.worker.manager | Init empty instances list for Qwen/QwQ-32B@llm
2025-03-31 20:55:11 | INFO | dbgpt.model.cluster.worker.manager | Start local embedding worker with embedding parameters


=========================== ModelWorkerParameters ===========================

host: 0.0.0.0
port: 8001
daemon: False
log: 

=========================== LoggingParameters ===========================

level: ${env:DBGPT_LOG_LEVEL:-INFO}
file: None

======================================================================


trace: None
worker_type: text2vec
worker_class: None
standalone: False
register: True
worker_register_host: None
controller_addr: None
send_heartbeat: True
heartbeat_interval: 20

======================================================================


2025-03-31 20:55:11 | INFO | dbgpt.model.cluster.worker.manager | Start local embedding worker with embedding parameters


=========================== ModelWorkerParameters ===========================

host: 0.0.0.0
port: 8001
daemon: False
log: 

=========================== LoggingParameters ===========================

level: ${env:DBGPT_LOG_LEVEL:-INFO}
file: None

======================================================================


trace: None
worker_type: text2vec
worker_class: None
standalone: False
register: True
worker_register_host: None
controller_addr: None
send_heartbeat: True
heartbeat_interval: 20

======================================================================


2025-03-31 20:55:11 | INFO | dbgpt.model.cluster.worker.manager | Init empty instances list for BAAI/bge-large-zh-v1.5@text2vec
2025-03-31 20:55:11 | INFO | dbgpt.model.cluster.worker.manager | Init empty instances list for BAAI/bge-large-zh-v1.5@text2vec
2025-03-31 20:55:11 | INFO | dbgpt.util.dbgpts.loader | Found 0 dbgpts packages from /root/.dbgpts/packages/13f94a500b3b8b8477e6f87356068c15
2025-03-31 20:55:11 | INFO | dbgpt_serve.flow.service.compat_service | Found compat file: 0.7.0, use latest: 0.7.0
2025-03-31 20:55:14 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/awel_flow_ui_components.py
2025-03-31 20:55:14 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/awel_flow_ui_components.py
2025-03-31 20:55:14 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/awel_flow_ui_components.py
2025-03-31 20:55:14 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_chat_dag_example.py
2025-03-31 20:55:14 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_chat_dag_example.py
2025-03-31 20:55:14 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_chat_dag_example.py
2025-03-31 20:55:14 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_dag_example) from mod <module 'unusual_prefix_7f93a289b452e786f74233daa5a969e1fd501b71_simple_chat_dag_example' from '/home/DB-GPT/examples/awel/simple_chat_dag_example.py'> and model file /home/DB-GPT/examples/awel/simple_chat_dag_example.py
2025-03-31 20:55:14 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_dag_example) from mod <module 'unusual_prefix_7f93a289b452e786f74233daa5a969e1fd501b71_simple_chat_dag_example' from '/home/DB-GPT/examples/awel/simple_chat_dag_example.py'> and model file /home/DB-GPT/examples/awel/simple_chat_dag_example.py
2025-03-31 20:55:14 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_dag_example) from mod <module 'unusual_prefix_7f93a289b452e786f74233daa5a969e1fd501b71_simple_chat_dag_example' from '/home/DB-GPT/examples/awel/simple_chat_dag_example.py'> and model file /home/DB-GPT/examples/awel/simple_chat_dag_example.py
2025-03-31 20:55:14 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_chat_history_example.py
2025-03-31 20:55:14 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_chat_history_example.py
2025-03-31 20:55:14 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_chat_history_example.py
2025-03-31 20:55:14 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_chat_history) from mod <module 'unusual_prefix_bac1fcf83805e9d79523500ef9de83e5115f69a1_simple_chat_history_example' from '/home/DB-GPT/examples/awel/simple_chat_history_example.py'> and model file /home/DB-GPT/examples/awel/simple_chat_history_example.py
2025-03-31 20:55:14 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_chat_history) from mod <module 'unusual_prefix_bac1fcf83805e9d79523500ef9de83e5115f69a1_simple_chat_history_example' from '/home/DB-GPT/examples/awel/simple_chat_history_example.py'> and model file /home/DB-GPT/examples/awel/simple_chat_history_example.py
2025-03-31 20:55:14 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_chat_history) from mod <module 'unusual_prefix_bac1fcf83805e9d79523500ef9de83e5115f69a1_simple_chat_history_example' from '/home/DB-GPT/examples/awel/simple_chat_history_example.py'> and model file /home/DB-GPT/examples/awel/simple_chat_history_example.py
2025-03-31 20:55:14 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_dag_example.py
2025-03-31 20:55:14 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_dag_example.py
2025-03-31 20:55:14 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_dag_example.py
2025-03-31 20:55:14 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=simple_dag_example) from mod <module 'unusual_prefix_fd02d664f9a189c3be5c5599808ca1d1153a6edf_simple_dag_example' from '/home/DB-GPT/examples/awel/simple_dag_example.py'> and model file /home/DB-GPT/examples/awel/simple_dag_example.py
2025-03-31 20:55:14 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=simple_dag_example) from mod <module 'unusual_prefix_fd02d664f9a189c3be5c5599808ca1d1153a6edf_simple_dag_example' from '/home/DB-GPT/examples/awel/simple_dag_example.py'> and model file /home/DB-GPT/examples/awel/simple_dag_example.py
2025-03-31 20:55:14 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=simple_dag_example) from mod <module 'unusual_prefix_fd02d664f9a189c3be5c5599808ca1d1153a6edf_simple_dag_example' from '/home/DB-GPT/examples/awel/simple_dag_example.py'> and model file /home/DB-GPT/examples/awel/simple_dag_example.py
2025-03-31 20:55:14 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/data_analyst_assistant.py
2025-03-31 20:55:14 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/data_analyst_assistant.py
2025-03-31 20:55:14 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/data_analyst_assistant.py
2025-03-31 20:55:14 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_data_analyst_assistant) from mod <module 'unusual_prefix_26267e42ed6b36891895191fc865906fc5c9903c_data_analyst_assistant' from '/home/DB-GPT/examples/awel/data_analyst_assistant.py'> and model file /home/DB-GPT/examples/awel/data_analyst_assistant.py
2025-03-31 20:55:14 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_data_analyst_assistant) from mod <module 'unusual_prefix_26267e42ed6b36891895191fc865906fc5c9903c_data_analyst_assistant' from '/home/DB-GPT/examples/awel/data_analyst_assistant.py'> and model file /home/DB-GPT/examples/awel/data_analyst_assistant.py
2025-03-31 20:55:14 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_data_analyst_assistant) from mod <module 'unusual_prefix_26267e42ed6b36891895191fc865906fc5c9903c_data_analyst_assistant' from '/home/DB-GPT/examples/awel/data_analyst_assistant.py'> and model file /home/DB-GPT/examples/awel/data_analyst_assistant.py
2025-03-31 20:55:14 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_llm_client_example.py
2025-03-31 20:55:14 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_llm_client_example.py
2025-03-31 20:55:14 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_llm_client_example.py
2025-03-31 20:55:14 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_llm_client_generate) from mod <module 'unusual_prefix_fa5740ee7c9c6d005009382b43e55de50b9eda0d_simple_llm_client_example' from '/home/DB-GPT/examples/awel/simple_llm_client_example.py'> and model file /home/DB-GPT/examples/awel/simple_llm_client_example.py
2025-03-31 20:55:14 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_llm_client_generate) from mod <module 'unusual_prefix_fa5740ee7c9c6d005009382b43e55de50b9eda0d_simple_llm_client_example' from '/home/DB-GPT/examples/awel/simple_llm_client_example.py'> and model file /home/DB-GPT/examples/awel/simple_llm_client_example.py
2025-03-31 20:55:14 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_llm_client_generate) from mod <module 'unusual_prefix_fa5740ee7c9c6d005009382b43e55de50b9eda0d_simple_llm_client_example' from '/home/DB-GPT/examples/awel/simple_llm_client_example.py'> and model file /home/DB-GPT/examples/awel/simple_llm_client_example.py
2025-03-31 20:55:14 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_llm_client_count_token) from mod <module 'unusual_prefix_fa5740ee7c9c6d005009382b43e55de50b9eda0d_simple_llm_client_example' from '/home/DB-GPT/examples/awel/simple_llm_client_example.py'> and model file /home/DB-GPT/examples/awel/simple_llm_client_example.py
2025-03-31 20:55:14 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_llm_client_count_token) from mod <module 'unusual_prefix_fa5740ee7c9c6d005009382b43e55de50b9eda0d_simple_llm_client_example' from '/home/DB-GPT/examples/awel/simple_llm_client_example.py'> and model file /home/DB-GPT/examples/awel/simple_llm_client_example.py
2025-03-31 20:55:14 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_llm_client_count_token) from mod <module 'unusual_prefix_fa5740ee7c9c6d005009382b43e55de50b9eda0d_simple_llm_client_example' from '/home/DB-GPT/examples/awel/simple_llm_client_example.py'> and model file /home/DB-GPT/examples/awel/simple_llm_client_example.py
2025-03-31 20:55:14 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_nl_schema_sql_chart_example.py
2025-03-31 20:55:14 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_nl_schema_sql_chart_example.py
2025-03-31 20:55:14 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_nl_schema_sql_chart_example.py
2025-03-31 20:55:15 | INFO | dbgpt.datasource.rdbms.base | Closing RDBMS connector resources...
2025-03-31 20:55:15 | INFO | dbgpt.datasource.rdbms.base | Closing RDBMS connector resources...
2025-03-31 20:55:15 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=simple_nl_schema_sql_chart_example) from mod <module 'unusual_prefix_aa5ab7ad0c92b4d4895d19a5e92366b8877d079f_simple_nl_schema_sql_chart_example' from '/home/DB-GPT/examples/awel/simple_nl_schema_sql_chart_example.py'> and model file /home/DB-GPT/examples/awel/simple_nl_schema_sql_chart_example.py
2025-03-31 20:55:15 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=simple_nl_schema_sql_chart_example) from mod <module 'unusual_prefix_aa5ab7ad0c92b4d4895d19a5e92366b8877d079f_simple_nl_schema_sql_chart_example' from '/home/DB-GPT/examples/awel/simple_nl_schema_sql_chart_example.py'> and model file /home/DB-GPT/examples/awel/simple_nl_schema_sql_chart_example.py
2025-03-31 20:55:15 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=simple_nl_schema_sql_chart_example) from mod <module 'unusual_prefix_aa5ab7ad0c92b4d4895d19a5e92366b8877d079f_simple_nl_schema_sql_chart_example' from '/home/DB-GPT/examples/awel/simple_nl_schema_sql_chart_example.py'> and model file /home/DB-GPT/examples/awel/simple_nl_schema_sql_chart_example.py
2025-03-31 20:55:15 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_rag_rewrite_example.py
2025-03-31 20:55:15 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_rag_rewrite_example.py
2025-03-31 20:55:15 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_rag_rewrite_example.py
2025-03-31 20:55:15 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_rag_rewrite_example) from mod <module 'unusual_prefix_bec60c6069e118fc06fbb667d7e76344b458c939_simple_rag_rewrite_example' from '/home/DB-GPT/examples/awel/simple_rag_rewrite_example.py'> and model file /home/DB-GPT/examples/awel/simple_rag_rewrite_example.py
2025-03-31 20:55:15 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_rag_rewrite_example) from mod <module 'unusual_prefix_bec60c6069e118fc06fbb667d7e76344b458c939_simple_rag_rewrite_example' from '/home/DB-GPT/examples/awel/simple_rag_rewrite_example.py'> and model file /home/DB-GPT/examples/awel/simple_rag_rewrite_example.py
2025-03-31 20:55:15 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_rag_rewrite_example) from mod <module 'unusual_prefix_bec60c6069e118fc06fbb667d7e76344b458c939_simple_rag_rewrite_example' from '/home/DB-GPT/examples/awel/simple_rag_rewrite_example.py'> and model file /home/DB-GPT/examples/awel/simple_rag_rewrite_example.py
2025-03-31 20:55:15 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_rag_summary_example.py
2025-03-31 20:55:15 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_rag_summary_example.py
2025-03-31 20:55:15 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_rag_summary_example.py
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_rag_summary_example) from mod <module 'unusual_prefix_14e17e50bbe0790c364d347efeda2ebbb9628315_simple_rag_summary_example' from '/home/DB-GPT/examples/awel/simple_rag_summary_example.py'> and model file /home/DB-GPT/examples/awel/simple_rag_summary_example.py
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_rag_summary_example) from mod <module 'unusual_prefix_14e17e50bbe0790c364d347efeda2ebbb9628315_simple_rag_summary_example' from '/home/DB-GPT/examples/awel/simple_rag_summary_example.py'> and model file /home/DB-GPT/examples/awel/simple_rag_summary_example.py
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_rag_summary_example) from mod <module 'unusual_prefix_14e17e50bbe0790c364d347efeda2ebbb9628315_simple_rag_summary_example' from '/home/DB-GPT/examples/awel/simple_rag_summary_example.py'> and model file /home/DB-GPT/examples/awel/simple_rag_summary_example.py
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=9fe39c46-1fa3-45f9-b0b2-922beb018c17)
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=9fe39c46-1fa3-45f9-b0b2-922beb018c17)
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7f60fee456c0>(AWEL_trigger_route__examples_simple_chat), endpoint: /examples/simple_chat, methods: ['POST']
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7f60fee456c0>(AWEL_trigger_route__examples_simple_chat), endpoint: /examples/simple_chat, methods: ['POST']
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7f60fee456c0>(AWEL_trigger_route__examples_simple_chat), endpoint: /examples/simple_chat, methods: ['POST']
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/simple_chat
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/simple_chat
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/simple_chat
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7f614d97bd90> to prefix path /api/v1/awel/trigger
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7f614d97bd90> to prefix path /api/v1/awel/trigger
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=cea3a8c8-41cb-4c71-baae-43ba71bb2880)
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=cea3a8c8-41cb-4c71-baae-43ba71bb2880)
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7f60fee463b0>(AWEL_trigger_route__examples_simple_history_multi_round_chat_completions), endpoint: /examples/simple_history/multi_round/chat/completions, methods: ['POST']
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7f60fee463b0>(AWEL_trigger_route__examples_simple_history_multi_round_chat_completions), endpoint: /examples/simple_history/multi_round/chat/completions, methods: ['POST']
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7f60fee463b0>(AWEL_trigger_route__examples_simple_history_multi_round_chat_completions), endpoint: /examples/simple_history/multi_round/chat/completions, methods: ['POST']
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/simple_history/multi_round/chat/completions
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/simple_history/multi_round/chat/completions
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/simple_history/multi_round/chat/completions
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7f614d97bd90> to prefix path /api/v1/awel/trigger
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7f614d97bd90> to prefix path /api/v1/awel/trigger
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=4b590826-781c-4cfa-bd6c-a99dc499eabc)
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=4b590826-781c-4cfa-bd6c-a99dc499eabc)
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function_get at 0x7f60fee45cf0>(AWEL_trigger_route__examples_hello), endpoint: /examples/hello, methods: ['GET']
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function_get at 0x7f60fee45cf0>(AWEL_trigger_route__examples_hello), endpoint: /examples/hello, methods: ['GET']
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function_get at 0x7f60fee45cf0>(AWEL_trigger_route__examples_hello), endpoint: /examples/hello, methods: ['GET']
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/hello
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/hello
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/hello
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7f614d97bd90> to prefix path /api/v1/awel/trigger
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7f614d97bd90> to prefix path /api/v1/awel/trigger
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=262a7be3-f2e2-4688-a8b6-c6dd10593322)
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=262a7be3-f2e2-4688-a8b6-c6dd10593322)
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7f60fee45630>(AWEL_trigger_route__examples_data_analyst_copilot), endpoint: /examples/data_analyst/copilot, methods: ['POST']
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7f60fee45630>(AWEL_trigger_route__examples_data_analyst_copilot), endpoint: /examples/data_analyst/copilot, methods: ['POST']
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7f60fee45630>(AWEL_trigger_route__examples_data_analyst_copilot), endpoint: /examples/data_analyst/copilot, methods: ['POST']
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/data_analyst/copilot
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/data_analyst/copilot
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/data_analyst/copilot
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7f614d97bd90> to prefix path /api/v1/awel/trigger
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7f614d97bd90> to prefix path /api/v1/awel/trigger
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=edf8bb60-c5d9-48b8-ad5a-c1dfcc8daa95)
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=edf8bb60-c5d9-48b8-ad5a-c1dfcc8daa95)
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7f60fee47640>(AWEL_trigger_route__examples_simple_client_chat_completions), endpoint: /examples/simple_client/chat/completions, methods: ['POST']
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7f60fee47640>(AWEL_trigger_route__examples_simple_client_chat_completions), endpoint: /examples/simple_client/chat/completions, methods: ['POST']
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7f60fee47640>(AWEL_trigger_route__examples_simple_client_chat_completions), endpoint: /examples/simple_client/chat/completions, methods: ['POST']
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/simple_client/chat/completions
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/simple_client/chat/completions
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/simple_client/chat/completions
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7f614d97bd90> to prefix path /api/v1/awel/trigger
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7f614d97bd90> to prefix path /api/v1/awel/trigger
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=e3e8b3df-ea71-4399-9b0d-699604d537be)
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=e3e8b3df-ea71-4399-9b0d-699604d537be)
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7f60fee8cc10>(AWEL_trigger_route__examples_simple_client_count_token), endpoint: /examples/simple_client/count_token, methods: ['POST']
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7f60fee8cc10>(AWEL_trigger_route__examples_simple_client_count_token), endpoint: /examples/simple_client/count_token, methods: ['POST']
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7f60fee8cc10>(AWEL_trigger_route__examples_simple_client_count_token), endpoint: /examples/simple_client/count_token, methods: ['POST']
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/simple_client/count_token
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/simple_client/count_token
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/simple_client/count_token
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7f614d97bd90> to prefix path /api/v1/awel/trigger
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7f614d97bd90> to prefix path /api/v1/awel/trigger
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=36e3e65a-3eec-4b36-96e0-c1a23c833195)
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=36e3e65a-3eec-4b36-96e0-c1a23c833195)
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7f60fee47d90>(AWEL_trigger_route__examples_rag_schema_linking), endpoint: /examples/rag/schema_linking, methods: ['POST']
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7f60fee47d90>(AWEL_trigger_route__examples_rag_schema_linking), endpoint: /examples/rag/schema_linking, methods: ['POST']
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7f60fee47d90>(AWEL_trigger_route__examples_rag_schema_linking), endpoint: /examples/rag/schema_linking, methods: ['POST']
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/rag/schema_linking
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/rag/schema_linking
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/rag/schema_linking
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7f614d97bd90> to prefix path /api/v1/awel/trigger
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7f614d97bd90> to prefix path /api/v1/awel/trigger
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=aa8cc099-c0f6-46b3-b572-fd49ef848f9c)
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=aa8cc099-c0f6-46b3-b572-fd49ef848f9c)
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7f60fee8cd30>(AWEL_trigger_route__examples_rag_rewrite), endpoint: /examples/rag/rewrite, methods: ['POST']
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7f60fee8cd30>(AWEL_trigger_route__examples_rag_rewrite), endpoint: /examples/rag/rewrite, methods: ['POST']
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7f60fee8cd30>(AWEL_trigger_route__examples_rag_rewrite), endpoint: /examples/rag/rewrite, methods: ['POST']
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/rag/rewrite
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/rag/rewrite
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/rag/rewrite
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7f614d97bd90> to prefix path /api/v1/awel/trigger
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7f614d97bd90> to prefix path /api/v1/awel/trigger
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=6b9518c0-5179-4725-acd4-5215b2d75bce)
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=6b9518c0-5179-4725-acd4-5215b2d75bce)
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7f60fee8d2d0>(AWEL_trigger_route__examples_rag_summary), endpoint: /examples/rag/summary, methods: ['POST']
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7f60fee8d2d0>(AWEL_trigger_route__examples_rag_summary), endpoint: /examples/rag/summary, methods: ['POST']
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7f60fee8d2d0>(AWEL_trigger_route__examples_rag_summary), endpoint: /examples/rag/summary, methods: ['POST']
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/rag/summary
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/rag/summary
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/rag/summary
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7f614d97bd90> to prefix path /api/v1/awel/trigger
2025-03-31 20:55:16 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7f614d97bd90> to prefix path /api/v1/awel/trigger
2025-03-31 20:55:16 | WARNING | dbgpt.util.api_utils | Health check failed for http://127.0.0.1:5670, error: HTTPConnectionPool(host='127.0.0.1', port=5670): Max retries exceeded with url: /api/health (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f60fec68850>: Failed to establish a new connection: [Errno 111] Connection refused'))
2025-03-31 20:55:16 | WARNING | dbgpt.util.api_utils | Health check failed for http://127.0.0.1:5670, error: HTTPConnectionPool(host='127.0.0.1', port=5670): Max retries exceeded with url: /api/health (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f60fec68850>: Failed to establish a new connection: [Errno 111] Connection refused'))
2025-03-31 20:55:17 | INFO | dbgpt.model.cluster.worker.manager | Begin start all worker, apply_req: None
2025-03-31 20:55:17 | INFO | dbgpt.model.cluster.worker.manager | Begin start all worker, apply_req: None
2025-03-31 20:55:17 | INFO | dbgpt.model.cluster.worker.manager | Apply req: None, apply_func: <function LocalWorkerManager._start_all_worker.<locals>._start_worker at 0x7f60fec7c310>
2025-03-31 20:55:17 | INFO | dbgpt.model.cluster.worker.manager | Apply req: None, apply_func: <function LocalWorkerManager._start_all_worker.<locals>._start_worker at 0x7f60fec7c310>
2025-03-31 20:55:17 | INFO | dbgpt.model.cluster.worker.manager | Apply to all workers
2025-03-31 20:55:17 | INFO | dbgpt.model.cluster.worker.manager | Apply to all workers
2025-03-31 20:55:17 | INFO | dbgpt.model.cluster.worker.default_worker | Begin load model, model params: 

=========================== HFLLMDeployModelParameters ===========================

name: Qwen/QwQ-32B
provider: hf
verbose: False
concurrency: 5
backend: None
prompt_template: None
context_length: None
reasoning_model: None
path: models/Qwen/QwQ-32B
device: None
trust_remote_code: True
quantization: None
low_cpu_mem_usage: None
num_gpus: None
max_gpu_memory: None
torch_dtype: None
attn_implementation: None

======================================================================


2025-03-31 20:55:17 | INFO | dbgpt.model.cluster.worker.default_worker | Begin load model, model params: 

=========================== HFLLMDeployModelParameters ===========================

name: Qwen/QwQ-32B
provider: hf
verbose: False
concurrency: 5
backend: None
prompt_template: None
context_length: None
reasoning_model: None
path: models/Qwen/QwQ-32B
device: None
trust_remote_code: True
quantization: None
low_cpu_mem_usage: None
num_gpus: None
max_gpu_memory: None
torch_dtype: None
attn_implementation: None

======================================================================


2025-03-31 20:55:18 | INFO | dbgpt.model.adapter.hf_adapter | Load model from /home/DB-GPT/models/Qwen/QwQ-32B, from_pretrained_kwargs: {'device_map': 'auto', 'max_memory': {0: '27GiB', 1: '27GiB', 2: '27GiB', 3: '27GiB', 4: '27GiB', 5: '27GiB', 6: '27GiB', 7: '27GiB'}, 'torch_dtype': torch.float16, 'low_cpu_mem_usage': True}
2025-03-31 20:55:18 | INFO | dbgpt.model.adapter.hf_adapter | Load model from /home/DB-GPT/models/Qwen/QwQ-32B, from_pretrained_kwargs: {'device_map': 'auto', 'max_memory': {0: '27GiB', 1: '27GiB', 2: '27GiB', 3: '27GiB', 4: '27GiB', 5: '27GiB', 6: '27GiB', 7: '27GiB'}, 'torch_dtype': torch.float16, 'low_cpu_mem_usage': True}
2025-03-31 20:55:20 | WARNING | transformers.models.qwen2.modeling_qwen2 | Sliding Window Attention is enabled but not implemented for `sdpa`; unexpected results may be encountered.
2025-03-31 20:55:20 | WARNING | transformers.models.qwen2.modeling_qwen2 | Sliding Window Attention is enabled but not implemented for `sdpa`; unexpected results may be encountered.
2025-03-31 20:55:25 | INFO | dbgpt.util.code.server | Code server is ready
2025-03-31 20:56:24 | INFO | dbgpt.model.cluster.worker.default_worker | Parse model max length 131072 from model Qwen/QwQ-32B.
2025-03-31 20:56:24 | INFO | dbgpt.model.cluster.worker.default_worker | Parse model max length 131072 from model Qwen/QwQ-32B.
2025-03-31 20:56:25 | INFO | dbgpt.model.cluster.worker.embedding_worker | Load embeddings model: BAAI/bge-large-zh-v1.5
2025-03-31 20:56:25 | INFO | datasets | PyTorch version 2.4.1+das.opt2.dtk2504 available.
2025-03-31 20:56:25 | INFO | datasets | Duckdb version 1.2.0 available.
2025-03-31 20:56:26 | INFO | sentence_transformers.SentenceTransformer | Use pytorch device_name: cuda
2025-03-31 20:56:26 | INFO | sentence_transformers.SentenceTransformer | Load pretrained SentenceTransformer: /home/DB-GPT/models/BAAI/bge-large-zh-v1.5
2025-03-31 20:56:29 | INFO | dbgpt.model.cluster.worker.manager | There has model storage, start the model from storage
2025-03-31 20:56:29 | INFO | dbgpt.model.cluster.worker.manager | There has model storage, start the model from storage
2025-03-31 20:56:39 | INFO | dbgpt_app.openapi.api_v1.api_v1 | /controller/model/types
2025-03-31 20:56:39 | INFO | dbgpt.model.cluster.controller.controller | Get all instances with None, healthy_only: True
2025-03-31 20:56:39 | INFO | dbgpt.model.cluster.controller.controller | Get all instances with None, healthy_only: True
2025-03-31 20:56:39 | INFO | dbgpt_serve.agent.app.controller | app_detail:chat_normal,chat_normal
2025-03-31 20:56:47 | INFO | dbgpt_app.openapi.api_v1.api_v1 | chat_completions:chat_normal,,Qwen/QwQ-32B, timestamp=1743425807140
2025-03-31 20:56:47 | INFO | dbgpt_app.openapi.api_v1.api_v1 | get_chat_instance:conv_uid='95100ae2-0e09-11f0-a78a-0242ac110003' user_input='美国多少人口' user_name='001' chat_mode='chat_normal' app_code='chat_normal' temperature=0.6 max_new_tokens=4000 select_param='' model_name='Qwen/QwQ-32B' incremental=False sys_code=None prompt_code=None ext_info={}
2025-03-31 20:56:47 | INFO | dbgpt.core._private.prompt_registry | Get prompt template of scene_name: chat_normal with model_name: Qwen/QwQ-32B, proxyllm_backend: None, language: zh
2025-03-31 20:56:47 | INFO | dbgpt.core._private.prompt_registry | Get prompt template of scene_name: chat_normal with model_name: Qwen/QwQ-32B, proxyllm_backend: None, language: zh
2025-03-31 20:56:47 | INFO | dbgpt.core.awel.runner.local_runner | Begin run workflow from end operator, id: 851cbe62-ea3e-4fb0-8c79-e3b42775c82a, runner: <dbgpt.core.awel.runner.local_runner.DefaultWorkflowRunner object at 0x7f614d97be50>
2025-03-31 20:56:47 | INFO | dbgpt.core.awel.runner.local_runner | Begin run workflow from end operator, id: 851cbe62-ea3e-4fb0-8c79-e3b42775c82a, runner: <dbgpt.core.awel.runner.local_runner.DefaultWorkflowRunner object at 0x7f614d97be50>
2025-03-31 20:56:47 | INFO | dbgpt.core.awel.runner.local_runner | Begin run workflow from end operator, id: 851cbe62-ea3e-4fb0-8c79-e3b42775c82a, runner: <dbgpt.core.awel.runner.local_runner.DefaultWorkflowRunner object at 0x7f614d97be50>
2025-03-31 20:56:47 | INFO | dbgpt.core.awel.runner.local_runner | Begin run workflow from end operator, id: 5d3b711d-f3e3-4dac-b990-840084d41b15, runner: <dbgpt.core.awel.runner.local_runner.DefaultWorkflowRunner object at 0x7f614d97be50>
2025-03-31 20:56:47 | INFO | dbgpt.core.awel.runner.local_runner | Begin run workflow from end operator, id: 5d3b711d-f3e3-4dac-b990-840084d41b15, runner: <dbgpt.core.awel.runner.local_runner.DefaultWorkflowRunner object at 0x7f614d97be50>
2025-03-31 20:56:47 | INFO | dbgpt.core.awel.runner.local_runner | Begin run workflow from end operator, id: 5d3b711d-f3e3-4dac-b990-840084d41b15, runner: <dbgpt.core.awel.runner.local_runner.DefaultWorkflowRunner object at 0x7f614d97be50>
2025-03-31 20:56:47 | INFO | dbgpt_app.scene.base_chat | payload request: 
ModelRequest(model='Qwen/QwQ-32B', messages=[ModelMessage(role='system', content='你是一个有用的 AI 助手。', round_index=0), ModelMessage(role='human', content='美国多少人口', round_index=1), ModelMessage(role='human', content='美国多少人口', round_index=0)], temperature=0.6, top_p=None, max_new_tokens=4000, stop=None, stop_token_ids=None, context_len=None, echo=False, span_id='bcabc1036f3e3a0bbab0c8a0144aec33:fc41adbaab463f88', context=ModelRequestContext(stream=True, cache_enable=False, user_name='001', sys_code=None, conv_uid=None, span_id='bcabc1036f3e3a0bbab0c8a0144aec33:fc41adbaab463f88', chat_mode='chat_normal', chat_param=None, extra={}, request_id=None, is_reasoning_model=False))
2025-03-31 20:56:47 | INFO | dbgpt_app.scene.base_chat | payload request: 
ModelRequest(model='Qwen/QwQ-32B', messages=[ModelMessage(role='system', content='你是一个有用的 AI 助手。', round_index=0), ModelMessage(role='human', content='美国多少人口', round_index=1), ModelMessage(role='human', content='美国多少人口', round_index=0)], temperature=0.6, top_p=None, max_new_tokens=4000, stop=None, stop_token_ids=None, context_len=None, echo=False, span_id='bcabc1036f3e3a0bbab0c8a0144aec33:fc41adbaab463f88', context=ModelRequestContext(stream=True, cache_enable=False, user_name='001', sys_code=None, conv_uid=None, span_id='bcabc1036f3e3a0bbab0c8a0144aec33:fc41adbaab463f88', chat_mode='chat_normal', chat_param=None, extra={}, request_id=None, is_reasoning_model=False))
2025-03-31 20:56:47 | INFO | dbgpt.core.awel.runner.local_runner | Begin run workflow from end operator, id: e8f0326a-2e71-44e6-aae3-44fb1592fdc4, runner: <dbgpt.core.awel.runner.local_runner.DefaultWorkflowRunner object at 0x7f614d97be50>
2025-03-31 20:56:47 | INFO | dbgpt.core.awel.runner.local_runner | Begin run workflow from end operator, id: e8f0326a-2e71-44e6-aae3-44fb1592fdc4, runner: <dbgpt.core.awel.runner.local_runner.DefaultWorkflowRunner object at 0x7f614d97be50>
2025-03-31 20:56:47 | INFO | dbgpt.core.awel.runner.local_runner | Begin run workflow from end operator, id: e8f0326a-2e71-44e6-aae3-44fb1592fdc4, runner: <dbgpt.core.awel.runner.local_runner.DefaultWorkflowRunner object at 0x7f614d97be50>
2025-03-31 20:56:47 | INFO | dbgpt.core.awel.operators.common_operator | branch_input_ctxs 0 result None, is_empty: False
2025-03-31 20:56:47 | INFO | dbgpt.core.awel.operators.common_operator | branch_input_ctxs 0 result None, is_empty: False
2025-03-31 20:56:47 | INFO | dbgpt.core.awel.operators.common_operator | branch_input_ctxs 0 result None, is_empty: False
2025-03-31 20:56:47 | INFO | dbgpt.core.awel.operators.common_operator | Skip node name llm_model_cache_node
2025-03-31 20:56:47 | INFO | dbgpt.core.awel.operators.common_operator | Skip node name llm_model_cache_node
2025-03-31 20:56:47 | INFO | dbgpt.core.awel.operators.common_operator | Skip node name llm_model_cache_node
2025-03-31 20:56:47 | INFO | dbgpt.core.awel.operators.common_operator | branch_input_ctxs 1 result True, is_empty: False
2025-03-31 20:56:47 | INFO | dbgpt.core.awel.operators.common_operator | branch_input_ctxs 1 result True, is_empty: False
2025-03-31 20:56:47 | INFO | dbgpt.core.awel.operators.common_operator | branch_input_ctxs 1 result True, is_empty: False
2025-03-31 20:56:47 | INFO | dbgpt.core.awel.runner.local_runner | Skip node name llm_model_cache_node, node id f16b1e7d-01fe-4d08-809d-36c7cfe7f04a
2025-03-31 20:56:47 | INFO | dbgpt.core.awel.runner.local_runner | Skip node name llm_model_cache_node, node id f16b1e7d-01fe-4d08-809d-36c7cfe7f04a
2025-03-31 20:56:47 | INFO | dbgpt.core.awel.runner.local_runner | Skip node name llm_model_cache_node, node id f16b1e7d-01fe-4d08-809d-36c7cfe7f04a
2025-03-31 20:56:48 | INFO | dbgpt.model.adapter.base | Message version is v2
2025-03-31 20:56:48 | INFO | dbgpt.model.adapter.base | Message version is v2
2025-03-31 20:56:48 | INFO | dbgpt.model.adapter.base | support_system_message: True
2025-03-31 20:56:48 | INFO | dbgpt.model.adapter.base | support_system_message: True
2025-03-31 20:56:48 | INFO | dbgpt.model.cluster.worker.default_worker | current generate stream function is synchronous generate stream function
2025-03-31 20:56:48 | INFO | dbgpt.model.cluster.worker.default_worker | current generate stream function is synchronous generate stream function
2025-03-31 20:56:48 | INFO | dbgpt.model.cluster.worker.default_worker | llm_adapter: <CommonModelAdapter model_name=Qwen/QwQ-32B model_path=/home/DB-GPT/models/Qwen/QwQ-32B>

model prompt: 

<|im_start|>system
你是一个有用的 AI 助手。<|im_end|>
<|im_start|>user
美国多少人口<|im_end|>
<|im_start|>user
美国多少人口<|im_end|>
<|im_start|>assistant
<think>


generate stream output:

2025-03-31 20:56:48 | INFO | dbgpt.model.cluster.worker.default_worker | llm_adapter: <CommonModelAdapter model_name=Qwen/QwQ-32B model_path=/home/DB-GPT/models/Qwen/QwQ-32B>

model prompt: 

<|im_start|>system
你是一个有用的 AI 助手。<|im_end|>
<|im_start|>user
美国多少人口<|im_end|>
<|im_start|>user
美国多少人口<|im_end|>
<|im_start|>assistant
<think>


generate stream output:

2025-03-31 20:56:48 | INFO | dbgpt.model.llm.llm_out.hf_chat_llm | Predict with parameters: {'max_length': 131072, 'temperature': 0.6, 'streamer': <transformers.generation.streamers.TextIteratorStreamer object at 0x7f60115cc880>, 'top_p': 1.0, 'do_sample': True}
custom_stop_words: []
2025-03-31 20:56:49 | WARNING | transformers.generation.utils | The attention mask is not set and cannot be inferred from input because pad token is same as eos token. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
2025-03-31 20:56:49 | WARNING | transformers.generation.utils | The attention mask is not set and cannot be inferred from input because pad token is same as eos token. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
2025-03-31 20:57:38 | INFO | dbgpt.model.cluster.worker.default_worker | is_first_generate, usage: None
2025-03-31 20:57:38 | INFO | dbgpt.model.cluster.worker.default_worker | is_first_generate, usage: None
2025-04-01 09:28:15 | INFO | dbgpt.component | Register component with name dbgpt_unified_metadata_db_manager_factory and instance: <dbgpt.storage.metadata.db_factory.UnifiedDBManagerFactory object at 0x7f88c4a7ccd0>
2025-04-01 09:28:15 | INFO | dbgpt.component | Register component with name dbgpt_unified_metadata_db_manager_factory and instance: <dbgpt.storage.metadata.db_factory.UnifiedDBManagerFactory object at 0x7f88c4a7ccd0>
2025-04-01 09:28:15 | INFO | dbgpt.datasource.rdbms.base | Closing RDBMS connector resources...
2025-04-01 09:28:15 | INFO | dbgpt.datasource.rdbms.base | Closing RDBMS connector resources...
2025-04-01 09:28:17 | INFO | dbgpt.component | Register component with name dbgpt_thread_pool_default and instance: <dbgpt.util.executor_utils.DefaultExecutorFactory object at 0x7f88c1ad3d90>
2025-04-01 09:28:17 | INFO | dbgpt.component | Register component with name dbgpt_thread_pool_default and instance: <dbgpt.util.executor_utils.DefaultExecutorFactory object at 0x7f88c1ad3d90>
2025-04-01 09:28:17 | INFO | dbgpt.component | Register component with name dbgpt_default_scheduler and instance: <dbgpt_app.initialization.scheduler.DefaultScheduler object at 0x7f88c1ad33d0>
2025-04-01 09:28:17 | INFO | dbgpt.component | Register component with name dbgpt_default_scheduler and instance: <dbgpt_app.initialization.scheduler.DefaultScheduler object at 0x7f88c1ad33d0>
2025-04-01 09:28:17 | INFO | dbgpt.component | Register component with name dbgpt_model_controller and instance: <dbgpt.model.cluster.controller.controller.ModelControllerAdapter object at 0x7f92b644a260>
2025-04-01 09:28:17 | INFO | dbgpt.component | Register component with name dbgpt_model_controller and instance: <dbgpt.model.cluster.controller.controller.ModelControllerAdapter object at 0x7f92b644a260>
2025-04-01 09:28:17 | INFO | dbgpt.component | Register component with name dbgpt_connector_manager and instance: <dbgpt_serve.datasource.manages.connector_manager.ConnectorManager object at 0x7f88c1ad3250>
2025-04-01 09:28:17 | INFO | dbgpt.component | Register component with name dbgpt_connector_manager and instance: <dbgpt_serve.datasource.manages.connector_manager.ConnectorManager object at 0x7f88c1ad3250>
2025-04-01 09:28:17 | INFO | dbgpt.component | Register component with name dbgpt_rag_storage_manager and instance: <dbgpt_serve.rag.storage_manager.StorageManager object at 0x7f88c1ad3310>
2025-04-01 09:28:17 | INFO | dbgpt.component | Register component with name dbgpt_rag_storage_manager and instance: <dbgpt_serve.rag.storage_manager.StorageManager object at 0x7f88c1ad3310>
2025-04-01 09:28:17 | INFO | dbgpt.component | Register component with name dbgpt_plugin_hub and instance: <dbgpt_serve.agent.hub.controller.ModulePlugin object at 0x7f88c154c1c0>
2025-04-01 09:28:17 | INFO | dbgpt.component | Register component with name dbgpt_plugin_hub and instance: <dbgpt_serve.agent.hub.controller.ModulePlugin object at 0x7f88c154c1c0>
2025-04-01 09:28:17 | INFO | dbgpt.component | Register component with name dbgpt_multi_agents and instance: <dbgpt_serve.agent.agents.controller.MultiAgents object at 0x7f88c32fb6d0>
2025-04-01 09:28:17 | INFO | dbgpt.component | Register component with name dbgpt_multi_agents and instance: <dbgpt_serve.agent.agents.controller.MultiAgents object at 0x7f88c32fb6d0>
2025-04-01 09:28:17 | INFO | dbgpt_app.initialization.embedding_component | Register remote RemoteEmbeddingFactory
2025-04-01 09:28:17 | INFO | dbgpt.component | Register component with name embedding_factory and instance: <dbgpt_app.initialization.embedding_component.RemoteEmbeddingFactory object at 0x7f88c15b80d0>
2025-04-01 09:28:17 | INFO | dbgpt.component | Register component with name embedding_factory and instance: <dbgpt_app.initialization.embedding_component.RemoteEmbeddingFactory object at 0x7f88c15b80d0>
2025-04-01 09:28:17 | INFO | dbgpt.component | Register component with name dbgpt_model_cache_manager and instance: <dbgpt.storage.cache.manager.LocalCacheManager object at 0x7f88c15b81c0>
2025-04-01 09:28:17 | INFO | dbgpt.component | Register component with name dbgpt_model_cache_manager and instance: <dbgpt.storage.cache.manager.LocalCacheManager object at 0x7f88c15b81c0>
2025-04-01 09:28:17 | INFO | dbgpt.component | Register component with name dbgpt_awel_trigger_manager and instance: <dbgpt.core.awel.trigger.trigger_manager.DefaultTriggerManager object at 0x7f88c158bdf0>
2025-04-01 09:28:17 | INFO | dbgpt.component | Register component with name dbgpt_awel_trigger_manager and instance: <dbgpt.core.awel.trigger.trigger_manager.DefaultTriggerManager object at 0x7f88c158bdf0>
2025-04-01 09:28:17 | INFO | dbgpt.component | Register component with name dbgpt_awel_dag_manager and instance: <dbgpt.core.awel.dag.dag_manager.DAGManager object at 0x7f88c158bc40>
2025-04-01 09:28:17 | INFO | dbgpt.component | Register component with name dbgpt_awel_dag_manager and instance: <dbgpt.core.awel.dag.dag_manager.DAGManager object at 0x7f88c158bc40>
2025-04-01 09:28:17 | INFO | dbgpt.component | Register component with name dbgpt_resource_manager and instance: <dbgpt.agent.resource.manage.ResourceManager object at 0x7f88c158baf0>
2025-04-01 09:28:17 | INFO | dbgpt.component | Register component with name dbgpt_resource_manager and instance: <dbgpt.agent.resource.manage.ResourceManager object at 0x7f88c158baf0>
2025-04-01 09:28:17 | INFO | dbgpt.component | Register component with name dbgpt_agent_manager and instance: <dbgpt.agent.core.agent_manage.AgentManager object at 0x7f88c15f0040>
2025-04-01 09:28:17 | INFO | dbgpt.component | Register component with name dbgpt_agent_manager and instance: <dbgpt.agent.core.agent_manage.AgentManager object at 0x7f88c15f0040>
2025-04-01 09:28:17 | INFO | dbgpt.component | Register component with name dbgpt_app_editor_service and instance: <dbgpt_app.openapi.api_v1.editor.service.EditorService object at 0x7f88c15f1e70>
2025-04-01 09:28:17 | INFO | dbgpt.component | Register component with name dbgpt_app_editor_service and instance: <dbgpt_app.openapi.api_v1.editor.service.EditorService object at 0x7f88c15f1e70>
2025-04-01 09:28:17 | INFO | dbgpt.component | Register component with name dbgpt_serve_prompt and instance: <dbgpt_serve.prompt.serve.Serve object at 0x7f88c15f2050>
2025-04-01 09:28:17 | INFO | dbgpt.component | Register component with name dbgpt_serve_prompt and instance: <dbgpt_serve.prompt.serve.Serve object at 0x7f88c15f2050>
2025-04-01 09:28:17 | INFO | dbgpt.component | Register component with name dbgpt_serve_prompt_service and instance: <dbgpt_serve.prompt.service.service.Service object at 0x7f88c142df00>
2025-04-01 09:28:17 | INFO | dbgpt.component | Register component with name dbgpt_serve_prompt_service and instance: <dbgpt_serve.prompt.service.service.Service object at 0x7f88c142df00>
2025-04-01 09:28:17 | INFO | dbgpt.component | Register component with name dbgpt_serve_conversation and instance: <dbgpt_serve.conversation.serve.Serve object at 0x7f88c142df60>
2025-04-01 09:28:17 | INFO | dbgpt.component | Register component with name dbgpt_serve_conversation and instance: <dbgpt_serve.conversation.serve.Serve object at 0x7f88c142df60>
2025-04-01 09:28:17 | INFO | dbgpt.component | Register component with name dbgpt_serve_conversation_service and instance: <dbgpt_serve.conversation.service.service.Service object at 0x7f88c14a40a0>
2025-04-01 09:28:17 | INFO | dbgpt.component | Register component with name dbgpt_serve_conversation_service and instance: <dbgpt_serve.conversation.service.service.Service object at 0x7f88c14a40a0>
2025-04-01 09:28:17 | INFO | dbgpt.component | Register component with name dbgpt_variables_provider and instance: <dbgpt.core.interface.variables.StorageVariablesProvider object at 0x7f88c147fc70>
2025-04-01 09:28:17 | INFO | dbgpt.component | Register component with name dbgpt_variables_provider and instance: <dbgpt.core.interface.variables.StorageVariablesProvider object at 0x7f88c147fc70>
2025-04-01 09:28:17 | INFO | dbgpt.component | Register component with name dbgpt_serve_flow and instance: <dbgpt_serve.flow.serve.Serve object at 0x7f88c14a41c0>
2025-04-01 09:28:17 | INFO | dbgpt.component | Register component with name dbgpt_serve_flow and instance: <dbgpt_serve.flow.serve.Serve object at 0x7f88c14a41c0>
2025-04-01 09:28:18 | INFO | dbgpt.component | Register component with name dbgpt_dbgpts_loader and instance: <dbgpt.util.dbgpts.loader.DBGPTsLoader object at 0x7f88c08c6290>
2025-04-01 09:28:18 | INFO | dbgpt.component | Register component with name dbgpt_dbgpts_loader and instance: <dbgpt.util.dbgpts.loader.DBGPTsLoader object at 0x7f88c08c6290>
2025-04-01 09:28:18 | INFO | dbgpt.component | Register component with name dbgpt_serve_flow_service and instance: <dbgpt_serve.flow.service.service.Service object at 0x7f88c147f6d0>
2025-04-01 09:28:18 | INFO | dbgpt.component | Register component with name dbgpt_serve_flow_service and instance: <dbgpt_serve.flow.service.service.Service object at 0x7f88c147f6d0>
2025-04-01 09:28:18 | INFO | dbgpt.component | Register component with name dbgpt_serve_flow_variables_service and instance: <dbgpt_serve.flow.service.variables_service.VariablesService object at 0x7f88c08c6230>
2025-04-01 09:28:18 | INFO | dbgpt.component | Register component with name dbgpt_serve_flow_variables_service and instance: <dbgpt_serve.flow.service.variables_service.VariablesService object at 0x7f88c08c6230>
2025-04-01 09:28:18 | INFO | dbgpt.component | Register component with name dbgpt.core.flow.flows and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinFlowVariablesProvider object at 0x7f88c08c63e0>
2025-04-01 09:28:18 | INFO | dbgpt.component | Register component with name dbgpt.core.flow.flows and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinFlowVariablesProvider object at 0x7f88c08c63e0>
2025-04-01 09:28:18 | INFO | dbgpt.component | Register component with name dbgpt.core.flow.nodes and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinNodeVariablesProvider object at 0x7f88c08c6170>
2025-04-01 09:28:18 | INFO | dbgpt.component | Register component with name dbgpt.core.flow.nodes and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinNodeVariablesProvider object at 0x7f88c08c6170>
2025-04-01 09:28:18 | INFO | dbgpt.component | Register component with name dbgpt.core.variables and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinAllVariablesProvider object at 0x7f88c08c6350>
2025-04-01 09:28:18 | INFO | dbgpt.component | Register component with name dbgpt.core.variables and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinAllVariablesProvider object at 0x7f88c08c6350>
2025-04-01 09:28:18 | INFO | dbgpt.component | Register component with name dbgpt.core.secrets and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinAllSecretVariablesProvider object at 0x7f88c08c60b0>
2025-04-01 09:28:18 | INFO | dbgpt.component | Register component with name dbgpt.core.secrets and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinAllSecretVariablesProvider object at 0x7f88c08c60b0>
2025-04-01 09:28:18 | INFO | dbgpt.component | Register component with name dbgpt.core.model.llms and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinLLMVariablesProvider object at 0x7f88c08c6020>
2025-04-01 09:28:18 | INFO | dbgpt.component | Register component with name dbgpt.core.model.llms and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinLLMVariablesProvider object at 0x7f88c08c6020>
2025-04-01 09:28:18 | INFO | dbgpt.component | Register component with name dbgpt.core.model.embeddings and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinEmbeddingsVariablesProvider object at 0x7f88c08c5ff0>
2025-04-01 09:28:18 | INFO | dbgpt.component | Register component with name dbgpt.core.model.embeddings and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinEmbeddingsVariablesProvider object at 0x7f88c08c5ff0>
2025-04-01 09:28:18 | INFO | dbgpt.component | Register component with name dbgpt.core.datasources and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinDatasourceVariablesProvider object at 0x7f88c08c5e70>
2025-04-01 09:28:18 | INFO | dbgpt.component | Register component with name dbgpt.core.datasources and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinDatasourceVariablesProvider object at 0x7f88c08c5e70>
2025-04-01 09:28:18 | INFO | dbgpt.component | Register component with name dbgpt.core.agent.agents and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinAgentsVariablesProvider object at 0x7f88c08c5f30>
2025-04-01 09:28:18 | INFO | dbgpt.component | Register component with name dbgpt.core.agent.agents and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinAgentsVariablesProvider object at 0x7f88c08c5f30>
2025-04-01 09:28:18 | INFO | dbgpt.component | Register component with name dbgpt.core.knowledge_spaces and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinKnowledgeSpacesVariablesProvider object at 0x7f88c08c5d50>
2025-04-01 09:28:18 | INFO | dbgpt.component | Register component with name dbgpt.core.knowledge_spaces and instance: <dbgpt_serve.flow.api.variables_provider.BuiltinKnowledgeSpacesVariablesProvider object at 0x7f88c08c5d50>
2025-04-01 09:28:18 | INFO | dbgpt.component | Register component with name dbgpt_rag and instance: <dbgpt_serve.rag.serve.Serve object at 0x7f88c08c5e40>
2025-04-01 09:28:18 | INFO | dbgpt.component | Register component with name dbgpt_rag and instance: <dbgpt_serve.rag.serve.Serve object at 0x7f88c08c5e40>
2025-04-01 09:28:18 | INFO | dbgpt.component | Register component with name dbgpt_rag_service and instance: <dbgpt_serve.rag.service.service.Service object at 0x7f88c021e5f0>
2025-04-01 09:28:18 | INFO | dbgpt.component | Register component with name dbgpt_rag_service and instance: <dbgpt_serve.rag.service.service.Service object at 0x7f88c021e5f0>
2025-04-01 09:28:18 | INFO | dbgpt.component | Register component with name dbgpt_datasource and instance: <dbgpt_serve.datasource.serve.Serve object at 0x7f88c021e800>
2025-04-01 09:28:18 | INFO | dbgpt.component | Register component with name dbgpt_datasource and instance: <dbgpt_serve.datasource.serve.Serve object at 0x7f88c021e800>
2025-04-01 09:28:18 | INFO | dbgpt.component | Register component with name dbgpt_datasource_service and instance: <dbgpt_serve.datasource.service.service.Service object at 0x7f88c02b07c0>
2025-04-01 09:28:18 | INFO | dbgpt.component | Register component with name dbgpt_datasource_service and instance: <dbgpt_serve.datasource.service.service.Service object at 0x7f88c02b07c0>
2025-04-01 09:28:18 | INFO | dbgpt.component | Register component with name dbgpt_serve_feedback and instance: <dbgpt_serve.feedback.serve.Serve object at 0x7f88c02b08e0>
2025-04-01 09:28:18 | INFO | dbgpt.component | Register component with name dbgpt_serve_feedback and instance: <dbgpt_serve.feedback.serve.Serve object at 0x7f88c02b08e0>
2025-04-01 09:28:18 | INFO | dbgpt.component | Register component with name dbgpt_serve_feedback_service and instance: <dbgpt_serve.feedback.service.service.Service object at 0x7f88c02b3ee0>
2025-04-01 09:28:18 | INFO | dbgpt.component | Register component with name dbgpt_serve_feedback_service and instance: <dbgpt_serve.feedback.service.service.Service object at 0x7f88c02b3ee0>
2025-04-01 09:28:18 | INFO | dbgpt.component | Register component with name dbgpt_serve_dbgpts_hub and instance: <dbgpt_serve.dbgpts.hub.serve.Serve object at 0x7f88c02b36d0>
2025-04-01 09:28:18 | INFO | dbgpt.component | Register component with name dbgpt_serve_dbgpts_hub and instance: <dbgpt_serve.dbgpts.hub.serve.Serve object at 0x7f88c02b36d0>
2025-04-01 09:28:18 | INFO | dbgpt.component | Register component with name dbgpt_serve_dbgpts_hub_service and instance: <dbgpt_serve.dbgpts.hub.service.service.Service object at 0x7f88bfd8e080>
2025-04-01 09:28:18 | INFO | dbgpt.component | Register component with name dbgpt_serve_dbgpts_hub_service and instance: <dbgpt_serve.dbgpts.hub.service.service.Service object at 0x7f88bfd8e080>
2025-04-01 09:28:18 | INFO | dbgpt.component | Register component with name dbgpt_serve_dbgpts_my and instance: <dbgpt_serve.dbgpts.my.serve.Serve object at 0x7f88bfd8db10>
2025-04-01 09:28:18 | INFO | dbgpt.component | Register component with name dbgpt_serve_dbgpts_my and instance: <dbgpt_serve.dbgpts.my.serve.Serve object at 0x7f88bfd8db10>
2025-04-01 09:28:18 | INFO | dbgpt.component | Register component with name dbgpt_serve_dbgpts_my_service and instance: <dbgpt_serve.dbgpts.my.service.service.Service object at 0x7f88bfc2f6d0>
2025-04-01 09:28:18 | INFO | dbgpt.component | Register component with name dbgpt_serve_dbgpts_my_service and instance: <dbgpt_serve.dbgpts.my.service.service.Service object at 0x7f88bfc2f6d0>
2025-04-01 09:28:19 | INFO | dbgpt.component | Register component with name dbgpt_serve_file and instance: <dbgpt_serve.file.serve.Serve object at 0x7f88bfc2e680>
2025-04-01 09:28:19 | INFO | dbgpt.component | Register component with name dbgpt_serve_file and instance: <dbgpt_serve.file.serve.Serve object at 0x7f88bfc2e680>
2025-04-01 09:28:19 | INFO | dbgpt.component | Register component with name dbgpt_serve_file_service and instance: <dbgpt_serve.file.service.service.Service object at 0x7f88bfcd4550>
2025-04-01 09:28:19 | INFO | dbgpt.component | Register component with name dbgpt_serve_file_service and instance: <dbgpt_serve.file.service.service.Service object at 0x7f88bfcd4550>
2025-04-01 09:28:19 | INFO | dbgpt.component | Register component with name dbgpt_serve_evaluate and instance: <dbgpt_serve.evaluate.serve.Serve object at 0x7f88bfcd4340>
2025-04-01 09:28:19 | INFO | dbgpt.component | Register component with name dbgpt_serve_evaluate and instance: <dbgpt_serve.evaluate.serve.Serve object at 0x7f88bfcd4340>
2025-04-01 09:28:19 | INFO | dbgpt.component | Register component with name dbgpt_serve_evaluate_service and instance: <dbgpt_serve.evaluate.service.service.Service object at 0x7f88bfcd4af0>
2025-04-01 09:28:19 | INFO | dbgpt.component | Register component with name dbgpt_serve_evaluate_service and instance: <dbgpt_serve.evaluate.service.service.Service object at 0x7f88bfcd4af0>
2025-04-01 09:28:19 | INFO | dbgpt.component | Register component with name dbgpt_serve_libro and instance: <dbgpt_serve.libro.serve.Serve object at 0x7f88bf7a8340>
2025-04-01 09:28:19 | INFO | dbgpt.component | Register component with name dbgpt_serve_libro and instance: <dbgpt_serve.libro.serve.Serve object at 0x7f88bf7a8340>
2025-04-01 09:28:19 | INFO | dbgpt.component | Register component with name dbgpt_serve_libro_service and instance: <dbgpt_serve.libro.service.service.Service object at 0x7f88bf7fdf30>
2025-04-01 09:28:19 | INFO | dbgpt.component | Register component with name dbgpt_serve_libro_service and instance: <dbgpt_serve.libro.service.service.Service object at 0x7f88bf7fdf30>
2025-04-01 09:28:19 | INFO | dbgpt.component | Register component with name dbgpt_serve_model and instance: <dbgpt_serve.model.serve.Serve object at 0x7f88bf7fe050>
2025-04-01 09:28:19 | INFO | dbgpt.component | Register component with name dbgpt_serve_model and instance: <dbgpt_serve.model.serve.Serve object at 0x7f88bf7fe050>
2025-04-01 09:28:19 | INFO | dbgpt.component | Register component with name dbgpt_serve_model_service and instance: <dbgpt_serve.model.service.service.Service object at 0x7f88bf7fe290>
2025-04-01 09:28:19 | INFO | dbgpt.component | Register component with name dbgpt_serve_model_service and instance: <dbgpt_serve.model.service.service.Service object at 0x7f88bf7fe290>
2025-04-01 09:28:19 | INFO | dbgpt.component | Register component with name base_dbgpt_component and instance: <dbgpt.util.code.server.CodeServer object at 0x7f88bf65ba90>
2025-04-01 09:28:19 | INFO | dbgpt.component | Register component with name base_dbgpt_component and instance: <dbgpt.util.code.server.CodeServer object at 0x7f88bf65ba90>
2025-04-01 09:28:20 | WARNING | dbgpt.util._db_migration_utils | Initialize and upgrade database metadata with alembic, just run this in your development environment, if you deploy this in production environment, please run webserver with --disable_alembic_upgrade(`python dbgpt/app/dbgpt_server.py --disable_alembic_upgrade`).
we suggest you to use `dbgpt db migration` to initialize and upgrade database metadata with alembic, your can run `dbgpt db migration --help` to get more information.
2025-04-01 09:28:20 | INFO | alembic.runtime.migration | Context impl SQLiteImpl.
2025-04-01 09:28:20 | INFO | alembic.runtime.migration | Will assume non-transactional DDL.
2025-04-01 09:28:20 | INFO | dbgpt.util._db_migration_utils | Migration versions and their file paths:
========================================Migration versions========================================

b82f35a36053 (current): New migration (Path: /home/DB-GPT/pilot/meta_data/alembic/versions/b82f35a36053_new_migration.py)
b57d83cdc260 : New migration (Path: /home/DB-GPT/pilot/meta_data/alembic/versions/b57d83cdc260_new_migration.py)
c91048d5a6b5 : New migration (Path: /home/DB-GPT/pilot/meta_data/alembic/versions/c91048d5a6b5_new_migration.py)
77cb31a83832 : New migration (Path: /home/DB-GPT/pilot/meta_data/alembic/versions/77cb31a83832_new_migration.py)
==========================================================================================
2025-04-01 09:28:20 | INFO | alembic.runtime.migration | Context impl SQLiteImpl.
2025-04-01 09:28:20 | INFO | alembic.runtime.migration | Will assume non-transactional DDL.
2025-04-01 09:28:20 | INFO | alembic.runtime.migration | Context impl SQLiteImpl.
2025-04-01 09:28:20 | INFO | alembic.runtime.migration | Will assume non-transactional DDL.
2025-04-01 09:28:20 | INFO | dbgpt.util._db_migration_utils | alembic migration current revision: b82f35a36053, latest revision: b82f35a36053
2025-04-01 09:28:20 | INFO | alembic.runtime.migration | Context impl SQLiteImpl.
2025-04-01 09:28:20 | INFO | alembic.runtime.migration | Will assume non-transactional DDL.
2025-04-01 09:28:23 | INFO | alembic.runtime.migration | Context impl SQLiteImpl.
2025-04-01 09:28:23 | INFO | alembic.runtime.migration | Will assume non-transactional DDL.
2025-04-01 09:28:23 | INFO | alembic.runtime.migration | Running upgrade b82f35a36053 -> c21af0f4dc80, New migration
2025-04-01 09:28:23 | INFO | dbgpt.component | Register component with name dbgpt_file_storage_client and instance: <dbgpt.core.interface.file.FileStorageClient object at 0x7f88bdf73700>
2025-04-01 09:28:23 | INFO | dbgpt.component | Register component with name dbgpt_file_storage_client and instance: <dbgpt.core.interface.file.FileStorageClient object at 0x7f88bdf73700>
2025-04-01 09:28:23 | INFO | dbgpt_app.dbgpt_server | Model Unified Deployment Mode, run all services in the same process
2025-04-01 09:28:23 | INFO | dbgpt_app.dbgpt_server | Model Unified Deployment Mode, run all services in the same process
2025-04-01 09:28:23 | INFO | dbgpt.model.cluster.worker.manager | Register WorkerManager dbgpt_worker_manager_factory
2025-04-01 09:28:23 | INFO | dbgpt.model.cluster.worker.manager | Register WorkerManager dbgpt_worker_manager_factory
2025-04-01 09:28:23 | INFO | dbgpt.component | Register component with name dbgpt_worker_manager_factory and instance: <dbgpt.model.cluster.worker.manager._DefaultWorkerManagerFactory object at 0x7f88bde4b2b0>
2025-04-01 09:28:23 | INFO | dbgpt.component | Register component with name dbgpt_worker_manager_factory and instance: <dbgpt.model.cluster.worker.manager._DefaultWorkerManagerFactory object at 0x7f88bde4b2b0>
2025-04-01 09:28:23 | INFO | dbgpt.model.cluster.worker.manager | Worker params: 

=========================== ModelWorkerParameters ===========================

host: 0.0.0.0
port: 5670
daemon: False
log: 

=========================== LoggingParameters ===========================

level: INFO
file: None

======================================================================


trace: None
worker_type: None
worker_class: None
standalone: True
register: True
worker_register_host: None
controller_addr: None
send_heartbeat: True
heartbeat_interval: 20

======================================================================


2025-04-01 09:28:23 | INFO | dbgpt.model.cluster.worker.manager | Worker params: 

=========================== ModelWorkerParameters ===========================

host: 0.0.0.0
port: 5670
daemon: False
log: 

=========================== LoggingParameters ===========================

level: INFO
file: None

======================================================================


trace: None
worker_type: None
worker_class: None
standalone: True
register: True
worker_register_host: None
controller_addr: None
send_heartbeat: True
heartbeat_interval: 20

======================================================================


2025-04-01 09:28:23 | INFO | dbgpt.model.cluster.worker.manager | Run WorkerManager with standalone mode, controller_addr: http://127.0.0.1:5670
2025-04-01 09:28:23 | INFO | dbgpt.model.cluster.worker.manager | Run WorkerManager with standalone mode, controller_addr: http://127.0.0.1:5670
2025-04-01 09:28:23 | INFO | dbgpt.model.adapter.model_adapter | Current model Qwen/QwQ-32B use new adapter <CommonModelAdapter model_name=Qwen/QwQ-32B model_path=/home/DB-GPT/models/Qwen/QwQ-32B>
2025-04-01 09:28:23 | INFO | dbgpt.model.adapter.model_adapter | Current model Qwen/QwQ-32B use new adapter <CommonModelAdapter model_name=Qwen/QwQ-32B model_path=/home/DB-GPT/models/Qwen/QwQ-32B>
2025-04-01 09:28:23 | WARNING | dbgpt.util.api_utils | Health check failed for http://127.0.0.1:5670, error: HTTPConnectionPool(host='127.0.0.1', port=5670): Max retries exceeded with url: /api/health (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f88bde230d0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2025-04-01 09:28:23 | WARNING | dbgpt.util.api_utils | Health check failed for http://127.0.0.1:5670, error: HTTPConnectionPool(host='127.0.0.1', port=5670): Max retries exceeded with url: /api/health (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f88bde230d0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2025-04-01 09:28:23 | INFO | dbgpt.model.cluster.worker.default_worker | model_name: Qwen/QwQ-32B, model_path: /home/DB-GPT/models/Qwen/QwQ-32B, model_param_class: <class 'dbgpt.model.adapter.hf_adapter.HFLLMDeployModelParameters'>
2025-04-01 09:28:23 | INFO | dbgpt.model.cluster.worker.default_worker | model_name: Qwen/QwQ-32B, model_path: /home/DB-GPT/models/Qwen/QwQ-32B, model_param_class: <class 'dbgpt.model.adapter.hf_adapter.HFLLMDeployModelParameters'>
2025-04-01 09:28:23 | INFO | dbgpt.model.cluster.worker.manager | Init empty instances list for Qwen/QwQ-32B@llm
2025-04-01 09:28:23 | INFO | dbgpt.model.cluster.worker.manager | Init empty instances list for Qwen/QwQ-32B@llm
2025-04-01 09:28:23 | INFO | dbgpt.model.cluster.worker.manager | Start local embedding worker with embedding parameters


=========================== ModelWorkerParameters ===========================

host: 0.0.0.0
port: 8001
daemon: False
log: 

=========================== LoggingParameters ===========================

level: ${env:DBGPT_LOG_LEVEL:-INFO}
file: None

======================================================================


trace: None
worker_type: text2vec
worker_class: None
standalone: False
register: True
worker_register_host: None
controller_addr: None
send_heartbeat: True
heartbeat_interval: 20

======================================================================


2025-04-01 09:28:23 | INFO | dbgpt.model.cluster.worker.manager | Start local embedding worker with embedding parameters


=========================== ModelWorkerParameters ===========================

host: 0.0.0.0
port: 8001
daemon: False
log: 

=========================== LoggingParameters ===========================

level: ${env:DBGPT_LOG_LEVEL:-INFO}
file: None

======================================================================


trace: None
worker_type: text2vec
worker_class: None
standalone: False
register: True
worker_register_host: None
controller_addr: None
send_heartbeat: True
heartbeat_interval: 20

======================================================================


2025-04-01 09:28:23 | INFO | dbgpt.model.cluster.worker.manager | Init empty instances list for BAAI/bge-large-zh-v1.5@text2vec
2025-04-01 09:28:23 | INFO | dbgpt.model.cluster.worker.manager | Init empty instances list for BAAI/bge-large-zh-v1.5@text2vec
2025-04-01 09:28:23 | INFO | dbgpt.util.dbgpts.loader | Found 0 dbgpts packages from /root/.dbgpts/packages/13f94a500b3b8b8477e6f87356068c15
2025-04-01 09:28:23 | INFO | dbgpt_serve.flow.service.compat_service | Found compat file: 0.7.0, use latest: 0.7.0
2025-04-01 09:28:26 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/awel_flow_ui_components.py
2025-04-01 09:28:26 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/awel_flow_ui_components.py
2025-04-01 09:28:26 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/awel_flow_ui_components.py
2025-04-01 09:28:26 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_chat_dag_example.py
2025-04-01 09:28:26 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_chat_dag_example.py
2025-04-01 09:28:26 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_chat_dag_example.py
2025-04-01 09:28:26 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_dag_example) from mod <module 'unusual_prefix_7f93a289b452e786f74233daa5a969e1fd501b71_simple_chat_dag_example' from '/home/DB-GPT/examples/awel/simple_chat_dag_example.py'> and model file /home/DB-GPT/examples/awel/simple_chat_dag_example.py
2025-04-01 09:28:26 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_dag_example) from mod <module 'unusual_prefix_7f93a289b452e786f74233daa5a969e1fd501b71_simple_chat_dag_example' from '/home/DB-GPT/examples/awel/simple_chat_dag_example.py'> and model file /home/DB-GPT/examples/awel/simple_chat_dag_example.py
2025-04-01 09:28:26 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_dag_example) from mod <module 'unusual_prefix_7f93a289b452e786f74233daa5a969e1fd501b71_simple_chat_dag_example' from '/home/DB-GPT/examples/awel/simple_chat_dag_example.py'> and model file /home/DB-GPT/examples/awel/simple_chat_dag_example.py
2025-04-01 09:28:26 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_chat_history_example.py
2025-04-01 09:28:26 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_chat_history_example.py
2025-04-01 09:28:26 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_chat_history_example.py
2025-04-01 09:28:26 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_chat_history) from mod <module 'unusual_prefix_bac1fcf83805e9d79523500ef9de83e5115f69a1_simple_chat_history_example' from '/home/DB-GPT/examples/awel/simple_chat_history_example.py'> and model file /home/DB-GPT/examples/awel/simple_chat_history_example.py
2025-04-01 09:28:26 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_chat_history) from mod <module 'unusual_prefix_bac1fcf83805e9d79523500ef9de83e5115f69a1_simple_chat_history_example' from '/home/DB-GPT/examples/awel/simple_chat_history_example.py'> and model file /home/DB-GPT/examples/awel/simple_chat_history_example.py
2025-04-01 09:28:26 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_chat_history) from mod <module 'unusual_prefix_bac1fcf83805e9d79523500ef9de83e5115f69a1_simple_chat_history_example' from '/home/DB-GPT/examples/awel/simple_chat_history_example.py'> and model file /home/DB-GPT/examples/awel/simple_chat_history_example.py
2025-04-01 09:28:26 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_dag_example.py
2025-04-01 09:28:26 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_dag_example.py
2025-04-01 09:28:26 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_dag_example.py
2025-04-01 09:28:26 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=simple_dag_example) from mod <module 'unusual_prefix_fd02d664f9a189c3be5c5599808ca1d1153a6edf_simple_dag_example' from '/home/DB-GPT/examples/awel/simple_dag_example.py'> and model file /home/DB-GPT/examples/awel/simple_dag_example.py
2025-04-01 09:28:26 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=simple_dag_example) from mod <module 'unusual_prefix_fd02d664f9a189c3be5c5599808ca1d1153a6edf_simple_dag_example' from '/home/DB-GPT/examples/awel/simple_dag_example.py'> and model file /home/DB-GPT/examples/awel/simple_dag_example.py
2025-04-01 09:28:26 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=simple_dag_example) from mod <module 'unusual_prefix_fd02d664f9a189c3be5c5599808ca1d1153a6edf_simple_dag_example' from '/home/DB-GPT/examples/awel/simple_dag_example.py'> and model file /home/DB-GPT/examples/awel/simple_dag_example.py
2025-04-01 09:28:26 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/data_analyst_assistant.py
2025-04-01 09:28:26 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/data_analyst_assistant.py
2025-04-01 09:28:26 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/data_analyst_assistant.py
2025-04-01 09:28:26 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_data_analyst_assistant) from mod <module 'unusual_prefix_26267e42ed6b36891895191fc865906fc5c9903c_data_analyst_assistant' from '/home/DB-GPT/examples/awel/data_analyst_assistant.py'> and model file /home/DB-GPT/examples/awel/data_analyst_assistant.py
2025-04-01 09:28:26 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_data_analyst_assistant) from mod <module 'unusual_prefix_26267e42ed6b36891895191fc865906fc5c9903c_data_analyst_assistant' from '/home/DB-GPT/examples/awel/data_analyst_assistant.py'> and model file /home/DB-GPT/examples/awel/data_analyst_assistant.py
2025-04-01 09:28:26 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_data_analyst_assistant) from mod <module 'unusual_prefix_26267e42ed6b36891895191fc865906fc5c9903c_data_analyst_assistant' from '/home/DB-GPT/examples/awel/data_analyst_assistant.py'> and model file /home/DB-GPT/examples/awel/data_analyst_assistant.py
2025-04-01 09:28:26 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_llm_client_example.py
2025-04-01 09:28:26 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_llm_client_example.py
2025-04-01 09:28:26 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_llm_client_example.py
2025-04-01 09:28:26 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_llm_client_generate) from mod <module 'unusual_prefix_fa5740ee7c9c6d005009382b43e55de50b9eda0d_simple_llm_client_example' from '/home/DB-GPT/examples/awel/simple_llm_client_example.py'> and model file /home/DB-GPT/examples/awel/simple_llm_client_example.py
2025-04-01 09:28:26 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_llm_client_generate) from mod <module 'unusual_prefix_fa5740ee7c9c6d005009382b43e55de50b9eda0d_simple_llm_client_example' from '/home/DB-GPT/examples/awel/simple_llm_client_example.py'> and model file /home/DB-GPT/examples/awel/simple_llm_client_example.py
2025-04-01 09:28:26 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_llm_client_generate) from mod <module 'unusual_prefix_fa5740ee7c9c6d005009382b43e55de50b9eda0d_simple_llm_client_example' from '/home/DB-GPT/examples/awel/simple_llm_client_example.py'> and model file /home/DB-GPT/examples/awel/simple_llm_client_example.py
2025-04-01 09:28:26 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_llm_client_count_token) from mod <module 'unusual_prefix_fa5740ee7c9c6d005009382b43e55de50b9eda0d_simple_llm_client_example' from '/home/DB-GPT/examples/awel/simple_llm_client_example.py'> and model file /home/DB-GPT/examples/awel/simple_llm_client_example.py
2025-04-01 09:28:26 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_llm_client_count_token) from mod <module 'unusual_prefix_fa5740ee7c9c6d005009382b43e55de50b9eda0d_simple_llm_client_example' from '/home/DB-GPT/examples/awel/simple_llm_client_example.py'> and model file /home/DB-GPT/examples/awel/simple_llm_client_example.py
2025-04-01 09:28:26 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_llm_client_count_token) from mod <module 'unusual_prefix_fa5740ee7c9c6d005009382b43e55de50b9eda0d_simple_llm_client_example' from '/home/DB-GPT/examples/awel/simple_llm_client_example.py'> and model file /home/DB-GPT/examples/awel/simple_llm_client_example.py
2025-04-01 09:28:26 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_nl_schema_sql_chart_example.py
2025-04-01 09:28:26 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_nl_schema_sql_chart_example.py
2025-04-01 09:28:26 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_nl_schema_sql_chart_example.py
2025-04-01 09:28:27 | INFO | dbgpt.datasource.rdbms.base | Closing RDBMS connector resources...
2025-04-01 09:28:27 | INFO | dbgpt.datasource.rdbms.base | Closing RDBMS connector resources...
2025-04-01 09:28:27 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=simple_nl_schema_sql_chart_example) from mod <module 'unusual_prefix_aa5ab7ad0c92b4d4895d19a5e92366b8877d079f_simple_nl_schema_sql_chart_example' from '/home/DB-GPT/examples/awel/simple_nl_schema_sql_chart_example.py'> and model file /home/DB-GPT/examples/awel/simple_nl_schema_sql_chart_example.py
2025-04-01 09:28:27 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=simple_nl_schema_sql_chart_example) from mod <module 'unusual_prefix_aa5ab7ad0c92b4d4895d19a5e92366b8877d079f_simple_nl_schema_sql_chart_example' from '/home/DB-GPT/examples/awel/simple_nl_schema_sql_chart_example.py'> and model file /home/DB-GPT/examples/awel/simple_nl_schema_sql_chart_example.py
2025-04-01 09:28:27 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=simple_nl_schema_sql_chart_example) from mod <module 'unusual_prefix_aa5ab7ad0c92b4d4895d19a5e92366b8877d079f_simple_nl_schema_sql_chart_example' from '/home/DB-GPT/examples/awel/simple_nl_schema_sql_chart_example.py'> and model file /home/DB-GPT/examples/awel/simple_nl_schema_sql_chart_example.py
2025-04-01 09:28:27 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_rag_rewrite_example.py
2025-04-01 09:28:27 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_rag_rewrite_example.py
2025-04-01 09:28:27 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_rag_rewrite_example.py
2025-04-01 09:28:27 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_rag_rewrite_example) from mod <module 'unusual_prefix_bec60c6069e118fc06fbb667d7e76344b458c939_simple_rag_rewrite_example' from '/home/DB-GPT/examples/awel/simple_rag_rewrite_example.py'> and model file /home/DB-GPT/examples/awel/simple_rag_rewrite_example.py
2025-04-01 09:28:27 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_rag_rewrite_example) from mod <module 'unusual_prefix_bec60c6069e118fc06fbb667d7e76344b458c939_simple_rag_rewrite_example' from '/home/DB-GPT/examples/awel/simple_rag_rewrite_example.py'> and model file /home/DB-GPT/examples/awel/simple_rag_rewrite_example.py
2025-04-01 09:28:27 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_rag_rewrite_example) from mod <module 'unusual_prefix_bec60c6069e118fc06fbb667d7e76344b458c939_simple_rag_rewrite_example' from '/home/DB-GPT/examples/awel/simple_rag_rewrite_example.py'> and model file /home/DB-GPT/examples/awel/simple_rag_rewrite_example.py
2025-04-01 09:28:27 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_rag_summary_example.py
2025-04-01 09:28:27 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_rag_summary_example.py
2025-04-01 09:28:27 | INFO | dbgpt.core.awel.dag.loader | Importing /home/DB-GPT/examples/awel/simple_rag_summary_example.py
2025-04-01 09:28:27 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_rag_summary_example) from mod <module 'unusual_prefix_14e17e50bbe0790c364d347efeda2ebbb9628315_simple_rag_summary_example' from '/home/DB-GPT/examples/awel/simple_rag_summary_example.py'> and model file /home/DB-GPT/examples/awel/simple_rag_summary_example.py
2025-04-01 09:28:27 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_rag_summary_example) from mod <module 'unusual_prefix_14e17e50bbe0790c364d347efeda2ebbb9628315_simple_rag_summary_example' from '/home/DB-GPT/examples/awel/simple_rag_summary_example.py'> and model file /home/DB-GPT/examples/awel/simple_rag_summary_example.py
2025-04-01 09:28:27 | INFO | dbgpt.core.awel.dag.loader | Found dag DAG(dag_id=dbgpt_awel_simple_rag_summary_example) from mod <module 'unusual_prefix_14e17e50bbe0790c364d347efeda2ebbb9628315_simple_rag_summary_example' from '/home/DB-GPT/examples/awel/simple_rag_summary_example.py'> and model file /home/DB-GPT/examples/awel/simple_rag_summary_example.py
2025-04-01 09:28:27 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=46971329-41f0-4f6f-9aee-b84ad335f2e6)
2025-04-01 09:28:27 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=46971329-41f0-4f6f-9aee-b84ad335f2e6)
2025-04-01 09:28:27 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7f8876b556c0>(AWEL_trigger_route__examples_simple_chat), endpoint: /examples/simple_chat, methods: ['POST']
2025-04-01 09:28:27 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7f8876b556c0>(AWEL_trigger_route__examples_simple_chat), endpoint: /examples/simple_chat, methods: ['POST']
2025-04-01 09:28:27 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7f8876b556c0>(AWEL_trigger_route__examples_simple_chat), endpoint: /examples/simple_chat, methods: ['POST']
2025-04-01 09:28:27 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/simple_chat
2025-04-01 09:28:27 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/simple_chat
2025-04-01 09:28:27 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/simple_chat
2025-04-01 09:28:27 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7f88c158bd60> to prefix path /api/v1/awel/trigger
2025-04-01 09:28:27 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7f88c158bd60> to prefix path /api/v1/awel/trigger
2025-04-01 09:28:27 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=039bea72-efbc-4504-8ca9-29692e1c32d1)
2025-04-01 09:28:27 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=039bea72-efbc-4504-8ca9-29692e1c32d1)
2025-04-01 09:28:27 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7f8876b563b0>(AWEL_trigger_route__examples_simple_history_multi_round_chat_completions), endpoint: /examples/simple_history/multi_round/chat/completions, methods: ['POST']
2025-04-01 09:28:27 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7f8876b563b0>(AWEL_trigger_route__examples_simple_history_multi_round_chat_completions), endpoint: /examples/simple_history/multi_round/chat/completions, methods: ['POST']
2025-04-01 09:28:27 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7f8876b563b0>(AWEL_trigger_route__examples_simple_history_multi_round_chat_completions), endpoint: /examples/simple_history/multi_round/chat/completions, methods: ['POST']
2025-04-01 09:28:27 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/simple_history/multi_round/chat/completions
2025-04-01 09:28:27 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/simple_history/multi_round/chat/completions
2025-04-01 09:28:27 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/simple_history/multi_round/chat/completions
2025-04-01 09:28:27 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7f88c158bd60> to prefix path /api/v1/awel/trigger
2025-04-01 09:28:27 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7f88c158bd60> to prefix path /api/v1/awel/trigger
2025-04-01 09:28:27 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=7941c032-b736-410d-b142-5ff652df3f1e)
2025-04-01 09:28:27 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=7941c032-b736-410d-b142-5ff652df3f1e)
2025-04-01 09:28:27 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function_get at 0x7f8876b55cf0>(AWEL_trigger_route__examples_hello), endpoint: /examples/hello, methods: ['GET']
2025-04-01 09:28:27 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function_get at 0x7f8876b55cf0>(AWEL_trigger_route__examples_hello), endpoint: /examples/hello, methods: ['GET']
2025-04-01 09:28:27 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function_get at 0x7f8876b55cf0>(AWEL_trigger_route__examples_hello), endpoint: /examples/hello, methods: ['GET']
2025-04-01 09:28:27 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/hello
2025-04-01 09:28:27 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/hello
2025-04-01 09:28:27 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/hello
2025-04-01 09:28:28 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7f88c158bd60> to prefix path /api/v1/awel/trigger
2025-04-01 09:28:28 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7f88c158bd60> to prefix path /api/v1/awel/trigger
2025-04-01 09:28:28 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=0ea4f0ba-d939-4dec-a6f6-96f9a86bfa99)
2025-04-01 09:28:28 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=0ea4f0ba-d939-4dec-a6f6-96f9a86bfa99)
2025-04-01 09:28:28 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7f8876b55630>(AWEL_trigger_route__examples_data_analyst_copilot), endpoint: /examples/data_analyst/copilot, methods: ['POST']
2025-04-01 09:28:28 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7f8876b55630>(AWEL_trigger_route__examples_data_analyst_copilot), endpoint: /examples/data_analyst/copilot, methods: ['POST']
2025-04-01 09:28:28 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7f8876b55630>(AWEL_trigger_route__examples_data_analyst_copilot), endpoint: /examples/data_analyst/copilot, methods: ['POST']
2025-04-01 09:28:28 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/data_analyst/copilot
2025-04-01 09:28:28 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/data_analyst/copilot
2025-04-01 09:28:28 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/data_analyst/copilot
2025-04-01 09:28:28 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7f88c158bd60> to prefix path /api/v1/awel/trigger
2025-04-01 09:28:28 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7f88c158bd60> to prefix path /api/v1/awel/trigger
2025-04-01 09:28:28 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=9d27c30f-28bf-471d-8c6f-d44ddf56c119)
2025-04-01 09:28:28 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=9d27c30f-28bf-471d-8c6f-d44ddf56c119)
2025-04-01 09:28:28 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7f8876b57640>(AWEL_trigger_route__examples_simple_client_chat_completions), endpoint: /examples/simple_client/chat/completions, methods: ['POST']
2025-04-01 09:28:28 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7f8876b57640>(AWEL_trigger_route__examples_simple_client_chat_completions), endpoint: /examples/simple_client/chat/completions, methods: ['POST']
2025-04-01 09:28:28 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7f8876b57640>(AWEL_trigger_route__examples_simple_client_chat_completions), endpoint: /examples/simple_client/chat/completions, methods: ['POST']
2025-04-01 09:28:28 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/simple_client/chat/completions
2025-04-01 09:28:28 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/simple_client/chat/completions
2025-04-01 09:28:28 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/simple_client/chat/completions
2025-04-01 09:28:28 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7f88c158bd60> to prefix path /api/v1/awel/trigger
2025-04-01 09:28:28 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7f88c158bd60> to prefix path /api/v1/awel/trigger
2025-04-01 09:28:28 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=61c5715d-ca55-4d91-bb2d-a560646dd2e2)
2025-04-01 09:28:28 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=61c5715d-ca55-4d91-bb2d-a560646dd2e2)
2025-04-01 09:28:28 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7f8876b9cc10>(AWEL_trigger_route__examples_simple_client_count_token), endpoint: /examples/simple_client/count_token, methods: ['POST']
2025-04-01 09:28:28 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7f8876b9cc10>(AWEL_trigger_route__examples_simple_client_count_token), endpoint: /examples/simple_client/count_token, methods: ['POST']
2025-04-01 09:28:28 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7f8876b9cc10>(AWEL_trigger_route__examples_simple_client_count_token), endpoint: /examples/simple_client/count_token, methods: ['POST']
2025-04-01 09:28:28 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/simple_client/count_token
2025-04-01 09:28:28 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/simple_client/count_token
2025-04-01 09:28:28 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/simple_client/count_token
2025-04-01 09:28:28 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7f88c158bd60> to prefix path /api/v1/awel/trigger
2025-04-01 09:28:28 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7f88c158bd60> to prefix path /api/v1/awel/trigger
2025-04-01 09:28:28 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=4bd09b8b-fa3c-4d69-a0d3-fa728a486399)
2025-04-01 09:28:28 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=4bd09b8b-fa3c-4d69-a0d3-fa728a486399)
2025-04-01 09:28:28 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7f8876b57d90>(AWEL_trigger_route__examples_rag_schema_linking), endpoint: /examples/rag/schema_linking, methods: ['POST']
2025-04-01 09:28:28 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7f8876b57d90>(AWEL_trigger_route__examples_rag_schema_linking), endpoint: /examples/rag/schema_linking, methods: ['POST']
2025-04-01 09:28:28 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7f8876b57d90>(AWEL_trigger_route__examples_rag_schema_linking), endpoint: /examples/rag/schema_linking, methods: ['POST']
2025-04-01 09:28:28 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/rag/schema_linking
2025-04-01 09:28:28 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/rag/schema_linking
2025-04-01 09:28:28 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/rag/schema_linking
2025-04-01 09:28:28 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7f88c158bd60> to prefix path /api/v1/awel/trigger
2025-04-01 09:28:28 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7f88c158bd60> to prefix path /api/v1/awel/trigger
2025-04-01 09:28:28 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=d745380a-d7f9-4918-8311-51dd30ddd353)
2025-04-01 09:28:28 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=d745380a-d7f9-4918-8311-51dd30ddd353)
2025-04-01 09:28:28 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7f8876b9cd30>(AWEL_trigger_route__examples_rag_rewrite), endpoint: /examples/rag/rewrite, methods: ['POST']
2025-04-01 09:28:28 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7f8876b9cd30>(AWEL_trigger_route__examples_rag_rewrite), endpoint: /examples/rag/rewrite, methods: ['POST']
2025-04-01 09:28:28 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7f8876b9cd30>(AWEL_trigger_route__examples_rag_rewrite), endpoint: /examples/rag/rewrite, methods: ['POST']
2025-04-01 09:28:28 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/rag/rewrite
2025-04-01 09:28:28 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/rag/rewrite
2025-04-01 09:28:28 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/rag/rewrite
2025-04-01 09:28:28 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7f88c158bd60> to prefix path /api/v1/awel/trigger
2025-04-01 09:28:28 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7f88c158bd60> to prefix path /api/v1/awel/trigger
2025-04-01 09:28:28 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=5d88aa60-2fc2-48cc-86d9-238141287a0c)
2025-04-01 09:28:28 | INFO | dbgpt.core.awel.trigger.trigger_manager | Register trigger HttpTrigger(node_id=5d88aa60-2fc2-48cc-86d9-238141287a0c)
2025-04-01 09:28:28 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7f8876b9d2d0>(AWEL_trigger_route__examples_rag_summary), endpoint: /examples/rag/summary, methods: ['POST']
2025-04-01 09:28:28 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7f8876b9d2d0>(AWEL_trigger_route__examples_rag_summary), endpoint: /examples/rag/summary, methods: ['POST']
2025-04-01 09:28:28 | INFO | dbgpt.core.awel.trigger.http_trigger | mount router function <function HttpTrigger._create_route_func.<locals>.create_route_function.<locals>.route_function at 0x7f8876b9d2d0>(AWEL_trigger_route__examples_rag_summary), endpoint: /examples/rag/summary, methods: ['POST']
2025-04-01 09:28:28 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/rag/summary
2025-04-01 09:28:28 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/rag/summary
2025-04-01 09:28:28 | INFO | dbgpt.core.awel.trigger.http_trigger | Mount http trigger success, path: /api/v1/awel/trigger/examples/rag/summary
2025-04-01 09:28:28 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7f88c158bd60> to prefix path /api/v1/awel/trigger
2025-04-01 09:28:28 | INFO | dbgpt.core.awel.trigger.trigger_manager | Include router <fastapi.routing.APIRouter object at 0x7f88c158bd60> to prefix path /api/v1/awel/trigger
2025-04-01 09:28:28 | WARNING | dbgpt.util.api_utils | Health check failed for http://127.0.0.1:5670, error: HTTPConnectionPool(host='127.0.0.1', port=5670): Max retries exceeded with url: /api/health (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8876a35db0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2025-04-01 09:28:28 | WARNING | dbgpt.util.api_utils | Health check failed for http://127.0.0.1:5670, error: HTTPConnectionPool(host='127.0.0.1', port=5670): Max retries exceeded with url: /api/health (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8876a35db0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2025-04-01 09:28:29 | INFO | dbgpt.model.cluster.worker.manager | Begin start all worker, apply_req: None
2025-04-01 09:28:29 | INFO | dbgpt.model.cluster.worker.manager | Begin start all worker, apply_req: None
2025-04-01 09:28:29 | INFO | dbgpt.model.cluster.worker.manager | Apply req: None, apply_func: <function LocalWorkerManager._start_all_worker.<locals>._start_worker at 0x7f887699c790>
2025-04-01 09:28:29 | INFO | dbgpt.model.cluster.worker.manager | Apply req: None, apply_func: <function LocalWorkerManager._start_all_worker.<locals>._start_worker at 0x7f887699c790>
2025-04-01 09:28:29 | INFO | dbgpt.model.cluster.worker.manager | Apply to all workers
2025-04-01 09:28:29 | INFO | dbgpt.model.cluster.worker.manager | Apply to all workers
2025-04-01 09:28:29 | INFO | dbgpt.model.cluster.worker.default_worker | Begin load model, model params: 

=========================== HFLLMDeployModelParameters ===========================

name: Qwen/QwQ-32B
provider: hf
verbose: False
concurrency: 5
backend: None
prompt_template: None
context_length: None
reasoning_model: None
path: models/Qwen/QwQ-32B
device: None
trust_remote_code: True
quantization: None
low_cpu_mem_usage: None
num_gpus: None
max_gpu_memory: None
torch_dtype: None
attn_implementation: None

======================================================================


2025-04-01 09:28:29 | INFO | dbgpt.model.cluster.worker.default_worker | Begin load model, model params: 

=========================== HFLLMDeployModelParameters ===========================

name: Qwen/QwQ-32B
provider: hf
verbose: False
concurrency: 5
backend: None
prompt_template: None
context_length: None
reasoning_model: None
path: models/Qwen/QwQ-32B
device: None
trust_remote_code: True
quantization: None
low_cpu_mem_usage: None
num_gpus: None
max_gpu_memory: None
torch_dtype: None
attn_implementation: None

======================================================================


2025-04-01 09:28:30 | INFO | dbgpt.model.adapter.hf_adapter | Load model from /home/DB-GPT/models/Qwen/QwQ-32B, from_pretrained_kwargs: {'device_map': 'auto', 'max_memory': {0: '27GiB', 1: '27GiB', 2: '27GiB', 3: '27GiB', 4: '27GiB', 5: '27GiB', 6: '27GiB', 7: '27GiB'}, 'torch_dtype': torch.float16, 'low_cpu_mem_usage': True}
2025-04-01 09:28:30 | INFO | dbgpt.model.adapter.hf_adapter | Load model from /home/DB-GPT/models/Qwen/QwQ-32B, from_pretrained_kwargs: {'device_map': 'auto', 'max_memory': {0: '27GiB', 1: '27GiB', 2: '27GiB', 3: '27GiB', 4: '27GiB', 5: '27GiB', 6: '27GiB', 7: '27GiB'}, 'torch_dtype': torch.float16, 'low_cpu_mem_usage': True}
2025-04-01 09:28:32 | WARNING | transformers.models.qwen2.modeling_qwen2 | Sliding Window Attention is enabled but not implemented for `sdpa`; unexpected results may be encountered.
2025-04-01 09:28:32 | WARNING | transformers.models.qwen2.modeling_qwen2 | Sliding Window Attention is enabled but not implemented for `sdpa`; unexpected results may be encountered.
2025-04-01 09:28:35 | INFO | dbgpt.util.code.server | Code server is ready
2025-04-01 09:29:11 | INFO | dbgpt.model.cluster.worker.default_worker | Parse model max length 131072 from model Qwen/QwQ-32B.
2025-04-01 09:29:11 | INFO | dbgpt.model.cluster.worker.default_worker | Parse model max length 131072 from model Qwen/QwQ-32B.
2025-04-01 09:29:11 | INFO | dbgpt.model.cluster.worker.embedding_worker | Load embeddings model: BAAI/bge-large-zh-v1.5
2025-04-01 09:29:12 | INFO | datasets | PyTorch version 2.4.1+das.opt2.dtk2504 available.
2025-04-01 09:29:12 | INFO | datasets | Duckdb version 1.2.0 available.
2025-04-01 09:29:12 | INFO | sentence_transformers.SentenceTransformer | Use pytorch device_name: cuda
2025-04-01 09:29:12 | INFO | sentence_transformers.SentenceTransformer | Load pretrained SentenceTransformer: /home/DB-GPT/models/BAAI/bge-large-zh-v1.5
2025-04-01 09:29:13 | INFO | dbgpt.model.cluster.worker.manager | There has model storage, start the model from storage
2025-04-01 09:29:13 | INFO | dbgpt.model.cluster.worker.manager | There has model storage, start the model from storage
2025-04-01 09:29:49 | INFO | dbgpt_app.openapi.api_v1.api_v1 | chat_completions:chat_normal,,Qwen/QwQ-32B, timestamp=1743470989945
2025-04-01 09:29:49 | INFO | dbgpt_app.openapi.api_v1.api_v1 | get_chat_instance:conv_uid='95100ae2-0e09-11f0-a78a-0242ac110003' user_input='美国多少人口' user_name='001' chat_mode='chat_normal' app_code='chat_normal' temperature=0.6 max_new_tokens=4000 select_param='' model_name='Qwen/QwQ-32B' incremental=False sys_code=None prompt_code=None ext_info={}
2025-04-01 09:29:50 | INFO | dbgpt.core._private.prompt_registry | Get prompt template of scene_name: chat_normal with model_name: Qwen/QwQ-32B, proxyllm_backend: None, language: zh
2025-04-01 09:29:50 | INFO | dbgpt.core._private.prompt_registry | Get prompt template of scene_name: chat_normal with model_name: Qwen/QwQ-32B, proxyllm_backend: None, language: zh
2025-04-01 09:29:50 | INFO | dbgpt.core.awel.runner.local_runner | Begin run workflow from end operator, id: 98dd7cf9-757f-4cb2-bae3-783a9bdd334b, runner: <dbgpt.core.awel.runner.local_runner.DefaultWorkflowRunner object at 0x7f88c158be20>
2025-04-01 09:29:50 | INFO | dbgpt.core.awel.runner.local_runner | Begin run workflow from end operator, id: 98dd7cf9-757f-4cb2-bae3-783a9bdd334b, runner: <dbgpt.core.awel.runner.local_runner.DefaultWorkflowRunner object at 0x7f88c158be20>
2025-04-01 09:29:50 | INFO | dbgpt.core.awel.runner.local_runner | Begin run workflow from end operator, id: 98dd7cf9-757f-4cb2-bae3-783a9bdd334b, runner: <dbgpt.core.awel.runner.local_runner.DefaultWorkflowRunner object at 0x7f88c158be20>
2025-04-01 09:29:50 | INFO | dbgpt.core.awel.runner.local_runner | Begin run workflow from end operator, id: 8652811a-7b3f-4d44-afbe-a10af341b564, runner: <dbgpt.core.awel.runner.local_runner.DefaultWorkflowRunner object at 0x7f88c158be20>
2025-04-01 09:29:50 | INFO | dbgpt.core.awel.runner.local_runner | Begin run workflow from end operator, id: 8652811a-7b3f-4d44-afbe-a10af341b564, runner: <dbgpt.core.awel.runner.local_runner.DefaultWorkflowRunner object at 0x7f88c158be20>
2025-04-01 09:29:50 | INFO | dbgpt.core.awel.runner.local_runner | Begin run workflow from end operator, id: 8652811a-7b3f-4d44-afbe-a10af341b564, runner: <dbgpt.core.awel.runner.local_runner.DefaultWorkflowRunner object at 0x7f88c158be20>
2025-04-01 09:29:50 | INFO | dbgpt_app.scene.base_chat | payload request: 
ModelRequest(model='Qwen/QwQ-32B', messages=[ModelMessage(role='system', content='你是一个有用的 AI 助手。', round_index=0), ModelMessage(role='human', content='美国多少人口', round_index=1), ModelMessage(role='human', content='美国多少人口', round_index=0)], temperature=0.6, top_p=None, max_new_tokens=4000, stop=None, stop_token_ids=None, context_len=None, echo=False, span_id='737a4c4edb75b4d81276b143d361a403:ed0080d7b1f70830', context=ModelRequestContext(stream=True, cache_enable=False, user_name='001', sys_code=None, conv_uid=None, span_id='737a4c4edb75b4d81276b143d361a403:ed0080d7b1f70830', chat_mode='chat_normal', chat_param=None, extra={}, request_id=None, is_reasoning_model=False))
2025-04-01 09:29:50 | INFO | dbgpt_app.scene.base_chat | payload request: 
ModelRequest(model='Qwen/QwQ-32B', messages=[ModelMessage(role='system', content='你是一个有用的 AI 助手。', round_index=0), ModelMessage(role='human', content='美国多少人口', round_index=1), ModelMessage(role='human', content='美国多少人口', round_index=0)], temperature=0.6, top_p=None, max_new_tokens=4000, stop=None, stop_token_ids=None, context_len=None, echo=False, span_id='737a4c4edb75b4d81276b143d361a403:ed0080d7b1f70830', context=ModelRequestContext(stream=True, cache_enable=False, user_name='001', sys_code=None, conv_uid=None, span_id='737a4c4edb75b4d81276b143d361a403:ed0080d7b1f70830', chat_mode='chat_normal', chat_param=None, extra={}, request_id=None, is_reasoning_model=False))
2025-04-01 09:29:50 | INFO | dbgpt.core.awel.runner.local_runner | Begin run workflow from end operator, id: 1a41dbf5-a3a6-43d7-ba38-4e309dfb7ed1, runner: <dbgpt.core.awel.runner.local_runner.DefaultWorkflowRunner object at 0x7f88c158be20>
2025-04-01 09:29:50 | INFO | dbgpt.core.awel.runner.local_runner | Begin run workflow from end operator, id: 1a41dbf5-a3a6-43d7-ba38-4e309dfb7ed1, runner: <dbgpt.core.awel.runner.local_runner.DefaultWorkflowRunner object at 0x7f88c158be20>
2025-04-01 09:29:50 | INFO | dbgpt.core.awel.runner.local_runner | Begin run workflow from end operator, id: 1a41dbf5-a3a6-43d7-ba38-4e309dfb7ed1, runner: <dbgpt.core.awel.runner.local_runner.DefaultWorkflowRunner object at 0x7f88c158be20>
2025-04-01 09:29:50 | INFO | dbgpt.core.awel.operators.common_operator | branch_input_ctxs 0 result None, is_empty: False
2025-04-01 09:29:50 | INFO | dbgpt.core.awel.operators.common_operator | branch_input_ctxs 0 result None, is_empty: False
2025-04-01 09:29:50 | INFO | dbgpt.core.awel.operators.common_operator | branch_input_ctxs 0 result None, is_empty: False
2025-04-01 09:29:50 | INFO | dbgpt.core.awel.operators.common_operator | Skip node name llm_model_cache_node
2025-04-01 09:29:50 | INFO | dbgpt.core.awel.operators.common_operator | Skip node name llm_model_cache_node
2025-04-01 09:29:50 | INFO | dbgpt.core.awel.operators.common_operator | Skip node name llm_model_cache_node
2025-04-01 09:29:50 | INFO | dbgpt.core.awel.operators.common_operator | branch_input_ctxs 1 result True, is_empty: False
2025-04-01 09:29:50 | INFO | dbgpt.core.awel.operators.common_operator | branch_input_ctxs 1 result True, is_empty: False
2025-04-01 09:29:50 | INFO | dbgpt.core.awel.operators.common_operator | branch_input_ctxs 1 result True, is_empty: False
2025-04-01 09:29:50 | INFO | dbgpt.core.awel.runner.local_runner | Skip node name llm_model_cache_node, node id e9e1b2ee-071d-42ff-a84c-f1ff8259ac85
2025-04-01 09:29:50 | INFO | dbgpt.core.awel.runner.local_runner | Skip node name llm_model_cache_node, node id e9e1b2ee-071d-42ff-a84c-f1ff8259ac85
2025-04-01 09:29:50 | INFO | dbgpt.core.awel.runner.local_runner | Skip node name llm_model_cache_node, node id e9e1b2ee-071d-42ff-a84c-f1ff8259ac85
2025-04-01 09:29:50 | INFO | dbgpt.model.adapter.base | Message version is v2
2025-04-01 09:29:50 | INFO | dbgpt.model.adapter.base | Message version is v2
2025-04-01 09:29:50 | INFO | dbgpt.model.adapter.base | support_system_message: True
2025-04-01 09:29:50 | INFO | dbgpt.model.adapter.base | support_system_message: True
2025-04-01 09:29:50 | INFO | dbgpt.model.cluster.worker.default_worker | current generate stream function is synchronous generate stream function
2025-04-01 09:29:50 | INFO | dbgpt.model.cluster.worker.default_worker | current generate stream function is synchronous generate stream function
2025-04-01 09:29:50 | INFO | dbgpt.model.cluster.worker.default_worker | llm_adapter: <CommonModelAdapter model_name=Qwen/QwQ-32B model_path=/home/DB-GPT/models/Qwen/QwQ-32B>

model prompt: 

<|im_start|>system
你是一个有用的 AI 助手。<|im_end|>
<|im_start|>user
美国多少人口<|im_end|>
<|im_start|>user
美国多少人口<|im_end|>
<|im_start|>assistant
<think>


generate stream output:

2025-04-01 09:29:50 | INFO | dbgpt.model.cluster.worker.default_worker | llm_adapter: <CommonModelAdapter model_name=Qwen/QwQ-32B model_path=/home/DB-GPT/models/Qwen/QwQ-32B>

model prompt: 

<|im_start|>system
你是一个有用的 AI 助手。<|im_end|>
<|im_start|>user
美国多少人口<|im_end|>
<|im_start|>user
美国多少人口<|im_end|>
<|im_start|>assistant
<think>


generate stream output:

2025-04-01 09:29:50 | INFO | dbgpt.model.llm.llm_out.hf_chat_llm | Predict with parameters: {'max_length': 131072, 'temperature': 0.6, 'streamer': <transformers.generation.streamers.TextIteratorStreamer object at 0x7f878bc24670>, 'top_p': 1.0, 'do_sample': True}
custom_stop_words: []
2025-04-01 09:29:50 | WARNING | transformers.generation.utils | The attention mask is not set and cannot be inferred from input because pad token is same as eos token. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
2025-04-01 09:29:50 | WARNING | transformers.generation.utils | The attention mask is not set and cannot be inferred from input because pad token is same as eos token. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
2025-04-01 09:30:14 | INFO | dbgpt.model.cluster.worker.default_worker | is_first_generate, usage: None
2025-04-01 09:30:14 | INFO | dbgpt.model.cluster.worker.default_worker | is_first_generate, usage: None
2025-04-01 09:33:25 | INFO | dbgpt.model.cluster.worker.default_worker | 

full stream output:
好的,用户问美国有多少人口。首先,我需要确认最新的数据来源。通常,美国人口普查局会提供实时估计,但可能没有即时的官方数据。可能需要参考最近的估算或者联合国的数据。

接下来,我应该检查当前的时间,因为人口是动态变化的。比如,2023年的数据可能和2024年不同。用户之前两次问了同样的问题,可能他们需要最新的信息或者之前的回答有变动?

第一次回答是20233月的3.34亿,第二次在同月同日显示3.35亿,这可能是因为实时估算的变化,或者是数据更新后的调整。需要确认是否有误差或者数据来源的不同。

用户可能是在做学术研究、写报告,或者只是好奇。需要确保数据的准确性和来源的可信度。可能还需要说明数据的时效性和估算的性质,因为确切数字每天都在变化。

另外,用户重复提问可能希望得到更详细的信息,比如增长率、组成结构,或者数据来源的解释。或许需要补充这些内容,让回答更全面。

最后,保持回答简洁但信息丰富,提供来源和时间范围,避免误导用户认为这是绝对精确的数字。截至202312月,美国人口的最新估算约为 **3.36亿**336,000,000)。这一数据基于美国人口普查局(U.S. Census Bureau)的实时人口钟(Population Clock)动态估算,会随出生、死亡、移民等因素持续更新。

### 补充信息:
1. **数据来源**
   - 美国人口普查局提供官方估算,但全面人口普查每10年进行一次(最近一次为2020年),因此实时数据为模型预测。
   - 国际组织如联合国或世界银行也可能提供不同估算值(通常略低,约3.34亿)。

2. **人口趋势**
   - 美国人口年增长率约为0.5%(近年因生育率下降和移民政策调整增速放缓)。
   - 种族/族裔结构多元化,拉丁裔、亚裔群体增长较快。

3. **历史对比**
   - 2020年人口普查官方数据为 **3.31亿**
   - 1960年代约为1.8亿,半个多世纪增长近86%

如需精确统计,建议直接访问美国人口普查局官网(https://www.census.gov)查看实时数据。

model generate_stream params:
{'model': 'Qwen/QwQ-32B', 'messages': [ModelMessage(role='system', content='你是一个有用的 AI 助手。', round_index=0), ModelMessage(role='human', content='美国多少人口', round_index=1), ModelMessage(role='human', content='美国多少人口', round_index=0)], 'temperature': 0.6, 'max_new_tokens': 4000, 'echo': False, 'span_id': '737a4c4edb75b4d81276b143d361a403:aa416e43704eceba', 'context': {'stream': True, 'cache_enable': False, 'user_name': '001', 'sys_code': None, 'conv_uid': None, 'span_id': '737a4c4edb75b4d81276b143d361a403:ed0080d7b1f70830', 'chat_mode': 'chat_normal', 'chat_param': None, 'extra': {}, 'request_id': None, 'is_reasoning_model': False}, 'convert_to_compatible_format': False, 'string_prompt': 'system: 你是一个有用的 AI 助手。\nhuman: 美国多少人口\nhuman: 美国多少人口', 'prompt': '<|im_start|>system\n你是一个有用的 AI 助手。<|im_end|>\n<|im_start|>user\n美国多少人口<|im_end|>\n<|im_start|>user\n美国多少人口<|im_end|>\n<|im_start|>assistant\n<think>\n', 'stop': None, 'stop_token_ids': None, 'is_reasoning_model': True}
2025-04-01 09:33:25 | INFO | dbgpt.model.cluster.worker.default_worker | 

full stream output:
好的,用户问美国有多少人口。首先,我需要确认最新的数据来源。通常,美国人口普查局会提供实时估计,但可能没有即时的官方数据。可能需要参考最近的估算或者联合国的数据。

接下来,我应该检查当前的时间,因为人口是动态变化的。比如,2023年的数据可能和2024年不同。用户之前两次问了同样的问题,可能他们需要最新的信息或者之前的回答有变动?

第一次回答是20233月的3.34亿,第二次在同月同日显示3.35亿,这可能是因为实时估算的变化,或者是数据更新后的调整。需要确认是否有误差或者数据来源的不同。

用户可能是在做学术研究、写报告,或者只是好奇。需要确保数据的准确性和来源的可信度。可能还需要说明数据的时效性和估算的性质,因为确切数字每天都在变化。

另外,用户重复提问可能希望得到更详细的信息,比如增长率、组成结构,或者数据来源的解释。或许需要补充这些内容,让回答更全面。

最后,保持回答简洁但信息丰富,提供来源和时间范围,避免误导用户认为这是绝对精确的数字。截至202312月,美国人口的最新估算约为 **3.36亿**336,000,000)。这一数据基于美国人口普查局(U.S. Census Bureau)的实时人口钟(Population Clock)动态估算,会随出生、死亡、移民等因素持续更新。

### 补充信息:
1. **数据来源**
   - 美国人口普查局提供官方估算,但全面人口普查每10年进行一次(最近一次为2020年),因此实时数据为模型预测。
   - 国际组织如联合国或世界银行也可能提供不同估算值(通常略低,约3.34亿)。

2. **人口趋势**
   - 美国人口年增长率约为0.5%(近年因生育率下降和移民政策调整增速放缓)。
   - 种族/族裔结构多元化,拉丁裔、亚裔群体增长较快。

3. **历史对比**
   - 2020年人口普查官方数据为 **3.31亿**
   - 1960年代约为1.8亿,半个多世纪增长近86%

如需精确统计,建议直接访问美国人口普查局官网(https://www.census.gov)查看实时数据。

model generate_stream params:
{'model': 'Qwen/QwQ-32B', 'messages': [ModelMessage(role='system', content='你是一个有用的 AI 助手。', round_index=0), ModelMessage(role='human', content='美国多少人口', round_index=1), ModelMessage(role='human', content='美国多少人口', round_index=0)], 'temperature': 0.6, 'max_new_tokens': 4000, 'echo': False, 'span_id': '737a4c4edb75b4d81276b143d361a403:aa416e43704eceba', 'context': {'stream': True, 'cache_enable': False, 'user_name': '001', 'sys_code': None, 'conv_uid': None, 'span_id': '737a4c4edb75b4d81276b143d361a403:ed0080d7b1f70830', 'chat_mode': 'chat_normal', 'chat_param': None, 'extra': {}, 'request_id': None, 'is_reasoning_model': False}, 'convert_to_compatible_format': False, 'string_prompt': 'system: 你是一个有用的 AI 助手。\nhuman: 美国多少人口\nhuman: 美国多少人口', 'prompt': '<|im_start|>system\n你是一个有用的 AI 助手。<|im_end|>\n<|im_start|>user\n美国多少人口<|im_end|>\n<|im_start|>user\n美国多少人口<|im_end|>\n<|im_start|>assistant\n<think>\n', 'stop': None, 'stop_token_ids': None, 'is_reasoning_model': True}
2025-04-01 09:36:38 | INFO | dbgpt_serve.agent.app.controller | app_detail:chat_excel,chat_excel
2025-04-01 09:37:01 | INFO | dbgpt.model.cluster.worker.manager | Stop all workers
2025-04-01 09:37:01 | INFO | dbgpt.model.cluster.worker.manager | Stop all workers
2025-04-01 09:37:01 | INFO | dbgpt.model.cluster.worker.manager | Apply req: None, apply_func: <function LocalWorkerManager._stop_all_worker.<locals>._stop_worker at 0x7f8783d15510>
2025-04-01 09:37:01 | INFO | dbgpt.model.cluster.worker.manager | Apply req: None, apply_func: <function LocalWorkerManager._stop_all_worker.<locals>._stop_worker at 0x7f8783d15510>
2025-04-01 09:37:01 | INFO | dbgpt.model.cluster.worker.manager | Apply to all workers
2025-04-01 09:37:01 | INFO | dbgpt.model.cluster.worker.manager | Apply to all workers
2025-04-01 09:37:02 | WARNING | dbgpt.model.cluster.worker.manager | Stop worker, ignored exception from deregister_func: All connection attempts failed
2025-04-01 09:37:02 | WARNING | dbgpt.model.cluster.worker.manager | Stop worker, ignored exception from deregister_func: All connection attempts failed
2025-04-01 09:37:02 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:0
2025-04-01 09:37:02 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:0
2025-04-01 09:37:02 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:0
2025-04-01 09:37:02 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:0
2025-04-01 09:37:09 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:1
2025-04-01 09:37:09 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:1
2025-04-01 09:37:09 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:1
2025-04-01 09:37:09 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:1
2025-04-01 09:37:09 | WARNING | dbgpt.util.api_utils | Health check failed for http://127.0.0.1:5670, error: HTTPConnectionPool(host='127.0.0.1', port=5670): Max retries exceeded with url: /api/health (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8783d4c940>: Failed to establish a new connection: [Errno 111] Connection refused'))
2025-04-01 09:37:09 | WARNING | dbgpt.util.api_utils | Health check failed for http://127.0.0.1:5670, error: HTTPConnectionPool(host='127.0.0.1', port=5670): Max retries exceeded with url: /api/health (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8783d4c940>: Failed to establish a new connection: [Errno 111] Connection refused'))
2025-04-01 09:37:09 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:2
2025-04-01 09:37:09 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:2
2025-04-01 09:37:09 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:2
2025-04-01 09:37:09 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:2
2025-04-01 09:37:09 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:3
2025-04-01 09:37:09 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:3
2025-04-01 09:37:09 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:3
2025-04-01 09:37:09 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:3
2025-04-01 09:37:09 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:4
2025-04-01 09:37:09 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:4
2025-04-01 09:37:09 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:4
2025-04-01 09:37:09 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:4
2025-04-01 09:37:09 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:5
2025-04-01 09:37:09 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:5
2025-04-01 09:37:09 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:5
2025-04-01 09:37:09 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:5
2025-04-01 09:37:09 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:6
2025-04-01 09:37:09 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:6
2025-04-01 09:37:09 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:6
2025-04-01 09:37:09 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:6
2025-04-01 09:37:09 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:7
2025-04-01 09:37:09 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:7
2025-04-01 09:37:09 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:7
2025-04-01 09:37:09 | INFO | dbgpt.util.model_utils | Clear torch cache of device: cuda:7
2025-04-01 09:37:11 | WARNING | dbgpt.util.api_utils | No healthy urls found, selecting randomly
2025-04-01 09:37:11 | WARNING | dbgpt.util.api_utils | No healthy urls found, selecting randomly
2025-04-01 09:37:11 | WARNING | dbgpt.util.api_utils | No healthy urls found, selecting randomly
2025-04-01 09:37:11 | WARNING | dbgpt.util.api_utils | No healthy urls found, selecting randomly
2025-04-01 09:37:11 | WARNING | dbgpt.model.cluster.worker.manager | Stop worker, ignored exception from deregister_func: All connection attempts failed
2025-04-01 09:37:11 | WARNING | dbgpt.model.cluster.worker.manager | Stop worker, ignored exception from deregister_func: All connection attempts failed
2025-04-01 09:37:11 | WARNING | dbgpt.model.cluster.worker.manager | Stop worker, ignored exception from deregister_func: All connection attempts failed
2025-04-01 09:37:11 | WARNING | dbgpt.model.cluster.worker.manager | Stop worker, ignored exception from deregister_func: All connection attempts failed