-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutput.log
1485 lines (1355 loc) · 139 KB
/
output.log
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
nohup: ignoring input
2024-11-06 start the job...
try at 0 to get trends~
scrape() status_code: 200
https://github.com/DS4SD/docling
https://github.com/mingrammer/diagrams
https://github.com/All-Hands-AI/OpenHands
https://github.com/frappe/erpnext
https://github.com/abi/screenshot-to-code
https://github.com/donnemartin/system-design-primer
https://github.com/Cinnamon/kotaemon
https://github.com/vanna-ai/vanna
https://github.com/roboflow/supervision
https://github.com/instructlab/instructlab
https://github.com/VikParuchuri/marker
https://github.com/geekcomputers/Python
https://github.com/Azure/azure-sdk-for-python
https://github.com/BerriAI/litellm
https://github.com/homebrewltd/ichigo
https://github.com/d2l-ai/d2l-en
https://github.com/psf/black
scape ends
ai is reading, the info is:
1. [DS4SD / docling]:Get your documents ready for gen AI(https://github.com/DS4SD/docling)
2. [mingrammer / diagrams]:🎨 Diagram as Code for prototyping cloud system architectures(https://github.com/mingrammer/diagrams)
3. [All-Hands-AI / OpenHands]:🙌 OpenHands: Code Less, Make More(https://github.com/All-Hands-AI/OpenHands)
4. [frappe / erpnext]:Free and Open Source Enterprise Resource Planning (ERP)(https://github.com/frappe/erpnext)
5. [abi / screenshot-to-code]:Drop in a screenshot and convert it to clean code (HTML/Tailwind/React/Vue)(https://github.com/abi/screenshot-to-code)
6. [donnemartin / system-design-primer]:Learn how to design large-scale systems. Prep for the system design interview. Includes Anki flashcards.(https://github.com/donnemartin/system-design-primer)
7. [Cinnamon / kotaemon]:An open-source RAG-based tool for chatting with your documents.(https://github.com/Cinnamon/kotaemon)
8. [vanna-ai / vanna]:🤖 Chat with your SQL database 📊. Accurate Text-to-SQL Generation via LLMs using RAG 🔄.(https://github.com/vanna-ai/vanna)
9. [roboflow / supervision]:We write your reusable computer vision tools. 💜(https://github.com/roboflow/supervision)
10. [instructlab / instructlab]:InstructLab Command-Line Interface. Use this to chat with a model and execute the InstructLab workflow to train a model using custom taxonomy data.(https://github.com/instructlab/instructlab)
11. [VikParuchuri / marker]:Convert PDF to markdown quickly with high accuracy(https://github.com/VikParuchuri/marker)
12. [geekcomputers / Python]:My Python Examples(https://github.com/geekcomputers/Python)
13. [Azure / azure-sdk-for-python]:This repository is for active development of the Azure SDK for Python. For consumers of the SDK we recommend visiting our public developer docs at https://learn.microsoft.com/python/azure/ or our versioned developer docs at https://azure.github.io/azure-sdk-for-python.(https://github.com/Azure/azure-sdk-for-python)
14. [BerriAI / litellm]:Python SDK, Proxy Server (LLM Gateway) to call 100+ LLM APIs in OpenAI format - [Bedrock, Azure, OpenAI, VertexAI, Cohere, Anthropic, Sagemaker, HuggingFace, Replicate, Groq](https://github.com/BerriAI/litellm)
15. [homebrewltd / ichigo]:Llama3.1 learns to Listen(https://github.com/homebrewltd/ichigo)
16. [d2l-ai / d2l-en]:Interactive deep learning book with multi-framework code, math, and discussions. Adopted at 500 universities from 70 countries including Stanford, MIT, Harvard, and Cambridge.(https://github.com/d2l-ai/d2l-en)
17. [psf / black]:The uncompromising Python code formatter(https://github.com/psf/black)
ai ans is:
1. [DS4SD / docling]: 为生成式人工智能准备您的文档(https://github.com/DS4SD/docling)
2. [mingrammer / diagrams]: 🎨 代码化原型设计云系统架构(https://github.com/mingrammer/diagrams)
3. [All-Hands-AI / OpenHands]: 🙌 OpenHands:代码更少,创造更多(https://github.com/All-Hands-AI/OpenHands)
4. [frappe / erpnext]: 免费开源的企业资源计划(ERP)(https://github.com/frappe/erpnext)
5. [abi / screenshot-to-code]: 添加截图并转换为干净的代码(HTML/Tailwind/React/Vue)(https://github.com/abi/screenshot-to-code)
6. [donnemartin / system-design-primer]: 学习如何设计大规模系统。为系统设计面试做准备。包含Anki闪卡。(https://github.com/donnemartin/system-design-primer)
7. [Cinnamon / kotaemon]: 基于RAG的开源工具,用于与您的文档聊天。(https://github.com/Cinnamon/kotaemon)
8. [vanna-ai / vanna]: 🤖 与您的SQL数据库聊天。通过RAG使用LLM生成准确的文本文本到SQL生成。(https://github.com/vanna-ai/vanna)
9. [roboflow / supervision]: 我们为您编写可重用的计算机视觉工具。💜(https://github.com/roboflow/supervision)
10. [instructlab / instructlab]: InstructLab命令行界面。使用此界面与模型聊天并执行InstructLab工作流程以使用自定义分类数据训练模型。(https://github.com/instructlab/instructlab)
11. [VikParuchuri / marker]: 快速且高精度地将PDF转换为markdown(https://github.com/VikParuchuri/marker)
12. [geekcomputers / Python]: 我的Python示例(https://github.com/geekcomputers/Python)
13. [Azure / azure-sdk-for-python]: 此存储库用于Python Azure SDK的积极开发。对于SDK的消费者,我们建议访问我们的公共开发者文档https://learn.microsoft.com/python/azure/或我们的版本化开发者文档https://azure.github.io/azure-sdk-for-python。(https://github.com/Azure/azure-sdk-for-python)
14. [BerriAI / litellm]: Python SDK,代理服务器(LLM网关)以OpenAI格式调用100+ LLM API - [Bedrock, Azure, OpenAI, VertexAI, Cohere, Anthropic, Sagemaker, HuggingFace, Replicate, Groq](https://github.com/BerriAI/litellm)
15. [homebrewltd / ichigo]: Llama3.1学习倾听(https://github.com/homebrewltd/ichigo)
16. [d2l-ai / d2l-en]: 带有多框架代码、数学和讨论的交互式深度学习书籍。被70个国家的500所大学采用,包括斯坦福、麻省理工、哈佛和剑桥。(https://github.com/d2l-ai/d2l-en)
17. [psf / black]: 无妥协的Python代码格式化器(https://github.com/psf/black)
惊艳项目推荐:[All-Hands-AI / OpenHands](https://github.com/All-Hands-AI/OpenHands) - OpenHands项目通过减少代码编写,帮助用户更高效地完成工作。
今日趋势项目关注的领域和特点:今日趋势项目集中在人工智能、代码生成、企业资源规划和系统设计等领域,特点包括跨平台兼容性、高效性、以及与现有技术的集成能力。
产品联系: [email protected]
2024-11-07 start the job...
try at 0 to get trends~
scrape() status_code: 200
https://github.com/All-Hands-AI/OpenHands
https://github.com/Shpota/github-activity-generator
https://github.com/iterative/datachain
https://github.com/django/django
https://github.com/DS4SD/docling
https://github.com/psf/black
https://github.com/mingrammer/diagrams
https://github.com/fishaudio/fish-speech
https://github.com/matplotlib/matplotlib
https://github.com/Significant-Gravitas/AutoGPT
https://github.com/python/mypy
https://github.com/OpenBB-finance/OpenBB
https://github.com/geekan/MetaGPT
https://github.com/geekcomputers/Python
https://github.com/frappe/frappe
https://github.com/serengil/deepface
scape ends
ai is reading, the info is:
1. [All-Hands-AI / OpenHands]:🙌 OpenHands: Code Less, Make More(https://github.com/All-Hands-AI/OpenHands)
2. [Shpota / github-activity-generator]:A script that helps generate a rich GitHub Contribution Graph for your account 🤖(https://github.com/Shpota/github-activity-generator)
3. [iterative / datachain]:AI-data warehouse to enrich, transform and analyze unstructured data(https://github.com/iterative/datachain)
4. [django / django]:The Web framework for perfectionists with deadlines.(https://github.com/django/django)
5. [DS4SD / docling]:Get your documents ready for gen AI(https://github.com/DS4SD/docling)
6. [psf / black]:The uncompromising Python code formatter(https://github.com/psf/black)
7. [mingrammer / diagrams]:🎨 Diagram as Code for prototyping cloud system architectures(https://github.com/mingrammer/diagrams)
8. [fishaudio / fish-speech]:Brand new TTS solution(https://github.com/fishaudio/fish-speech)
9. [matplotlib / matplotlib]:matplotlib: plotting with Python(https://github.com/matplotlib/matplotlib)
10. [Significant-Gravitas / AutoGPT]:AutoGPT is the vision of accessible AI for everyone, to use and to build on. Our mission is to provide the tools, so that you can focus on what matters.(https://github.com/Significant-Gravitas/AutoGPT)
11. [python / mypy]:Optional static typing for Python(https://github.com/python/mypy)
12. [OpenBB-finance / OpenBB]:Investment Research for Everyone, Everywhere.(https://github.com/OpenBB-finance/OpenBB)
13. [geekan / MetaGPT]:🌟 The Multi-Agent Framework: First AI Software Company, Towards Natural Language Programming(https://github.com/geekan/MetaGPT)
14. [geekcomputers / Python]:My Python Examples(https://github.com/geekcomputers/Python)
15. [frappe / frappe]:Low code web framework for real world applications, in Python and Javascript(https://github.com/frappe/frappe)
16. [serengil / deepface]:A Lightweight Face Recognition and Facial Attribute Analysis (Age, Gender, Emotion and Race) Library for Python(https://github.com/serengil/deepface)
ai ans is:
1. [All-Hands-AI / OpenHands]:🙌 OpenHands: 编程更少,创造更多(https://github.com/All-Hands-AI/OpenHands)
2. [Shpota / github-activity-generator]:一个帮助你为GitHub账户生成丰富贡献图的脚本 🤖(https://github.com/Shpota/github-activity-generator)
3. [iterative / datachain]:AI数据仓库,用于丰富、转换和分析非结构化数据(https://github.com/iterative/datachain)
4. [django / django]:针对完美主义者且注重截止日期的Web框架。(https://github.com/django/django)
5. [DS4SD / docling]:让你的文档准备好迎接生成式AI(https://github.com/DS4SD/docling)
6. [psf / black]:无妥协的Python代码格式化工具(https://github.com/psf/black)
7. [mingrammer / diagrams]:🎨 作为代码的图表,用于原型设计云系统架构(https://github.com/mingrammer/diagrams)
8. [fishaudio / fish-speech]:全新的TTS解决方案(https://github.com/fishaudio/fish-speech)
9. [matplotlib / matplotlib]:matplotlib:用Python进行绘图(https://github.com/matplotlib/matplotlib)
10. [Significant-Gravitas / AutoGPT]:AutoGPT是让AI触手可及的愿景,旨在让每个人都能使用和构建。我们的使命是提供工具,让你能专注于重要的事情。(https://github.com/Significant-Gravitas/AutoGPT)
11. [python / mypy]:Python的可选静态类型(https://github.com/python/mypy)
12. [OpenBB-finance / OpenBB]:面向每个人的投资研究。(https://github.com/OpenBB-finance/OpenBB)
13. [geekan / MetaGPT]:🌟 多智能体框架:首个AI软件公司,迈向自然语言编程(https://github.com/geekan/MetaGPT)
14. [geekcomputers / Python]:我的Python示例(https://github.com/geekcomputers/Python)
15. [frappe / frappe]:用于现实世界应用的低代码Web框架,支持Python和JavaScript(https://github.com/frappe/frappe)
16. [serengil / deepface]:Python的一个轻量级人脸识别和面部属性分析(年龄、性别、情绪和种族)库(https://github.com/serengil/deepface)
惊艳项目推荐:[Significant-Gravitas / AutoGPT] AutoGPT:让AI触手可及的愿景,提供使用和构建AI的工具。
今天趋势项目关注的领域和特点:主要集中在AI应用、数据处理、Web开发、Python工具和库等方面,展现出了技术发展的多样性和创新性。
产品联系: [email protected]
2024-11-08 start the job...
try at 0 to get trends~
scrape() status_code: 200
https://github.com/LibraHp/GetQzonehistory
https://github.com/All-Hands-AI/OpenHands
https://github.com/django/django
https://github.com/geekcomputers/Python
https://github.com/cvat-ai/cvat
https://github.com/sherlock-project/sherlock
https://github.com/psf/black
https://github.com/khoj-ai/khoj
https://github.com/openai/openai-python
https://github.com/microsoft/graphrag
https://github.com/Shpota/github-activity-generator
https://github.com/fishaudio/fish-speech
https://github.com/pytorch/pytorch
https://github.com/DS4SD/docling
https://github.com/OpenBB-finance/OpenBB
https://github.com/donnemartin/system-design-primer
scape ends
ai is reading, the info is:
1. [LibraHp / GetQzonehistory]:获取QQ空间发布的历史说说(https://github.com/LibraHp/GetQzonehistory)
2. [All-Hands-AI / OpenHands]:🙌 OpenHands: Code Less, Make More(https://github.com/All-Hands-AI/OpenHands)
3. [django / django]:The Web framework for perfectionists with deadlines.(https://github.com/django/django)
4. [geekcomputers / Python]:My Python Examples(https://github.com/geekcomputers/Python)
5. [cvat-ai / cvat]:Annotate better with CVAT, the industry-leading data engine for machine learning. Used and trusted by teams at any scale, for data of any scale.(https://github.com/cvat-ai/cvat)
6. [sherlock-project / sherlock]:Hunt down social media accounts by username across social networks(https://github.com/sherlock-project/sherlock)
7. [psf / black]:The uncompromising Python code formatter(https://github.com/psf/black)
8. [khoj-ai / khoj]:Your AI second brain. Self-hostable. Get answers from the web or your docs. Build custom agents, schedule automations, do deep research. Turn any online or local LLM into your personal, autonomous AI (e.g gpt, claude, gemini, llama, qwen, mistral).(https://github.com/khoj-ai/khoj)
9. [openai / openai-python]:The official Python library for the OpenAI API(https://github.com/openai/openai-python)
10. [microsoft / graphrag]:A modular graph-based Retrieval-Augmented Generation (RAG) system(https://github.com/microsoft/graphrag)
11. [Shpota / github-activity-generator]:A script that helps generate a rich GitHub Contribution Graph for your account 🤖(https://github.com/Shpota/github-activity-generator)
12. [fishaudio / fish-speech]:Brand new TTS solution(https://github.com/fishaudio/fish-speech)
13. [pytorch / pytorch]:Tensors and Dynamic neural networks in Python with strong GPU acceleration(https://github.com/pytorch/pytorch)
14. [DS4SD / docling]:Get your documents ready for gen AI(https://github.com/DS4SD/docling)
15. [OpenBB-finance / OpenBB]:Investment Research for Everyone, Everywhere.(https://github.com/OpenBB-finance/OpenBB)
16. [donnemartin / system-design-primer]:Learn how to design large-scale systems. Prep for the system design interview. Includes Anki flashcards.(https://github.com/donnemartin/system-design-primer)
ai ans is:
1. [LibraHp / GetQzonehistory]:获取QQ空间发布的历史说说(https://github.com/LibraHp/GetQzonehistory)
2. [All-Hands-AI / OpenHands]:🙌 OpenHands: 代码更少,成果更多(https://github.com/All-Hands-AI/OpenHands)
3. [django / django]:适用于完美主义者且有时间限制的Web框架(https://github.com/django/django)
4. [geekcomputers / Python]:我的Python示例(https://github.com/geekcomputers/Python)
5. [cvat-ai / cvat]:CVAT,领先的机器学习数据引擎,适用于任何规模的团队和数据(https://github.com/cvat-ai/cvat)
6. [sherlock-project / sherlock]:通过用户名在社交网络上追踪社交媒体账户(https://github.com/sherlock-project/sherlock)
7. [psf / black]:坚定不移的Python代码格式化工具(https://github.com/psf/black)
8. [khoj-ai / khoj]:你的AI第二大脑。可自托管。从网络或你的文档中获取答案。构建定制代理,安排自动化,进行深入研究。将任何在线或本地的LLM转换为你的个人、自主AI(例如gpt、claude、gemini、llama、qwen、mistral)(https://github.com/khoj-ai/khoj)
9. [openai / openai-python]:OpenAI API的官方Python库(https://github.com/openai/openai-python)
10. [microsoft / graphrag]:一个模块化基于图的检索增强生成(RAG)系统(https://github.com/microsoft/graphrag)
11. [Shpota / github-activity-generator]:一个帮助你为GitHub账户生成丰富贡献图的脚本 🤖(https://github.com/Shpota/github-activity-generator)
12. [fishaudio / fish-speech]:全新的TTS解决方案(https://github.com/fishaudio/fish-speech)
13. [pytorch / pytorch]:在Python中具有强大GPU加速的张量动态神经网络(https://github.com/pytorch/pytorch)
14. [DS4SD / docling]:让你的文档为生成式AI做好准备(https://github.com/DS4SD/docling)
15. [OpenBB-finance / OpenBB]:面向每个人的投资研究平台。(https://github.com/OpenBB-finance/OpenBB)
16. [donnemartin / system-design-primer]:学习如何设计大型系统。为系统设计面试做准备。包括Anki闪卡。(https://github.com/donnemartin/system-design-primer)
最惊艳的项目:[khoj-ai / khoj](https://github.com/khoj-ai/khoj) - 你的AI第二大脑,可自托管,将任何在线或本地的LLM转换为你的个人、自主AI。
今天的趋势项目关注的领域和特点:涵盖了从Web开发框架到机器学习数据引擎,再到AI和代码格式化工具等广泛领域。特点包括创新性、实用性、社区活跃度以及跨领域应用。
2024-11-09 start the job...
try at 0 to get trends~
scrape() status_code: 200
https://github.com/Shpota/github-activity-generator
https://github.com/LibraHp/GetQzonehistory
https://github.com/khoj-ai/khoj
https://github.com/All-Hands-AI/OpenHands
https://github.com/psf/black
https://github.com/letta-ai/letta
https://github.com/python-poetry/poetry
https://github.com/commaai/openpilot
https://github.com/getsentry/sentry
https://github.com/cvat-ai/cvat
https://github.com/frappe/frappe
https://github.com/huggingface/transformers
https://github.com/exo-explore/exo
https://github.com/NVIDIA/TransformerEngine
https://github.com/Pythagora-io/gpt-pilot
https://github.com/django/django
scape ends
ai is reading, the info is:
1. [Shpota / github-activity-generator]:A script that helps generate a rich GitHub Contribution Graph for your account 🤖(https://github.com/Shpota/github-activity-generator)
2. [LibraHp / GetQzonehistory]:获取QQ空间发布的历史说说(https://github.com/LibraHp/GetQzonehistory)
3. [khoj-ai / khoj]:Your AI second brain. Self-hostable. Get answers from the web or your docs. Build custom agents, schedule automations, do deep research. Turn any online or local LLM into your personal, autonomous AI (e.g gpt, claude, gemini, llama, qwen, mistral).(https://github.com/khoj-ai/khoj)
4. [All-Hands-AI / OpenHands]:🙌 OpenHands: Code Less, Make More(https://github.com/All-Hands-AI/OpenHands)
5. [psf / black]:The uncompromising Python code formatter(https://github.com/psf/black)
6. [letta-ai / letta]:Letta (formerly MemGPT) is a framework for creating LLM services with memory.(https://github.com/letta-ai/letta)
7. [python-poetry / poetry]:Python packaging and dependency management made easy(https://github.com/python-poetry/poetry)
8. [commaai / openpilot]:openpilot is an operating system for robotics. Currently, it upgrades the driver assistance system on 275+ supported cars.(https://github.com/commaai/openpilot)
9. [getsentry / sentry]:Developer-first error tracking and performance monitoring(https://github.com/getsentry/sentry)
10. [cvat-ai / cvat]:Annotate better with CVAT, the industry-leading data engine for machine learning. Used and trusted by teams at any scale, for data of any scale.(https://github.com/cvat-ai/cvat)
11. [frappe / frappe]:Low code web framework for real world applications, in Python and Javascript(https://github.com/frappe/frappe)
12. [huggingface / transformers]:🤗 Transformers: State-of-the-art Machine Learning for Pytorch, TensorFlow, and JAX.(https://github.com/huggingface/transformers)
13. [exo-explore / exo]:Run your own AI cluster at home with everyday devices 📱💻 🖥️⌚(https://github.com/exo-explore/exo)
14. [NVIDIA / TransformerEngine]:A library for accelerating Transformer models on NVIDIA GPUs, including using 8-bit floating point (FP8) precision on Hopper and Ada GPUs, to provide better performance with lower memory utilization in both training and inference.(https://github.com/NVIDIA/TransformerEngine)
15. [Pythagora-io / gpt-pilot]:The first real AI developer(https://github.com/Pythagora-io/gpt-pilot)
16. [django / django]:The Web framework for perfectionists with deadlines.(https://github.com/django/django)
ai ans is:
1. [Shpota / github-activity-generator]:一个帮助生成丰富GitHub贡献图的脚本 🤖(https://github.com/Shpota/github-activity-generator)
2. [LibraHp / GetQzonehistory]:获取QQ空间发布的历史说说(https://github.com/LibraHp/GetQzonehistory)
3. [khoj-ai / khoj]:你的AI第二大脑。可自托管。从网络或你的文档中获取答案。构建定制代理,安排自动化任务,进行深入研究。将任何在线或本地的LLM(如gpt、claude、gemini、llama、qwen、mistral)转变为你的个人、自主AI。(https://github.com/khoj-ai/khoj)
4. [All-Hands-AI / OpenHands]:🙌 OpenHands:代码更少,成果更多(https://github.com/All-Hands-AI/OpenHands)
5. [psf / black]:毫不妥协的Python代码格式化器(https://github.com/psf/black)
6. [letta-ai / letta]:Letta(原名MemGPT)是一个用于创建具有记忆的LLM服务的框架。(https://github.com/letta-ai/letta)
7. [python-poetry / poetry]:Python打包和依赖关系管理变得简单(https://github.com/python-poetry/poetry)
8. [commaai / openpilot]:openpilot是一个机器人操作系统。目前,它升级了275多款支持的汽车上的驾驶员辅助系统。(https://github.com/commaai/openpilot)
9. [getsentry / sentry]:面向开发者的错误跟踪和性能监控(https://github.com/getsentry/sentry)
10. [cvat-ai / cvat]:使用CVAT,行业领先的数据引擎进行机器学习标注。被任何规模、任何规模的数据的团队使用和信任。(https://github.com/cvat-ai/cvat)
11. [frappe / frappe]:适用于现实世界应用的低代码Web框架,使用Python和JavaScript(https://github.com/frappe/frappe)
12. [huggingface / transformers]:🤗 Transformers:为Pytorch、TensorFlow和JAX提供最先进的机器学习。(https://github.com/huggingface/transformers)
13. [exo-explore / exo]:使用日常设备在家中运行自己的AI集群 📱💻 🖥️⌚(https://github.com/exo-explore/exo)
14. [NVIDIA / TransformerEngine]:一个用于在NVIDIA GPU上加速Transformer模型的库,包括在Hopper和Ada GPU上使用8位浮点(FP8)精度,以在训练和推理中提供更好的性能和更低的内存利用率。(https://github.com/NVIDIA/TransformerEngine)
15. [Pythagora-io / gpt-pilot]:第一位真正的AI开发者(https://github.com/Pythagora-io/gpt-pilot)
16. [django / django]:针对有截止日期的完美主义者的Web框架。(https://github.com/django/django)
惊艳项目推荐:
[khoj-ai / khoj]:你的AI第二大脑,将任何在线或本地的LLM转变为你的个人、自主AI。
今日趋势项目关注的领域和特点:
今日趋势项目涵盖了从代码格式化工具、AI研究框架到低代码Web框架等多个领域。特点包括强大的功能、易用性和创新性,特别是AI和机器学习领域的项目,展现出技术的前沿趋势和对日常问题的解决方案。
产品联系: [email protected]
2024-11-10 start the job...
try at 0 to get trends~
when scrape ('Connection aborted.', RemoteDisconnected('Remote end closed connection without response')) occurs
scape ends
ai is reading, the info is:
when ai analyze, Error code: 400, with error text {"error":{"code":"1213","message":"未正常接收到prompt参数。"}} occurs...
ai ans is:
None
Attempt 1 failed with error: write() argument must be str, not None
try at 1 to get trends~
when scrape HTTPSConnectionPool(host='github.com', port=443): Max retries exceeded with url: /trending/python (Caused by ConnectTimeoutError(<urllib3.connection.HTTPSConnection object at 0x74e40fd9aba0>, 'Connection to github.com timed out. (connect timeout=10)')) occurs
scape ends
ai is reading, the info is:
when ai analyze, Error code: 400, with error text {"error":{"code":"1213","message":"未正常接收到prompt参数。"}} occurs...
ai ans is:
None
Attempt 2 failed with error: write() argument must be str, not None
try at 2 to get trends~
scrape() status_code: 200
https://github.com/PrefectHQ/prefect
https://github.com/infinition/Bjorn
https://github.com/THUDM/CogVideo
https://github.com/LibraHp/GetQzonehistory
https://github.com/psf/black
https://github.com/ultralytics/ultralytics
https://github.com/All-Hands-AI/OpenHands
https://github.com/apify/crawlee-python
https://github.com/khoj-ai/khoj
https://github.com/letta-ai/letta
https://github.com/microsoft/Mastering-GitHub-Copilot-for-Paired-Programming
https://github.com/scrapy/scrapy
https://github.com/exo-explore/exo
https://github.com/airbytehq/airbyte
https://github.com/langflow-ai/langflow
https://github.com/google-gemini/generative-ai-python
scape ends
ai is reading, the info is:
1. [PrefectHQ / prefect]:Prefect is a workflow orchestration framework for building resilient data pipelines in Python.(https://github.com/PrefectHQ/prefect)
2. [infinition / Bjorn]:Bjorn is a powerful network scanning and offensive security tool for the Raspberry Pi with a 2.13-inch e-Paper HAT. It discovers network targets, identifies open ports, exposed services, and potential vulnerabilities. Bjorn can perform brute force attacks, file stealing, host zombification, and supports custom attack scripts.(https://github.com/infinition/Bjorn)
3. [THUDM / CogVideo]:text and image to video generation: CogVideoX (2024) and CogVideo (ICLR 2023)(https://github.com/THUDM/CogVideo)
4. [LibraHp / GetQzonehistory]:获取QQ空间发布的历史说说(https://github.com/LibraHp/GetQzonehistory)
5. [psf / black]:The uncompromising Python code formatter(https://github.com/psf/black)
6. [ultralytics / ultralytics]:Ultralytics YOLO11 🚀(https://github.com/ultralytics/ultralytics)
7. [All-Hands-AI / OpenHands]:🙌 OpenHands: Code Less, Make More(https://github.com/All-Hands-AI/OpenHands)
8. [apify / crawlee-python]:Crawlee—A web scraping and browser automation library for Python to build reliable crawlers. Extract data for AI, LLMs, RAG, or GPTs. Download HTML, PDF, JPG, PNG, and other files from websites. Works with BeautifulSoup, Playwright, and raw HTTP. Both headful and headless mode. With proxy rotation.(https://github.com/apify/crawlee-python)
9. [khoj-ai / khoj]:Your AI second brain. Self-hostable. Get answers from the web or your docs. Build custom agents, schedule automations, do deep research. Turn any online or local LLM into your personal, autonomous AI (e.g gpt, claude, gemini, llama, qwen, mistral).(https://github.com/khoj-ai/khoj)
10. [letta-ai / letta]:Letta (formerly MemGPT) is a framework for creating LLM services with memory.(https://github.com/letta-ai/letta)
11. [microsoft / Mastering-GitHub-Copilot-for-Paired-Programming]:An 8 Lesson course teaching everything you need to know about harnessing GitHub Copilot and an AI Paired Programing resource.(https://github.com/microsoft/Mastering-GitHub-Copilot-for-Paired-Programming)
12. [scrapy / scrapy]:Scrapy, a fast high-level web crawling & scraping framework for Python.(https://github.com/scrapy/scrapy)
13. [exo-explore / exo]:Run your own AI cluster at home with everyday devices 📱💻 🖥️⌚(https://github.com/exo-explore/exo)
14. [airbytehq / airbyte]:The leading data integration platform for ETL / ELT data pipelines from APIs, databases & files to data warehouses, data lakes & data lakehouses. Both self-hosted and Cloud-hosted.(https://github.com/airbytehq/airbyte)
15. [langflow-ai / langflow]:Langflow is a low-code app builder for RAG and multi-agent AI applications. It’s Python-based and agnostic to any model, API, or database.(https://github.com/langflow-ai/langflow)
16. [google-gemini / generative-ai-python]:The official Python library for the Google Gemini API(https://github.com/google-gemini/generative-ai-python)
ai ans is:
1. [PrefectHQ / prefect]: Prefect 是一个用于构建具有弹性的数据管道的 Python 工作流程编排框架。(https://github.com/PrefectHQ/prefect)
2. [infinition / Bjorn]: Bjorn 是一个强大的 Raspberry Pi 网络扫描和攻击性安全工具,具有 2.13 英寸的电子纸 HAT。它可以发现网络目标、识别开放端口、暴露的服务和潜在漏洞。Bjorn 可以执行暴力攻击、文件窃取、主机僵尸化,并支持自定义攻击脚本。(https://github.com/infinition/Bjorn)
3. [THUDM / CogVideo]: 文本和图像到视频生成:CogVideoX (2024) 和 CogVideo (ICLR 2023)(https://github.com/THUDM/CogVideo)
4. [LibraHp / GetQzonehistory]: 获取 QQ 空间发布的历史说说(https://github.com/LibraHp/GetQzonehistory)
5. [psf / black]: 无妥协的 Python 代码格式化工具(https://github.com/psf/black)
6. [ultralytics / ultralytics]: Ultralytics YOLO11 🚀(https://github.com/ultralytics/ultralytics)
7. [All-Hands-AI / OpenHands]: 🙌 OpenHands:少写代码,多创造价值(https://github.com/All-Hands-AI/OpenHands)
8. [apify / crawlee-python]: Crawlee—一个用于 Python 的网页抓取和浏览器自动化的库,用于构建可靠的爬虫。提取数据供 AI、LLM、RAG 或 GPT 使用。从网站下载 HTML、PDF、JPG、PNG 等文件。与 BeautifulSoup、Playwright 和原始 HTTP 一起工作。支持完整和简化模式。带有代理轮换。(https://github.com/apify/crawlee-python)
9. [khoj-ai / khoj]: 你的 AI 第二大脑。可自托管。从网络或你的文档中获得答案。构建自定义代理,安排自动化任务,进行深入研究。将任何在线或本地的 LLM 转换为你的个人、自主 AI(例如 gpt、claude、gemini、llama、qwen、mistral)(https://github.com/khoj-ai/khoj)
10. [letta-ai / letta]: Letta(原名 MemGPT)是一个用于创建具有记忆的 LLM 服务的框架。(https://github.com/letta-ai/letta)
11. [microsoft / Mastering-GitHub-Copilot-for-Paired-Programming]: 一个包含 8 个课程的课程,教授你如何利用 GitHub Copilot 和 AI 配对编程资源所需的一切。(https://github.com/microsoft/Mastering-GitHub-Copilot-for-Paired-Programming)
12. [scrapy / scrapy]: Scrapy,一个用于 Python 的快速高级网页抓取和爬虫框架。(https://github.com/scrapy/scrapy)
13. [exo-explore / exo]: 使用日常设备在家中运行自己的 AI 集群 📱💻 🖥️⌚(https://github.com/exo-explore/exo)
14. [airbytehq / airbyte]: 领先的数据集成平台,用于从 API、数据库和文件到数据仓库、数据湖和数据湖仓的 ETL/ELT 数据管道。既可自托管,也可云托管。(https://github.com/airbytehq/airbyte)
15. [langflow-ai / langflow]: Langflow 是一个低代码应用程序构建器,用于 RAG 和多代理 AI 应用程序。它是基于 Python 的,与任何模型、API 或数据库无关。(https://github.com/langflow-ai/langflow)
16. [google-gemini / generative-ai-python]: Google Gemini API 的官方 Python 库(https://github.com/google-gemini/generative-ai-python)
最惊艳的项目:[google-gemini / generative-ai-python] Google Gemini API 的官方 Python 库,提供了强大的生成式 AI 功能。
今天趋势项目关注的领域和特点:包括数据管道、网络安全、视频生成、代码格式化、AI 应用开发、数据集成和网页抓取等多个领域。项目特点为工具性和实用性较强,许多项目都提供了开源代码,方便用户学习和使用。产品联系: [email protected]
2024-11-11 start the job...
try at 0 to get trends~
scrape() status_code: 200
https://github.com/exo-explore/exo
https://github.com/PrefectHQ/prefect
https://github.com/THUDM/CogVideo
https://github.com/harry0703/MoneyPrinterTurbo
https://github.com/letta-ai/letta
https://github.com/khoj-ai/khoj
https://github.com/apify/crawlee-python
https://github.com/All-Hands-AI/OpenHands
https://github.com/mikf/gallery-dl
https://github.com/LibraHp/GetQzonehistory
https://github.com/hacksider/Deep-Live-Cam
https://github.com/unclecode/crawl4ai
https://github.com/infinition/Bjorn
https://github.com/3b1b/manim
https://github.com/ccxt/ccxt
https://github.com/Guovin/TV
https://github.com/dortania/OpenCore-Legacy-Patcher
https://github.com/opendatalab/PDF-Extract-Kit
https://github.com/wistbean/learn_python3_spider
https://github.com/projectmesa/mesa
https://github.com/mahdibland/V2RayAggregator
scape ends
ai is reading, the info is:
1. [exo-explore / exo]:Run your own AI cluster at home with everyday devices 📱💻 🖥️⌚(https://github.com/exo-explore/exo)
2. [PrefectHQ / prefect]:Prefect is a workflow orchestration framework for building resilient data pipelines in Python.(https://github.com/PrefectHQ/prefect)
3. [THUDM / CogVideo]:text and image to video generation: CogVideoX (2024) and CogVideo (ICLR 2023)(https://github.com/THUDM/CogVideo)
4. [harry0703 / MoneyPrinterTurbo]:利用AI大模型,一键生成高清短视频 Generate short videos with one click using AI LLM.(https://github.com/harry0703/MoneyPrinterTurbo)
5. [letta-ai / letta]:Letta (formerly MemGPT) is a framework for creating LLM services with memory.(https://github.com/letta-ai/letta)
6. [khoj-ai / khoj]:Your AI second brain. Self-hostable. Get answers from the web or your docs. Build custom agents, schedule automations, do deep research. Turn any online or local LLM into your personal, autonomous AI (e.g gpt, claude, gemini, llama, qwen, mistral).(https://github.com/khoj-ai/khoj)
7. [apify / crawlee-python]:Crawlee—A web scraping and browser automation library for Python to build reliable crawlers. Extract data for AI, LLMs, RAG, or GPTs. Download HTML, PDF, JPG, PNG, and other files from websites. Works with BeautifulSoup, Playwright, and raw HTTP. Both headful and headless mode. With proxy rotation.(https://github.com/apify/crawlee-python)
8. [All-Hands-AI / OpenHands]:🙌 OpenHands: Code Less, Make More(https://github.com/All-Hands-AI/OpenHands)
9. [mikf / gallery-dl]:Command-line program to download image galleries and collections from several image hosting sites(https://github.com/mikf/gallery-dl)
10. [LibraHp / GetQzonehistory]:获取QQ空间发布的历史说说(https://github.com/LibraHp/GetQzonehistory)
11. [hacksider / Deep-Live-Cam]:real time face swap and one-click video deepfake with only a single image(https://github.com/hacksider/Deep-Live-Cam)
12. [unclecode / crawl4ai]:🔥🕷️ Crawl4AI: Open-source LLM Friendly Web Crawler & Scrapper(https://github.com/unclecode/crawl4ai)
13. [infinition / Bjorn]:Bjorn is a powerful network scanning and offensive security tool for the Raspberry Pi with a 2.13-inch e-Paper HAT. It discovers network targets, identifies open ports, exposed services, and potential vulnerabilities. Bjorn can perform brute force attacks, file stealing, host zombification, and supports custom attack scripts.(https://github.com/infinition/Bjorn)
14. [3b1b / manim]:Animation engine for explanatory math videos(https://github.com/3b1b/manim)
15. [ccxt / ccxt]:A JavaScript / TypeScript / Python / C# / PHP cryptocurrency trading API with support for more than 100 bitcoin/altcoin exchanges(https://github.com/ccxt/ccxt)
16. [Guovin / TV]:📺IPTV电视直播源更新工具🚀:包含💰央视(付费)、📡卫视、🏠广东、🌊港·澳·台、🎬电影、🎥咪咕、🏀体育、🪁动画、🎮游戏、🎵音乐、🏛经典剧场;支持自定义增加频道;支持组播源、酒店源、订阅源、关键字搜索;每天自动更新两次,结果可用于TVBox等播放软件;支持工作流、Docker(amd64/arm64)、命令行、GUI运行方式 | IPTV live TV source update tool(https://github.com/Guovin/TV)
17. [dortania / OpenCore-Legacy-Patcher]:Experience macOS just like before(https://github.com/dortania/OpenCore-Legacy-Patcher)
18. [opendatalab / PDF-Extract-Kit]:A Comprehensive Toolkit for High-Quality PDF Content Extraction(https://github.com/opendatalab/PDF-Extract-Kit)
19. [wistbean / learn_python3_spider]:python爬虫教程系列、从0到1学习python爬虫,包括浏览器抓包,手机APP抓包,如 fiddler、mitmproxy,各种爬虫涉及的模块的使用,如:requests、beautifulSoup、selenium、appium、scrapy等,以及IP代理,验证码识别,Mysql,MongoDB数据库的python使用,多线程多进程爬虫的使用,css 爬虫加密逆向破解,JS爬虫逆向,分布式爬虫,爬虫项目实战实例等(https://github.com/wistbean/learn_python3_spider)
20. [projectmesa / mesa]:Mesa is an open-source Python library for agent-based modeling, ideal for simulating complex systems and exploring emergent behaviors.(https://github.com/projectmesa/mesa)
21. [mahdibland / V2RayAggregator]:Collect Lots of Shadowsocks, ShadowsocksR, Trojan, Vmess from Public Sources & Filter Best Nodes By Speed(https://github.com/mahdibland/V2RayAggregator)
ai ans is:
1. [exo-explore / exo]:在家使用日常设备运行自己的AI集群 📱💻 🖥️⌚(https://github.com/exo-explore/exo)
2. [PrefectHQ / prefect]:Prefect是一个用于在Python中构建弹性数据管道的工作流程编排框架。(https://github.com/PrefectHQ/prefect)
3. [THUDM / CogVideo]:文本和图像到视频生成:CogVideoX (2024) 和 CogVideo (ICLR 2023)(https://github.com/THUDM/CogVideo)
4. [harry0703 / MoneyPrinterTurbo]:利用AI大模型,一键生成高清短视频 Generate short videos with one click using AI LLM.(https://github.com/harry0703/MoneyPrinterTurbo)
5. [letta-ai / letta]:Letta(原名MemGPT)是一个用于创建具有内存的LLM服务的框架。(https://github.com/letta-ai/letta)
6. [khoj-ai / khoj]:您的AI第二大脑。可自托管。从网络或您的文档中获取答案。构建自定义代理,安排自动化,进行深入研究。将任何在线或本地的LLM转换为您的个人、自主AI(例如gpt、claude、gemini、llama、qwen、mistral)。(https://github.com/khoj-ai/khoj)
7. [apify / crawlee-python]:Crawlee——一个用于Python的网页抓取和浏览器自动化库,用于构建可靠的爬虫。从AI、LLM、RAG或GPT中提取数据。从网站下载HTML、PDF、JPG、PNG和其他文件。与BeautifulSoup、Playwright和原始HTTP一起工作。支持全屏和全屏模式。带有代理轮换。(https://github.com/apify/crawlee-python)
8. [All-Hands-AI / OpenHands]:🙌 OpenHands:少写代码,多造物(https://github.com/All-Hands-AI/OpenHands)
9. [mikf / gallery-dl]:用于从多个图像托管网站下载图像画廊和收藏的命令行程序(https://github.com/mikf/gallery-dl)
10. [LibraHp / GetQzonehistory]:获取QQ空间发布的历史说说(https://github.com/LibraHp/GetQzonehistory)
11. [hacksider / Deep-Live-Cam]:实时人脸交换和一键视频深度伪造,只需一张图片(https://github.com/hacksider/Deep-Live-Cam)
12. [unclecode / crawl4ai]:🔥🕷️ Crawl4AI:开源的LLM友好型Web爬虫和抓取器(https://github.com/unclecode/crawl4ai)
13. [infinition / Bjorn]:Bjorn是一个强大的基于Raspberry Pi的2.13英寸e-Paper HAT的网络安全扫描和攻击性安全工具。它发现网络目标,识别开放端口,暴露的服务和潜在漏洞。Bjorn可以进行暴力攻击、文件窃取、主机僵尸化和支持自定义攻击脚本。(https://github.com/infinition/Bjorn)
14. [3b1b / manim]:解释性数学视频的动画引擎(https://github.com/3b1b/manim)
15. [ccxt / ccxt]:支持超过100个比特币/加密货币交易所的JavaScript / TypeScript / Python / C# / PHP加密货币交易API(https://github.com/ccxt/ccxt)
16. [Guovin / TV]:📺IPTV电视直播源更新工具🚀:包含💰央视(付费)、📡卫视、🏠广东、🌊港·澳·台、🎬电影、🎥咪咕、🏀体育、🪁动画、🎮游戏、🎵音乐、🏛经典剧场;支持自定义增加频道;支持组播源、酒店源、订阅源、关键字搜索;每天自动更新两次,结果可用于TVBox等播放软件;支持工作流、Docker(amd64/arm64)、命令行、GUI运行方式 | IPTV live TV source update tool(https://github.com/Guovin/TV)
17. [dortania / OpenCore-Legacy-Patcher]:就像以前一样体验macOS(https://github.com/dortania/OpenCore-Legacy-Patcher)
18. [opendatalab / PDF-Extract-Kit]:用于高质量PDF内容提取的全面工具包(https://github.com/opendatalab/PDF-Extract-Kit)
19. [wistbean / learn_python3_spider]:python爬虫教程系列、从0到1学习python爬虫,包括浏览器抓包,手机APP抓包,如 fiddler、mitmproxy,各种爬虫涉及的模块的使用,如:requests、beautifulSoup、selenium、appium、scrapy等,以及IP代理,验证码识别,Mysql,MongoDB数据库的python使用,多线程多进程爬虫的使用,css 爬虫加密逆向破解,JS爬虫逆向,分布式爬虫,爬虫项目实战实例等(https://github.com/wistbean/learn_python3_spider)
20. [projectmesa / mesa]:Mesa是一个开源的Python库,用于基于代理的建模,非常适合模拟复杂系统并探索涌现行为。(https://github.com/projectmesa/mesa)
21. [mahdibland / V2RayAggregator]:从公共来源收集大量的Shadowsocks、ShadowsocksR、Trojan、Vmess,并通过速度筛选最佳节点(https://github.com/mahdibland/V2RayAggregator)
最惊艳的项目:[THUDM / CogVideo]: 文本和图像到视频生成的创新技术,为视频内容创作提供了新的可能性。
今天的趋势项目关注的领域和特点:主要集中在AI应用、数据管道管理、网络安全、视频处理、爬虫技术等方面,体现了技术向深度和广度发展的趋势。
产品联系: [email protected]
2024-11-12 start the job...
try at 0 to get trends~
when scrape HTTPSConnectionPool(host='github.com', port=443): Read timed out. occurs
scape ends
ai is reading, the info is:
when ai analyze, Error code: 400, with error text {"error":{"code":"1213","message":"未正常接收到prompt参数。"}} occurs...
ai ans is:
None
Attempt 1 failed with error: write() argument must be str, not None
try at 1 to get trends~
when scrape HTTPSConnectionPool(host='github.com', port=443): Read timed out. (read timeout=10) occurs
scape ends
ai is reading, the info is:
when ai analyze, Error code: 400, with error text {"error":{"code":"1213","message":"未正常接收到prompt参数。"}} occurs...
ai ans is:
None
Attempt 2 failed with error: write() argument must be str, not None
try at 2 to get trends~
scrape() status_code: 200
https://github.com/exo-explore/exo
https://github.com/PrefectHQ/prefect
https://github.com/hacksider/Deep-Live-Cam
https://github.com/harry0703/MoneyPrinterTurbo
https://github.com/LibraHp/GetQzonehistory
https://github.com/infinition/Bjorn
https://github.com/kholia/OSX-KVM
https://github.com/THUDM/CogVideo
https://github.com/paperless-ngx/paperless-ngx
https://github.com/darrenburns/posting
https://github.com/khoj-ai/khoj
https://github.com/521xueweihan/GitHub520
https://github.com/cleanlab/cleanlab
https://github.com/m-bain/whisperX
https://github.com/neuml/txtai
scape ends
ai is reading, the info is:
1. [exo-explore / exo]:Run your own AI cluster at home with everyday devices 📱💻 🖥️⌚(https://github.com/exo-explore/exo)
2. [PrefectHQ / prefect]:Prefect is a workflow orchestration framework for building resilient data pipelines in Python.(https://github.com/PrefectHQ/prefect)
3. [hacksider / Deep-Live-Cam]:real time face swap and one-click video deepfake with only a single image(https://github.com/hacksider/Deep-Live-Cam)
4. [harry0703 / MoneyPrinterTurbo]:利用AI大模型,一键生成高清短视频 Generate short videos with one click using AI LLM.(https://github.com/harry0703/MoneyPrinterTurbo)
5. [LibraHp / GetQzonehistory]:获取QQ空间发布的历史说说(https://github.com/LibraHp/GetQzonehistory)
6. [infinition / Bjorn]:Bjorn is a powerful network scanning and offensive security tool for the Raspberry Pi with a 2.13-inch e-Paper HAT. It discovers network targets, identifies open ports, exposed services, and potential vulnerabilities. Bjorn can perform brute force attacks, file stealing, host zombification, and supports custom attack scripts.(https://github.com/infinition/Bjorn)
7. [kholia / OSX-KVM]:Run macOS on QEMU/KVM. With OpenCore + Monterey + Ventura + Sonoma support now! Only commercial (paid) support is available now to avoid spammy issues. No Mac system is required.(https://github.com/kholia/OSX-KVM)
8. [THUDM / CogVideo]:text and image to video generation: CogVideoX (2024) and CogVideo (ICLR 2023)(https://github.com/THUDM/CogVideo)
9. [paperless-ngx / paperless-ngx]:A community-supported supercharged version of paperless: scan, index and archive all your physical documents(https://github.com/paperless-ngx/paperless-ngx)
10. [darrenburns / posting]:The modern API client that lives in your terminal.(https://github.com/darrenburns/posting)
11. [khoj-ai / khoj]:Your AI second brain. Self-hostable. Get answers from the web or your docs. Build custom agents, schedule automations, do deep research. Turn any online or local LLM into your personal, autonomous AI (e.g gpt, claude, gemini, llama, qwen, mistral).(https://github.com/khoj-ai/khoj)
12. [521xueweihan / GitHub520]:😘 让你“爱”上 GitHub,解决访问时图裂、加载慢的问题。(无需安装)(https://github.com/521xueweihan/GitHub520)
13. [cleanlab / cleanlab]:The standard data-centric AI package for data quality and machine learning with messy, real-world data and labels.(https://github.com/cleanlab/cleanlab)
14. [m-bain / whisperX]:WhisperX: Automatic Speech Recognition with Word-level Timestamps (& Diarization)(https://github.com/m-bain/whisperX)
15. [neuml / txtai]:💡 All-in-one open-source embeddings database for semantic search, LLM orchestration and language model workflows(https://github.com/neuml/txtai)
ai ans is:
1. [exo-explore / exo]:在家使用日常设备运行自己的AI集群 📱💻 🖥️⌚(https://github.com/exo-explore/exo)
2. [PrefectHQ / prefect]:Prefect是用于构建具有弹性数据管道的Python工作流编排框架。(https://github.com/PrefectHQ/prefect)
3. [hacksider / Deep-Live-Cam]:仅用一张图片即可实现实时人脸交换和一键视频深度伪造(https://github.com/hacksider/Deep-Live-Cam)
4. [harry0703 / MoneyPrinterTurbo]:利用AI大模型,一键生成高清短视频 Generate short videos with one click using AI LLM.(https://github.com/harry0703/MoneyPrinterTurbo)
5. [LibraHp / GetQzonehistory]:获取QQ空间发布的历史说说(https://github.com/LibraHp/GetQzonehistory)
6. [infinition / Bjorn]:Bjorn是一款强大的基于Raspberry Pi的网络扫描和攻击性安全工具,具有2.13英寸的电子纸HAT。它可以发现网络目标、识别开放端口、暴露的服务和潜在漏洞。Bjorn可以进行暴力攻击、文件窃取、主机僵尸化,并支持自定义攻击脚本。(https://github.com/infinition/Bjorn)
7. [kholia / OSX-KVM]:在QEMU/KVM上运行macOS。现在支持OpenCore + Monterey + Ventura + Sonoma!目前仅提供商业(付费)支持,以避免垃圾邮件问题。无需Mac系统。(https://github.com/kholia/OSX-KVM)
8. [THUDM / CogVideo]:文本和图像生成视频:CogVideoX (2024) 和 CogVideo (ICLR 2023)(https://github.com/THUDM/CogVideo)
9. [paperless-ngx / paperless-ngx]:纸介文件管理社区支持的超级版本:扫描、索引和存档所有你的物理文件(https://github.com/paperless-ngx/paperless-ngx)
10. [darrenburns / posting]:居住在终端中的现代API客户端。(https://github.com/darrenburns/posting)
11. [khoj-ai / khoj]:你的AI第二大脑。可自托管。从网页或你的文档中获得答案。构建自定义代理、安排自动化、进行深度研究。将任何在线或本地LLM转变为你的个人、自主AI(例如gpt、claude、gemini、llama、qwen、mistral)。(https://github.com/khoj-ai/khoj)
12. [521xueweihan / GitHub520]:😘 让你“爱”上GitHub,解决访问时图裂、加载慢的问题。(无需安装)(https://github.com/521xueweihan/GitHub520)
13. [cleanlab / cleanlab]:用于数据质量和机器学习的标准数据导向AI软件包,适用于混乱、真实世界数据和标签。(https://github.com/cleanlab/cleanlab)
14. [m-bain / whisperX]:WhisperX:带单词级时间戳的自动语音识别(和分词)(https://github.com/m-bain/whisperX)
15. [neuml / txtai]:💡 一站式开源嵌入数据库,用于语义搜索、LLM编排和语言模型工作流程(https://github.com/neuml/txtai)
最惊艳的项目推荐:[THUDM / CogVideo]: 文本和图像生成视频,实现文本到视频的转换,具有创新性和实用性。
今天趋势项目的关注领域和特点:主要集中在AI和机器学习领域,包括AI集群构建、数据管道编排、视频生成、深度学习、网络扫描和安全工具等。特点包括技术创新、实用性强、开源共享。
2024-11-13 start the job...
try at 0 to get trends~
when scrape HTTPSConnectionPool(host='github.com', port=443): Read timed out. (read timeout=10) occurs
scape ends
ai is reading, the info is:
when ai analyze, Error code: 400, with error text {"error":{"code":"1213","message":"未正常接收到prompt参数。"}} occurs...
ai ans is:
None
Attempt 1 failed with error: write() argument must be str, not None
try at 1 to get trends~
when scrape HTTPSConnectionPool(host='github.com', port=443): Max retries exceeded with url: /trending/python (Caused by ConnectTimeoutError(<urllib3.connection.HTTPSConnection object at 0x74e40fc169f0>, 'Connection to github.com timed out. (connect timeout=10)')) occurs
scape ends
ai is reading, the info is:
when ai analyze, Error code: 400, with error text {"error":{"code":"1213","message":"未正常接收到prompt参数。"}} occurs...
ai ans is:
None
Attempt 2 failed with error: write() argument must be str, not None
try at 2 to get trends~
scrape() status_code: 200
https://github.com/exo-explore/exo
https://github.com/infinition/Bjorn
https://github.com/hacksider/Deep-Live-Cam
https://github.com/harry0703/MoneyPrinterTurbo
https://github.com/khoj-ai/khoj
https://github.com/LibraHp/GetQzonehistory
https://github.com/confident-ai/deepeval
https://github.com/SYSTRAN/faster-whisper
https://github.com/public-apis/public-apis
https://github.com/paperless-ngx/paperless-ngx
https://github.com/letta-ai/letta
https://github.com/dockur/macos
https://github.com/axolotl-ai-cloud/axolotl
https://github.com/wagtail/wagtail
https://github.com/home-assistant/supervisor
https://github.com/apache/airflow
scape ends
ai is reading, the info is:
1. [exo-explore / exo]:Run your own AI cluster at home with everyday devices 📱💻 🖥️⌚(https://github.com/exo-explore/exo)
2. [infinition / Bjorn]:Bjorn is a powerful network scanning and offensive security tool for the Raspberry Pi with a 2.13-inch e-Paper HAT. It discovers network targets, identifies open ports, exposed services, and potential vulnerabilities. Bjorn can perform brute force attacks, file stealing, host zombification, and supports custom attack scripts.(https://github.com/infinition/Bjorn)
3. [hacksider / Deep-Live-Cam]:real time face swap and one-click video deepfake with only a single image(https://github.com/hacksider/Deep-Live-Cam)
4. [harry0703 / MoneyPrinterTurbo]:利用AI大模型,一键生成高清短视频 Generate short videos with one click using AI LLM.(https://github.com/harry0703/MoneyPrinterTurbo)
5. [khoj-ai / khoj]:Your AI second brain. Self-hostable. Get answers from the web or your docs. Build custom agents, schedule automations, do deep research. Turn any online or local LLM into your personal, autonomous AI (e.g gpt, claude, gemini, llama, qwen, mistral).(https://github.com/khoj-ai/khoj)
6. [LibraHp / GetQzonehistory]:获取QQ空间发布的历史说说(https://github.com/LibraHp/GetQzonehistory)
7. [confident-ai / deepeval]:The LLM Evaluation Framework(https://github.com/confident-ai/deepeval)
8. [SYSTRAN / faster-whisper]:Faster Whisper transcription with CTranslate2(https://github.com/SYSTRAN/faster-whisper)
9. [public-apis / public-apis]:A collective list of free APIs(https://github.com/public-apis/public-apis)
10. [paperless-ngx / paperless-ngx]:A community-supported supercharged version of paperless: scan, index and archive all your physical documents(https://github.com/paperless-ngx/paperless-ngx)
11. [letta-ai / letta]:Letta (formerly MemGPT) is a framework for creating LLM services with memory.(https://github.com/letta-ai/letta)
12. [dockur / macos]:OSX (macOS) inside a Docker container.(https://github.com/dockur/macos)
13. [axolotl-ai-cloud / axolotl]:Go ahead and axolotl questions(https://github.com/axolotl-ai-cloud/axolotl)
14. [wagtail / wagtail]:A Django content management system focused on flexibility and user experience(https://github.com/wagtail/wagtail)
15. [home-assistant / supervisor]:🏡 Home Assistant Supervisor(https://github.com/home-assistant/supervisor)
16. [apache / airflow]:Apache Airflow - A platform to programmatically author, schedule, and monitor workflows(https://github.com/apache/airflow)
ai ans is:
1. [exo-explore / exo]:在家用日常设备运行自己的AI集群 📱💻 🖥️⌚(https://github.com/exo-explore/exo)
2. [infinition / Bjorn]:Bjorn是一个针对Raspberry Pi的强大网络扫描和攻击安全工具,配备2.13英寸的电子纸HAT。它能发现网络目标、识别开放端口、暴露的服务和潜在漏洞。Bjorn可以进行暴力破解攻击、文件窃取、主机僵尸化和支持自定义攻击脚本。(https://github.com/infinition/Bjorn)
3. [hacksider / Deep-Live-Cam]:仅使用一张图片即可实现实时面部交换和一键式视频深度伪造(https://github.com/hacksider/Deep-Live-Cam)
4. [harry0703 / MoneyPrinterTurbo]:利用AI大模型,一键生成高清短视频 Generate short videos with one click using AI LLM.(https://github.com/harry0703/MoneyPrinterTurbo)
5. [khoj-ai / khoj]:你的AI第二大脑。自托管。从网络或你的文档中获取答案。构建自定义代理、安排自动化任务、进行深入研究。将任何在线或本地的LLM转变为你的个人、自主的AI(例如gpt、claude、gemini、llama、qwen、mistral)。(https://github.com/khoj-ai/khoj)
6. [LibraHp / GetQzonehistory]:获取QQ空间发布的历史说说(https://github.com/LibraHp/GetQzonehistory)
7. [confident-ai / deepeval]:LLM评估框架(https://github.com/confident-ai/deepeval)
8. [SYSTRAN / faster-whisper]:使用CTranslate2的更快Whisper转录(https://github.com/SYSTRAN/faster-whisper)
9. [public-apis / public-apis]:免费API的集体列表(https://github.com/public-apis/public-apis)
10. [paperless-ngx / paperless-ngx]:paperless的社区支持超强大版本:扫描、索引和归档所有你的物理文档(https://github.com/paperless-ngx/paperless-ngx)
11. [letta-ai / letta]:Letta(以前称为MemGPT)是一个用于创建具有记忆的LLM服务的框架。(https://github.com/letta-ai/letta)
12. [dockur / macos]:在Docker容器中运行OSX (macOS).(https://github.com/dockur/macos)
13. [axolotl-ai-cloud / axolotl]:大胆提问axolotl(https://github.com/axolotl-ai-cloud/axolotl)
14. [wagtail / wagtail]:一个专注于灵活性和用户体验的Django内容管理系统(https://github.com/wagtail/wagtail)
15. [home-assistant / supervisor]:🏡 Home Assistant Supervisor(https://github.com/home-assistant/supervisor)
16. [apache / airflow]:Apache Airflow - 一个用于程序化创建、安排和监控工作流的平台(https://github.com/apache/airflow)
惊艳项目推荐:[khoj-ai / khoj] - 你的AI第二大脑,能够从网络或你的文档中获取答案,构建自定义代理,进行深入研究,将任何在线或本地的LLM转变为你的个人、自主的AI。
今日趋势项目关注领域和特点:主要关注AI、网络扫描与安全、深度学习应用、内容管理、个人自动化工具等,特点为创新技术结合实际应用,强调用户体验和社区支持。产品联系: [email protected]
2024-11-14 start the job...
try at 0 to get trends~
when scrape HTTPSConnectionPool(host='github.com', port=443): Read timed out. (read timeout=10) occurs
scape ends
ai is reading, the info is:
when ai analyze, Error code: 400, with error text {"error":{"code":"1213","message":"未正常接收到prompt参数。"}} occurs...
ai ans is:
None
Attempt 1 failed with error: write() argument must be str, not None
try at 1 to get trends~
when scrape HTTPSConnectionPool(host='github.com', port=443): Max retries exceeded with url: /trending/python (Caused by ConnectTimeoutError(<urllib3.connection.HTTPSConnection object at 0x74e40fd9a060>, 'Connection to github.com timed out. (connect timeout=10)')) occurs
scape ends
ai is reading, the info is:
when ai analyze, Error code: 400, with error text {"error":{"code":"1213","message":"未正常接收到prompt参数。"}} occurs...
ai ans is:
None
Attempt 2 failed with error: write() argument must be str, not None
try at 2 to get trends~
when scrape HTTPSConnectionPool(host='github.com', port=443): Read timed out. (read timeout=10) occurs
scape ends
ai is reading, the info is:
when ai analyze, Error code: 400, with error text {"error":{"code":"1213","message":"未正常接收到prompt参数。"}} occurs...
ai ans is:
None
Attempt 3 failed with error: write() argument must be str, not None
try at 3 to get trends~
scrape() status_code: 200
https://github.com/dockur/macos
https://github.com/microsoft/TinyTroupe
https://github.com/QwenLM/Qwen2.5-Coder
https://github.com/exo-explore/exo
https://github.com/jackfrued/Python-100-Days
https://github.com/Guovin/TV
https://github.com/donnemartin/system-design-primer
https://github.com/Huanshere/VideoLingo
https://github.com/huggingface/text-generation-inference
https://github.com/MIC-DKFZ/nnUNet
https://github.com/infinition/Bjorn
https://github.com/apache/tvm
https://github.com/Azure-Samples/chat-with-your-data-solution-accelerator
https://github.com/crewAIInc/crewAI
https://github.com/getsentry/sentry
https://github.com/kholia/OSX-KVM
https://github.com/harry0703/MoneyPrinterTurbo
scape ends
ai is reading, the info is:
1. [dockur / macos]:OSX (macOS) inside a Docker container.(https://github.com/dockur/macos)
2. [microsoft / TinyTroupe]:LLM-powered multiagent persona simulation for imagination enhancement and business insights.(https://github.com/microsoft/TinyTroupe)
3. [QwenLM / Qwen2.5-Coder]:Qwen2.5-Coder is the code version of Qwen2.5, the large language model series developed by Qwen team, Alibaba Cloud.(https://github.com/QwenLM/Qwen2.5-Coder)
4. [exo-explore / exo]:Run your own AI cluster at home with everyday devices 📱💻 🖥️⌚(https://github.com/exo-explore/exo)
5. [jackfrued / Python-100-Days]:Python - 100天从新手到大师(https://github.com/jackfrued/Python-100-Days)
6. [Guovin / TV]:📺IPTV电视直播源更新工具🚀:包含💰央视、📡卫视、☘️广东及各省份地方台、🌊港·澳·台、🎬电影、🎥咪咕、🏀体育、🪁动画、🎮游戏、🎵音乐、🏛经典剧场;支持自定义增加频道;支持组播源、酒店源、订阅源、关键字搜索;每天自动更新两次,结果可用于TVBox等播放软件;支持工作流、Docker(amd64/arm64)、命令行、GUI运行方式 | IPTV live TV source update tool(https://github.com/Guovin/TV)
7. [donnemartin / system-design-primer]:Learn how to design large-scale systems. Prep for the system design interview. Includes Anki flashcards.(https://github.com/donnemartin/system-design-primer)
8. [Huanshere / VideoLingo]:Netflix-level subtitle cutting, translation, alignment, and even dubbing - one-click fully automated AI video subtitle team | Netflix级字幕切割、翻译、对齐、甚至加上配音,一键全自动视频搬运AI字幕组(https://github.com/Huanshere/VideoLingo)
9. [huggingface / text-generation-inference]:Large Language Model Text Generation Inference(https://github.com/huggingface/text-generation-inference)
10. [MIC-DKFZ / nnUNet]:(https://github.com/MIC-DKFZ/nnUNet)
11. [infinition / Bjorn]:Bjorn is a powerful network scanning and offensive security tool for the Raspberry Pi with a 2.13-inch e-Paper HAT. It discovers network targets, identifies open ports, exposed services, and potential vulnerabilities. Bjorn can perform brute force attacks, file stealing, host zombification, and supports custom attack scripts.(https://github.com/infinition/Bjorn)
12. [apache / tvm]:Open deep learning compiler stack for cpu, gpu and specialized accelerators(https://github.com/apache/tvm)
13. [Azure-Samples / chat-with-your-data-solution-accelerator]:A Solution Accelerator for the RAG pattern running in Azure, using Azure AI Search for retrieval and Azure OpenAI large language models to power ChatGPT-style and Q&A experiences. This includes most common requirements and best practices.(https://github.com/Azure-Samples/chat-with-your-data-solution-accelerator)
14. [crewAIInc / crewAI]:Framework for orchestrating role-playing, autonomous AI agents. By fostering collaborative intelligence, CrewAI empowers agents to work together seamlessly, tackling complex tasks.(https://github.com/crewAIInc/crewAI)
15. [getsentry / sentry]:Developer-first error tracking and performance monitoring(https://github.com/getsentry/sentry)
16. [kholia / OSX-KVM]:Run macOS on QEMU/KVM. With OpenCore + Monterey + Ventura + Sonoma support now! Only commercial (paid) support is available now to avoid spammy issues. No Mac system is required.(https://github.com/kholia/OSX-KVM)
17. [harry0703 / MoneyPrinterTurbo]:利用AI大模型,一键生成高清短视频 Generate short videos with one click using AI LLM.(https://github.com/harry0703/MoneyPrinterTurbo)
ai ans is:
1. [dockur / macos]:在Docker容器内运行OSX (macOS)。(https://github.com/dockur/macos)
2. [microsoft / TinyTroupe]:基于LLM的多人角色模拟,用于增强想象力和商业洞察。(https://github.com/microsoft/TinyTroupe)
3. [QwenLM / Qwen2.5-Coder]:Qwen2.5-Coder是阿里巴巴云开发的大型语言模型系列Qwen2.5的代码版本。(https://github.com/QwenLM/Qwen2.5-Coder)
4. [exo-explore / exo]:使用日常设备在家运行自己的AI集群 📱💻 🖥️⌚。(https://github.com/exo-explore/exo)
5. [jackfrued / Python-100-Days]:Python - 100天从新手到大师。(https://github.com/jackfrued/Python-100-Days)
6. [Guovin / TV]:📺IPTV电视直播源更新工具🚀:包含央视、卫视、广东及各省份地方台、港·澳·台、电影、咪咕、体育、动画、游戏、音乐、经典剧场;支持自定义增加频道;支持组播源、酒店源、订阅源、关键字搜索;每天自动更新两次,结果可用于TVBox等播放软件;支持工作流、Docker(amd64/arm64)、命令行、GUI运行方式 | IPTV live TV source update tool。(https://github.com/Guovin/TV)
7. [donnemartin / system-design-primer]:学习如何设计大规模系统。准备系统设计面试。包括Anki闪卡。(https://github.com/donnemartin/system-design-primer)
8. [Huanshere / VideoLingo]:Netflix级字幕切割、翻译、对齐,甚至加上配音的一键全自动视频搬运AI字幕组。(https://github.com/Huanshere/VideoLingo)
9. [huggingface / text-generation-inference]:大型语言模型文本生成推理。(https://github.com/huggingface/text-generation-inference)
10. [MIC-DKFZ / nnUNet]:(https://github.com/MIC-DKFZ/nnUNet)
11. [infinition / Bjorn]:Bjorn是一个强大的Raspberry Pi网络扫描和攻击安全工具,带有2.13英寸的e-Paper HAT。它可以发现网络目标,识别开放端口,暴露的服务和潜在漏洞。Bjorn可以进行暴力破解攻击,文件窃取,主机僵尸化和支持自定义攻击脚本。(https://github.com/infinition/Bjorn)
12. [apache / tvm]:针对cpu、gpu和专用加速器的开源深度学习编译器堆栈。(https://github.com/apache/tvm)
13. [Azure-Samples / chat-with-your-data-solution-accelerator]:在Azure上运行的RAG模式的解决方案加速器,使用Azure AI Search进行检索和Azure OpenAI大型语言模型来提供ChatGPT风格和问答体验。包括大多数常见要求和最佳实践。(https://github.com/Azure-Samples/chat-with-your-data-solution-accelerator)
14. [crewAIInc / crewAI]:用于编排角色扮演、自主AI代理的框架。通过培养协作智能,CrewAI使代理能够无缝协作,处理复杂任务。(https://github.com/crewAIInc/crewAI)
15. [getsentry / sentry]:面向开发者的错误跟踪和性能监控。(https://github.com/getsentry/sentry)
16. [kholia / OSX-KVM]:在QEMU/KVM上运行macOS。现在支持OpenCore + Monterey + Ventura + Sonoma!目前仅提供商业(付费)支持,以避免垃圾问题。无需Mac系统。(https://github.com/kholia/OSX-KVM)
17. [harry0703 / MoneyPrinterTurbo]:利用AI大模型,一键生成高清短视频。(https://github.com/harry0703/MoneyPrinterTurbo)
惊艳项目安利:[microsoft / TinyTroupe] 基于LLM的多人角色模拟,为想象力和商业洞察提供了强大的工具。
今日趋势项目关注的领域和特点:包括AI应用、系统设计、编程教育、多媒体处理、网络安全和云计算等多个领域,特点为技术创新、跨平台应用和实用工具。产品联系: [email protected]
2024-11-15 start the job...
try at 0 to get trends~
scrape() status_code: 200
https://github.com/dockur/macos
https://github.com/opendatalab/MinerU
https://github.com/microsoft/TinyTroupe
https://github.com/exo-explore/exo
https://github.com/Cinnamon/kotaemon
https://github.com/Huanshere/VideoLingo
https://github.com/blacklanternsecurity/bbot
https://github.com/spack/spack
https://github.com/QwenLM/Qwen2.5-Coder
https://github.com/harry0703/MoneyPrinterTurbo
https://github.com/huggingface/text-generation-inference
https://github.com/BerriAI/litellm
https://github.com/PaddlePaddle/PaddleNLP
https://github.com/donnemartin/system-design-primer
https://github.com/LibraHp/GetQzonehistory
https://github.com/Azure-Samples/azure-search-openai-demo
https://github.com/getredash/redash
https://github.com/aigc-apps/EasyAnimate
scape ends
ai is reading, the info is:
1. [dockur / macos]:OSX (macOS) inside a Docker container.(https://github.com/dockur/macos)
2. [opendatalab / MinerU]:A one-stop, open-source, high-quality data extraction tool, supports PDF/webpage/e-book extraction.一站式开源高质量数据提取工具,支持PDF/网页/多格式电子书提取。(https://github.com/opendatalab/MinerU)
3. [microsoft / TinyTroupe]:LLM-powered multiagent persona simulation for imagination enhancement and business insights.(https://github.com/microsoft/TinyTroupe)
4. [exo-explore / exo]:Run your own AI cluster at home with everyday devices 📱💻 🖥️⌚(https://github.com/exo-explore/exo)
5. [Cinnamon / kotaemon]:An open-source RAG-based tool for chatting with your documents.(https://github.com/Cinnamon/kotaemon)
6. [Huanshere / VideoLingo]:Netflix-level subtitle cutting, translation, alignment, and even dubbing - one-click fully automated AI video subtitle team | Netflix级字幕切割、翻译、对齐、甚至加上配音,一键全自动视频搬运AI字幕组(https://github.com/Huanshere/VideoLingo)
7. [blacklanternsecurity / bbot]:A recursive internet scanner for hackers.(https://github.com/blacklanternsecurity/bbot)
8. [spack / spack]:A flexible package manager that supports multiple versions, configurations, platforms, and compilers.(https://github.com/spack/spack)
9. [QwenLM / Qwen2.5-Coder]:Qwen2.5-Coder is the code version of Qwen2.5, the large language model series developed by Qwen team, Alibaba Cloud.(https://github.com/QwenLM/Qwen2.5-Coder)
10. [harry0703 / MoneyPrinterTurbo]:利用AI大模型,一键生成高清短视频 Generate short videos with one click using AI LLM.(https://github.com/harry0703/MoneyPrinterTurbo)
11. [huggingface / text-generation-inference]:Large Language Model Text Generation Inference(https://github.com/huggingface/text-generation-inference)
12. [BerriAI / litellm]:Python SDK, Proxy Server (LLM Gateway) to call 100+ LLM APIs in OpenAI format - [Bedrock, Azure, OpenAI, VertexAI, Cohere, Anthropic, Sagemaker, HuggingFace, Replicate, Groq](https://github.com/BerriAI/litellm)
13. [PaddlePaddle / PaddleNLP]:👑 Easy-to-use and powerful NLP and LLM library with 🤗 Awesome model zoo, supporting wide-range of NLP tasks from research to industrial applications, including 🗂Text Classification, 🔍 Neural Search, ❓ Question Answering, ℹ️ Information Extraction, 📄 Document Intelligence, 💌 Sentiment Analysis etc.(https://github.com/PaddlePaddle/PaddleNLP)
14. [donnemartin / system-design-primer]:Learn how to design large-scale systems. Prep for the system design interview. Includes Anki flashcards.(https://github.com/donnemartin/system-design-primer)
15. [LibraHp / GetQzonehistory]:获取QQ空间发布的历史说说(https://github.com/LibraHp/GetQzonehistory)
16. [Azure-Samples / azure-search-openai-demo]:A sample app for the Retrieval-Augmented Generation pattern running in Azure, using Azure AI Search for retrieval and Azure OpenAI large language models to power ChatGPT-style and Q&A experiences.(https://github.com/Azure-Samples/azure-search-openai-demo)
17. [getredash / redash]:Make Your Company Data Driven. Connect to any data source, easily visualize, dashboard and share your data.(https://github.com/getredash/redash)
18. [aigc-apps / EasyAnimate]:📺 An End-to-End Solution for High-Resolution and Long Video Generation Based on Transformer Diffusion(https://github.com/aigc-apps/EasyAnimate)
ai ans is:
1. [dockur / macos]: 在Docker容器中运行OSX (macOS)。(https://github.com/dockur/macos)
2. [opendatalab / MinerU]: 一站式开源高质量数据提取工具,支持PDF/网页/多格式电子书提取。(https://github.com/opendatalab/MinerU)
3. [microsoft / TinyTroupe]: 由LLM驱动的多代理角色模拟,用于想象力和商业洞察力的提升。(https://github.com/microsoft/TinyTroupe)
4. [exo-explore / exo]: 使用日常设备在家中运行自己的AI集群 📱💻 🖥️⌚。(https://github.com/exo-explore/exo)
5. [Cinnamon / kotaemon]: 一个基于RAG的开源工具,可用于与您的文档进行聊天。(https://github.com/Cinnamon/kotaemon)
6. [Huanshere / VideoLingo]: Netflix级字幕切割、翻译、对齐,甚至配音——一键全自动视频搬运AI字幕组。(https://github.com/Huanshere/VideoLingo)
7. [blacklanternsecurity / bbot]: 一个递归式网络扫描器,适用于黑客。(https://github.com/blacklanternsecurity/bbot)
8. [spack / spack]: 一个灵活的包管理器,支持多个版本、配置、平台和编译器。(https://github.com/spack/spack)
9. [QwenLM / Qwen2.5-Coder]: Qwen2.5-Coder是Qwen2.5的代码版本,由Qwen团队和阿里云共同开发的大型语言模型系列。(https://github.com/QwenLM/Qwen2.5-Coder)
10. [harry0703 / MoneyPrinterTurbo]: 利用AI大模型,一键生成高清短视频。(https://github.com/harry0703/MoneyPrinterTurbo)
11. [huggingface / text-generation-inference]: 大型语言模型文本生成推理。(https://github.com/huggingface/text-generation-inference)
12. [BerriAI / litellm]: Python SDK,代理服务器(LLM网关),以OpenAI格式调用100+ LLM API - [Bedrock, Azure, OpenAI, VertexAI, Cohere, Anthropic, Sagemaker, HuggingFace, Replicate, Groq]。(https://github.com/BerriAI/litellm)
13. [PaddlePaddle / PaddleNLP]: 👑 易于使用且功能强大的NLP和LLM库,拥有🤗 精彩的模型库,支持从研究到工业应用的广泛NLP任务,包括🗂 文本分类、🔍 神经搜索、❓ 问答、ℹ️ 信息提取、📄 文档智能、💌 情感分析等。(https://github.com/PaddlePaddle/PaddleNLP)
14. [donnemartin / system-design-primer]: 学习如何设计大规模系统。为系统设计面试做准备。包括Anki闪卡。(https://github.com/donnemartin/system-design-primer)
15. [LibraHp / GetQzonehistory]: 获取QQ空间发布的历史说说。(https://github.com/LibraHp/GetQzonehistory)
16. [Azure-Samples / azure-search-openai-demo]: Azure上运行的检索增强生成模式示例应用程序,使用Azure AI Search进行检索,并使用Azure OpenAI大型语言模型提供ChatGPT风格和问答体验。(https://github.com/Azure-Samples/azure-search-openai-demo)
17. [getredash / redash]: 使您的公司数据驱动。连接到任何数据源,轻松可视化、仪表板和共享您的数据。(https://github.com/getredash/redash)
18. [aigc-apps / EasyAnimate]: 📺 基于Transformer扩散的高分辨率和长视频生成端到端解决方案。(https://github.com/aigc-apps/EasyAnimate)
惊艳项目推荐:[microsoft / TinyTroupe] - 由LLM驱动的多代理角色模拟,用于想象力和商业洞察力的提升。
今日趋势项目关注的领域和特点:主要集中在AI应用、数据提取和系统设计等方面,展现出开源社区对技术创新和实际应用的追求。产品联系: [email protected]
2024-11-16 start the job...
try at 0 to get trends~
scrape() status_code: 200
https://github.com/opendatalab/MinerU
https://github.com/microsoft/TinyTroupe
https://github.com/dockur/macos
https://github.com/Guovin/TV
https://github.com/Cinnamon/kotaemon
https://github.com/Huanshere/VideoLingo
https://github.com/QwenLM/Qwen2.5-Coder
https://github.com/blacklanternsecurity/bbot
https://github.com/hiyouga/LLaMA-Factory
https://github.com/explodinggradients/ragas
https://github.com/roboflow/supervision
https://github.com/huggingface/text-generation-inference
https://github.com/spack/spack
https://github.com/google-deepmind/alphafold
https://github.com/LibraHp/GetQzonehistory
https://github.com/Azure-Samples/graphrag-accelerator
https://github.com/jackfrued/Python-100-Days
https://github.com/localstack/localstack
https://github.com/Python-World/python-mini-projects
https://github.com/g0ldyy/comet
scape ends
ai is reading, the info is:
1. [opendatalab / MinerU]:A one-stop, open-source, high-quality data extraction tool, supports PDF/webpage/e-book extraction.一站式开源高质量数据提取工具,支持PDF/网页/多格式电子书提取。(https://github.com/opendatalab/MinerU)
2. [microsoft / TinyTroupe]:LLM-powered multiagent persona simulation for imagination enhancement and business insights.(https://github.com/microsoft/TinyTroupe)
3. [dockur / macos]:OSX (macOS) inside a Docker container.(https://github.com/dockur/macos)
4. [Guovin / TV]:📺IPTV电视直播源更新工具🚀:包含💰央视、📡卫视、☘️广东及各省份地方台、🌊港·澳·台、🎬电影、🎥咪咕、🏀体育、🪁动画、🎮游戏、🎵音乐、🏛经典剧场;支持自定义增加频道;支持组播源、酒店源、订阅源、关键字搜索;每天自动更新两次,结果可用于TVBox等播放软件;支持工作流、Docker(amd64/arm64)、命令行、GUI运行方式 | IPTV live TV source update tool(https://github.com/Guovin/TV)
5. [Cinnamon / kotaemon]:An open-source RAG-based tool for chatting with your documents.(https://github.com/Cinnamon/kotaemon)
6. [Huanshere / VideoLingo]:Netflix-level subtitle cutting, translation, alignment, and even dubbing - one-click fully automated AI video subtitle team | Netflix级字幕切割、翻译、对齐、甚至加上配音,一键全自动视频搬运AI字幕组(https://github.com/Huanshere/VideoLingo)
7. [QwenLM / Qwen2.5-Coder]:Qwen2.5-Coder is the code version of Qwen2.5, the large language model series developed by Qwen team, Alibaba Cloud.(https://github.com/QwenLM/Qwen2.5-Coder)
8. [blacklanternsecurity / bbot]:A recursive internet scanner for hackers.(https://github.com/blacklanternsecurity/bbot)
9. [hiyouga / LLaMA-Factory]:Unified Efficient Fine-Tuning of 100+ LLMs (ACL 2024)(https://github.com/hiyouga/LLaMA-Factory)
10. [explodinggradients / ragas]:Supercharge Your LLM Application Evaluations 🚀(https://github.com/explodinggradients/ragas)
11. [roboflow / supervision]:We write your reusable computer vision tools. 💜(https://github.com/roboflow/supervision)
12. [huggingface / text-generation-inference]:Large Language Model Text Generation Inference(https://github.com/huggingface/text-generation-inference)
13. [spack / spack]:A flexible package manager that supports multiple versions, configurations, platforms, and compilers.(https://github.com/spack/spack)
14. [google-deepmind / alphafold]:Open source code for AlphaFold 2.(https://github.com/google-deepmind/alphafold)
15. [LibraHp / GetQzonehistory]:获取QQ空间发布的历史说说(https://github.com/LibraHp/GetQzonehistory)
16. [Azure-Samples / graphrag-accelerator]:One-click deploy of a Knowledge Graph powered RAG (GraphRAG) in Azure(https://github.com/Azure-Samples/graphrag-accelerator)
17. [jackfrued / Python-100-Days]:Python - 100天从新手到大师(https://github.com/jackfrued/Python-100-Days)
18. [localstack / localstack]:💻 A fully functional local AWS cloud stack. Develop and test your cloud & Serverless apps offline(https://github.com/localstack/localstack)
19. [Python-World / python-mini-projects]:A collection of simple python mini projects to enhance your python skills(https://github.com/Python-World/python-mini-projects)
20. [g0ldyy / comet]:Stremio's fastest torrent/debrid search add-on.(https://github.com/g0ldyy/comet)
ai ans is:
1. [opendatalab / MinerU]: 一站式开源高质量数据提取工具,支持PDF/网页/多格式电子书提取。(https://github.com/opendatalab/MinerU)
2. [microsoft / TinyTroupe]: 驱动LLM的多代理角色模拟工具,用于提升想象力和商业洞察。(https://github.com/microsoft/TinyTroupe)
3. [dockur / macos]: 在Docker容器中运行的OSX (macOS)。(https://github.com/dockur/macos)
4. [Guovin / TV]: 📺 IPTV电视直播源更新工具🚀:包含央视、卫视、地方台、港澳台、电影、咪咕、体育、动画、游戏、音乐、经典剧场等,支持自定义增加频道;支持组播源、酒店源、订阅源、关键字搜索;每天自动更新两次,结果可用于TVBox等播放软件;支持工作流、Docker(amd64/arm64)、命令行、GUI运行方式 | IPTV live TV source update tool(https://github.com/Guovin/TV)
5. [Cinnamon / kotaemon]: 一个基于RAG的开源工具,用于与文档聊天。(https://github.com/Cinnamon/kotaemon)
6. [Huanshere / VideoLingo]: Netflix级字幕切割、翻译、对齐、甚至加上配音,一键全自动视频搬运AI字幕组(https://github.com/Huanshere/VideoLingo)
7. [QwenLM / Qwen2.5-Coder]: Qwen2.5-Coder是阿里巴巴云开发团队Qwen团队开发的大型语言模型系列Qwen2.5的代码版本。(https://github.com/QwenLM/Qwen2.5-Coder)
8. [blacklanternsecurity / bbot]: 针对黑客的递归互联网扫描器。(https://github.com/blacklanternsecurity/bbot)
9. [hiyouga / LLaMA-Factory]: 100+ LLM的统一高效微调(ACL 2024)(https://github.com/hiyouga/LLaMA-Factory)
10. [explodinggradients / ragas]: 增强您的LLM应用程序评估 🚀(https://github.com/explodinggradients/ragas)
11. [roboflow / supervision]: 我们编写您可重用的计算机视觉工具。 💜(https://github.com/roboflow/supervision)
12. [huggingface / text-generation-inference]: 大型语言模型文本生成推理(https://github.com/huggingface/text-generation-inference)
13. [spack / spack]: 支持多个版本、配置、平台和编译器的灵活包管理器。(https://github.com/spack/spack)
14. [google-deepmind / alphafold]: AlphaFold 2的开源代码。(https://github.com/google-deepmind/alphafold)
15. [LibraHp / GetQzonehistory]: 获取QQ空间发布的历史说说(https://github.com/LibraHp/GetQzonehistory)
16. [Azure-Samples / graphrag-accelerator]: 在Azure中一键部署由RAG (GraphRAG) 驱动的知识图(https://github.com/Azure-Samples/graphrag-accelerator)
17. [jackfrued / Python-100-Days]: Python - 100天从新手到大师(https://github.com/jackfrued/Python-100-Days)
18. [localstack / localstack]: 💻 完全功能性的本地AWS云栈。离线开发测试您的云和无服务器应用程序(https://github.com/localstack/localstack)
19. [Python-World / python-mini-projects]: 简单Python迷你项目集合,以提升您的Python技能(https://github.com/Python-World/python-mini-projects)
20. [g0ldyy / comet]: Stremio最快的 torrent/debrid 搜索插件。(https://github.com/g0ldyy/comet)
惊艳项目推荐:[Huanshere / VideoLingo] - Netflix级字幕切割、翻译、对齐、甚至加上配音,一键全自动视频搬运AI字幕组。
今日趋势项目关注的领域和特点:数据提取、多代理模拟、操作系统虚拟化、IPTV工具、文档聊天工具、视频字幕处理、AI微调、计算机视觉工具、文本生成推理、包管理器、生物信息学、云服务开发、编程学习资源等。产品联系: [email protected]
2024-11-17 start the job...
try at 0 to get trends~
when scrape HTTPSConnectionPool(host='github.com', port=443): Read timed out. (read timeout=10) occurs
scape ends
ai is reading, the info is:
when ai analyze, Error code: 400, with error text {"error":{"code":"1213","message":"未正常接收到prompt参数。"}} occurs...
ai ans is:
None
Attempt 1 failed with error: write() argument must be str, not None
try at 1 to get trends~
scrape() status_code: 200
https://github.com/opendatalab/MinerU
https://github.com/microsoft/TinyTroupe
https://github.com/donnemartin/system-design-primer
https://github.com/QwenLM/Qwen2.5-Coder
https://github.com/blacklanternsecurity/bbot
https://github.com/dockur/macos
https://github.com/phidatahq/phidata
https://github.com/comfyanonymous/ComfyUI
https://github.com/Zeyi-Lin/HivisionIDPhotos
https://github.com/Guovin/TV
https://github.com/spack/spack
https://github.com/Huanshere/VideoLingo
https://github.com/AUTOMATIC1111/stable-diffusion-webui
https://github.com/fixie-ai/ultravox
https://github.com/apache/polaris
https://github.com/livekit/agents
https://github.com/pytorch/ao
https://github.com/Cinnamon/kotaemon
scape ends
ai is reading, the info is:
1. [opendatalab / MinerU]:A one-stop, open-source, high-quality data extraction tool, supports PDF/webpage/e-book extraction.一站式开源高质量数据提取工具,支持PDF/网页/多格式电子书提取。(https://github.com/opendatalab/MinerU)
2. [microsoft / TinyTroupe]:LLM-powered multiagent persona simulation for imagination enhancement and business insights.(https://github.com/microsoft/TinyTroupe)
3. [donnemartin / system-design-primer]:Learn how to design large-scale systems. Prep for the system design interview. Includes Anki flashcards.(https://github.com/donnemartin/system-design-primer)
4. [QwenLM / Qwen2.5-Coder]:Qwen2.5-Coder is the code version of Qwen2.5, the large language model series developed by Qwen team, Alibaba Cloud.(https://github.com/QwenLM/Qwen2.5-Coder)
5. [blacklanternsecurity / bbot]:A recursive internet scanner for hackers.(https://github.com/blacklanternsecurity/bbot)
6. [dockur / macos]:OSX (macOS) inside a Docker container.(https://github.com/dockur/macos)
7. [phidatahq / phidata]:Build AI Agents with memory, knowledge, tools and reasoning. Chat with them using a beautiful Agent UI.(https://github.com/phidatahq/phidata)
8. [comfyanonymous / ComfyUI]:The most powerful and modular diffusion model GUI, api and backend with a graph/nodes interface.(https://github.com/comfyanonymous/ComfyUI)
9. [Zeyi-Lin / HivisionIDPhotos]:⚡️HivisionIDPhotos: a lightweight and efficient AI ID photos tools. 一个轻量级的AI证件照制作算法。(https://github.com/Zeyi-Lin/HivisionIDPhotos)
10. [Guovin / TV]:📺IPTV电视直播源更新工具🚀:包含💰央视、📡卫视、☘️广东及各省份地方台、🌊港·澳·台、🎬电影、🎥咪咕、🏀体育、🪁动画、🎮游戏、🎵音乐、🏛经典剧场;支持自定义增加频道;支持组播源、酒店源、订阅源、关键字搜索;每天自动更新两次,结果可用于TVBox等播放软件;支持工作流、Docker(amd64/arm64)、命令行、GUI运行方式 | IPTV live TV source update tool(https://github.com/Guovin/TV)
11. [spack / spack]:A flexible package manager that supports multiple versions, configurations, platforms, and compilers.(https://github.com/spack/spack)
12. [Huanshere / VideoLingo]:Netflix-level subtitle cutting, translation, alignment, and even dubbing - one-click fully automated AI video subtitle team | Netflix级字幕切割、翻译、对齐、甚至加上配音,一键全自动视频搬运AI字幕组(https://github.com/Huanshere/VideoLingo)
13. [AUTOMATIC1111 / stable-diffusion-webui]:Stable Diffusion web UI(https://github.com/AUTOMATIC1111/stable-diffusion-webui)
14. [fixie-ai / ultravox]:A fast multimodal LLM for real-time voice(https://github.com/fixie-ai/ultravox)
15. [apache / polaris]:Apache Polaris, the interoperable, open source catalog for Apache Iceberg(https://github.com/apache/polaris)
16. [livekit / agents]:Build real-time multimodal AI applications 🤖🎙️📹(https://github.com/livekit/agents)
17. [pytorch / ao]:PyTorch native quantization and sparsity for training and inference(https://github.com/pytorch/ao)
18. [Cinnamon / kotaemon]:An open-source RAG-based tool for chatting with your documents.(https://github.com/Cinnamon/kotaemon)
ai ans is:
今日GitHub Python项目趋势:
1. [opendatalab / MinerU]:一站式开源高质量数据提取工具,支持PDF/网页/多格式电子书提取。(https://github.com/opendatalab/MinerU)
2. [microsoft / TinyTroupe]:LLM驱动的多代理角色模拟,用于想象力增强和商业洞察。(https://github.com/microsoft/TinyTroupe)
3. [donnemartin / system-design-primer]:学习如何设计大型系统,准备系统设计面试。包括Anki闪卡。(https://github.com/donnemartin/system-design-primer)
4. [QwenLM / Qwen2.5-Coder]:Qwen2.5-Coder是Qwen团队阿里巴巴云开发的Qwen2.5大语言模型系列的代码版本。(https://github.com/QwenLM/Qwen2.5-Coder)
5. [blacklanternsecurity / bbot]:黑客用的递归互联网扫描器。(https://github.com/blacklanternsecurity/bbot)
6. [dockur / macos]:在Docker容器中运行OSX(macOS)。(https://github.com/dockur/macos)
7. [phidatahq / phidata]:使用记忆、知识、工具和推理构建AI代理。通过美观的代理UI与他们聊天。(https://github.com/phidatahq/phidata)
8. [comfyanonymous / ComfyUI]:最强大且模块化的扩散模型GUI、API和后端,具有图/节点界面。(https://github.com/comfyanonymous/ComfyUI)
9. [Zeyi-Lin / HivisionIDPhotos]:⚡️HivisionIDPhotos:一个轻量级的AI证件照制作算法。(https://github.com/Zeyi-Lin/HivisionIDPhotos)
10. [Guovin / TV]:📺IPTV电视直播源更新工具🚀:包含央视、卫视、广东及各省份地方台、港·澳·台、电影、咪咕、体育、动画、游戏、音乐、经典剧场;支持自定义增加频道;支持组播源、酒店源、订阅源、关键字搜索;每天自动更新两次,结果可用于TVBox等播放软件;支持工作流、Docker(amd64/arm64)、命令行、GUI运行方式 | IPTV live TV source update tool(https://github.com/Guovin/TV)
11. [spack / spack]:支持多版本、配置、平台和编译器的灵活包管理器。(https://github.com/spack/spack)
12. [Huanshere / VideoLingo]:Netflix级字幕切割、翻译、对齐,甚至配音的一键全自动视频搬运AI字幕组。(https://github.com/Huanshere/VideoLingo)
13. [AUTOMATIC1111 / stable-diffusion-webui]:Stable Diffusion web UI。(https://github.com/AUTOMATIC1111/stable-diffusion-webui)
14. [fixie-ai / ultravox]:一个快速的多模态LLM,用于实时语音。(https://github.com/fixie-ai/ultravox)
15. [apache / polaris]:Apache Polaris,Apache Iceberg的互操作、开源目录。(https://github.com/apache/polaris)
16. [livekit / agents]:构建实时多模态AI应用 🤖🎙️📹。(https://github.com/livekit/agents)
17. [pytorch / ao]:PyTorch原生训练和推理的量化与稀疏性。(https://github.com/pytorch/ao)
18. [Cinnamon / kotaemon]:一个基于RAG的开源工具,用于与你的文档聊天。(https://github.com/Cinnamon/kotaemon)
惊艳项目安利:[livekit / agents] 构建实时多模态AI应用 🤖🎙️📹
今日趋势项目关注领域:数据处理、AI模拟、系统设计、代码生成、网络扫描、容器化、AI视频处理、AI代理、量化与稀疏性、数据目录
特点:技术多样性,涵盖从数据处理到AI应用开发,以及系统设计和容器化技术。
2024-11-18 start the job...
try at 0 to get trends~
scrape() status_code: 200
https://github.com/donnemartin/system-design-primer
https://github.com/AUTOMATIC1111/stable-diffusion-webui
https://github.com/freqtrade/freqtrade
https://github.com/blacklanternsecurity/bbot
https://github.com/xtekky/gpt4free
https://github.com/khoj-ai/khoj
https://github.com/home-assistant/core
https://github.com/NexaAI/nexa-sdk
https://github.com/searxng/searxng
https://github.com/opendatalab/MinerU
https://github.com/phidatahq/phidata
https://github.com/dortania/OpenCore-Legacy-Patcher
https://github.com/yt-dlp/yt-dlp
https://github.com/lllyasviel/stable-diffusion-webui-forge
https://github.com/mementum/backtrader
https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI
https://github.com/spotDL/spotify-downloader
https://github.com/mikf/gallery-dl
https://github.com/NVIDIA/garak
https://github.com/ManimCommunity/manim
scape ends
ai is reading, the info is:
1. [donnemartin / system-design-primer]:Learn how to design large-scale systems. Prep for the system design interview. Includes Anki flashcards.(https://github.com/donnemartin/system-design-primer)
2. [AUTOMATIC1111 / stable-diffusion-webui]:Stable Diffusion web UI(https://github.com/AUTOMATIC1111/stable-diffusion-webui)
3. [freqtrade / freqtrade]:Free, open source crypto trading bot(https://github.com/freqtrade/freqtrade)
4. [blacklanternsecurity / bbot]:A recursive internet scanner for hackers.(https://github.com/blacklanternsecurity/bbot)
5. [xtekky / gpt4free]:The official gpt4free repository | various collection of powerful language models(https://github.com/xtekky/gpt4free)
6. [khoj-ai / khoj]:Your AI second brain. Self-hostable. Get answers from the web or your docs. Build custom agents, schedule automations, do deep research. Turn any online or local LLM into your personal, autonomous AI (e.g gpt, claude, gemini, llama, qwen, mistral).(https://github.com/khoj-ai/khoj)
7. [home-assistant / core]:🏡 Open source home automation that puts local control and privacy first.(https://github.com/home-assistant/core)
8. [NexaAI / nexa-sdk]:Nexa SDK is a comprehensive toolkit for supporting ONNX and GGML models. It supports text generation, image generation, vision-language models (VLM), auto-speech-recognition (ASR), and text-to-speech (TTS) capabilities.(https://github.com/NexaAI/nexa-sdk)
9. [searxng / searxng]:SearXNG is a free internet metasearch engine which aggregates results from various search services and databases. Users are neither tracked nor profiled.(https://github.com/searxng/searxng)
10. [opendatalab / MinerU]:A high-quality tool for convert PDF to Markdown and JSON.一站式开源高质量数据提取工具,将PDF转换成Markdown和JSON格式。(https://github.com/opendatalab/MinerU)
11. [phidatahq / phidata]:Build AI Agents with memory, knowledge, tools and reasoning. Chat with them using a beautiful Agent UI.(https://github.com/phidatahq/phidata)
12. [dortania / OpenCore-Legacy-Patcher]:Experience macOS just like before(https://github.com/dortania/OpenCore-Legacy-Patcher)
13. [yt-dlp / yt-dlp]:A feature-rich command-line audio/video downloader(https://github.com/yt-dlp/yt-dlp)
14. [lllyasviel / stable-diffusion-webui-forge]:(https://github.com/lllyasviel/stable-diffusion-webui-forge)
15. [mementum / backtrader]:Python Backtesting library for trading strategies(https://github.com/mementum/backtrader)
16. [RVC-Project / Retrieval-based-Voice-Conversion-WebUI]:Easily train a good VC model with voice data <= 10 mins!(https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI)
17. [spotDL / spotify-downloader]:Download your Spotify playlists and songs along with album art and metadata (from YouTube if a match is found).(https://github.com/spotDL/spotify-downloader)
18. [mikf / gallery-dl]:Command-line program to download image galleries and collections from several image hosting sites(https://github.com/mikf/gallery-dl)
19. [NVIDIA / garak]:the LLM vulnerability scanner(https://github.com/NVIDIA/garak)
20. [ManimCommunity / manim]:A community-maintained Python framework for creating mathematical animations.(https://github.com/ManimCommunity/manim)
ai ans is:
1. [donnemartin / system-design-primer]:学习如何设计大规模系统。准备系统设计面试。包括Anki闪卡。(https://github.com/donnemartin/system-design-primer)
2. [AUTOMATIC1111 / stable-diffusion-webui]:稳定扩散网页界面。(https://github.com/AUTOMATIC1111/stable-diffusion-webui)
3. [freqtrade / freqtrade]:免费、开源的加密货币交易机器人。(https://github.com/freqtrade/freqtrade)
4. [blacklanternsecurity / bbot]:黑客用的递归互联网扫描器。(https://github.com/blacklanternsecurity/bbot)
5. [xtekky / gpt4free]:官方gpt4free仓库 | 强大语言模型的多种集合。(https://github.com/xtekky/gpt4free)
6. [khoj-ai / khoj]:你的AI第二大脑。可自托管。从网络或你的文档中获取答案。构建定制代理,安排自动化任务,进行深入研究。将任何在线或本地的LLM转换为你的个人、自主AI(例如gpt、claude、gemini、llama、qwen、mistral)。(https://github.com/khoj-ai/khoj)
7. [home-assistant / core]:🏡 开源智能家居,以本地控制和隐私为首要任务。(https://github.com/home-assistant/core)
8. [NexaAI / nexa-sdk]:Nexa SDK是支持ONNX和GGML模型的综合工具包。支持文本生成、图像生成、视觉语言模型(VLM)、自动语音识别(ASR)和文本转语音(TTS)功能。(https://github.com/NexaAI/nexa-sdk)
9. [searxng / searxng]:SearXNG是一个免费的互联网元搜索引擎,它从各种搜索服务和数据库中汇总结果。用户既不被跟踪也不被画像。(https://github.com/searxng/searxng)
10. [opendatalab / MinerU]:一款高质量的工具,用于将PDF转换为Markdown和JSON格式。一站式开源高质量数据提取工具,将PDF转换成Markdown和JSON格式。(https://github.com/opendatalab/MinerU)
11. [phidatahq / phidata]:构建具有记忆、知识、工具和推理能力的AI代理。通过美观的代理UI与他们聊天。(https://github.com/phidatahq/phidata)
12. [dortania / OpenCore-Legacy-Patcher]:像以前一样体验macOS。(https://github.com/dortania/OpenCore-Legacy-Patcher)
13. [yt-dlp / yt-dlp]:功能丰富的命令行音频/视频下载器。(https://github.com/yt-dlp/yt-dlp)
14. [lllyasviel / stable-diffusion-webui-forge]:(https://github.com/lllyasviel/stable-diffusion-webui-forge)
15. [mementum / backtrader]:用于交易策略回测的Python库。(https://github.com/mementum/backtrader)
16. [RVC-Project / Retrieval-based-Voice-Conversion-WebUI]:使用10分钟以下的语音数据轻松训练良好的VC模型!(https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI)
17. [spotDL / spotify-downloader]:下载你的Spotify播放列表和歌曲,附带专辑艺术和元数据(如果找到匹配项则从YouTube下载)。(https://github.com/spotDL/spotify-downloader)
18. [mikf / gallery-dl]:命令行程序,用于从多个图像托管网站下载图像画廊和集合。(https://github.com/mikf/gallery-dl)
19. [NVIDIA / garak]:LLM漏洞扫描器。(https://github.com/NVIDIA/garak)
20. [ManimCommunity / manim]:由社区维护的Python框架,用于创建数学动画。(https://github.com/ManimCommunity/manim)
最惊艳项目推荐:[AUTOMATIC1111 / stable-diffusion-webui]:稳定扩散网页界面,利用AI生成逼真的图像。
今日趋势项目关注的领域和特点:涵盖系统设计、AI生成、加密货币交易、智能家居、数据提取等多个领域,特点为工具丰富、开源免费、应用广泛。产品联系: [email protected]
2024-11-19 start the job...
try at 0 to get trends~
when scrape ('Connection aborted.', RemoteDisconnected('Remote end closed connection without response')) occurs
scape ends
ai is reading, the info is:
when ai analyze, Error code: 400, with error text {"error":{"code":"1213","message":"未正常接收到prompt参数。"}} occurs...
ai ans is:
None
Attempt 1 failed with error: write() argument must be str, not None
try at 1 to get trends~
when scrape HTTPSConnectionPool(host='github.com', port=443): Max retries exceeded with url: /trending/python (Caused by ConnectTimeoutError(<urllib3.connection.HTTPSConnection object at 0x74e40fd9a3f0>, 'Connection to github.com timed out. (connect timeout=10)')) occurs
scape ends
ai is reading, the info is:
when ai analyze, Error code: 400, with error text {"error":{"code":"1213","message":"未正常接收到prompt参数。"}} occurs...
ai ans is:
None
Attempt 2 failed with error: write() argument must be str, not None
try at 2 to get trends~
scrape() status_code: 200
https://github.com/freqtrade/freqtrade
https://github.com/xtekky/gpt4free
https://github.com/comfyanonymous/ComfyUI
https://github.com/blacklanternsecurity/bbot
https://github.com/NVIDIA/garak
https://github.com/yt-dlp/yt-dlp
https://github.com/AUTOMATIC1111/stable-diffusion-webui
https://github.com/sherlock-project/sherlock
https://github.com/phidatahq/phidata
https://github.com/NexaAI/nexa-sdk
https://github.com/ccxt/ccxt
https://github.com/fixie-ai/ultravox
https://github.com/openwrt-xiaomi/xmir-patcher
https://github.com/searxng/searxng
https://github.com/ManimCommunity/manim
https://github.com/pyro-ppl/numpyro
https://github.com/archlinux/archinstall
https://github.com/bmaltais/kohya_ss
https://github.com/donnemartin/system-design-primer
scape ends
ai is reading, the info is:
1. [freqtrade / freqtrade]:Free, open source crypto trading bot(https://github.com/freqtrade/freqtrade)
2. [xtekky / gpt4free]:The official gpt4free repository | various collection of powerful language models(https://github.com/xtekky/gpt4free)
3. [comfyanonymous / ComfyUI]:The most powerful and modular diffusion model GUI, api and backend with a graph/nodes interface.(https://github.com/comfyanonymous/ComfyUI)
4. [blacklanternsecurity / bbot]:A recursive internet scanner for hackers.(https://github.com/blacklanternsecurity/bbot)
5. [NVIDIA / garak]:the LLM vulnerability scanner(https://github.com/NVIDIA/garak)
6. [yt-dlp / yt-dlp]:A feature-rich command-line audio/video downloader(https://github.com/yt-dlp/yt-dlp)