b08x commited on
Commit
1d08b3b
·
verified ·
1 Parent(s): 7a9f41a

Upload pages/projects.js with huggingface_hub

Browse files
Files changed (1) hide show
  1. pages/projects.js +99 -0
pages/projects.js ADDED
@@ -0,0 +1,99 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import Layout from '../components/Layout';
2
+ import ProjectCard from '../components/ProjectCard';
3
+
4
+ const projects = [
5
+ {
6
+ id: 1,
7
+ name: 'AutoGPT',
8
+ author: 'Significant Gravitas',
9
+ description: 'An autonomous GPT-4 agent that can accomplish tasks on its own by breaking them down into sub-tasks and using available tools.',
10
+ tags: ['Agent', 'Autonomous', 'Python'],
11
+ stars: '163k',
12
+ forks: '34.5k',
13
+ language: 'Python',
14
+ featured: true,
15
+ repoUrl: '#',
16
+ demoUrl: '#',
17
+ },
18
+ {
19
+ id: 2,
20
+ name: 'LangChain',
21
+ author: 'LangChain AI',
22
+ description: 'Build applications using large language models through composable components and agent abstractions.',
23
+ tags: ['LLM', 'Framework', 'Python'],
24
+ stars: '93k',
25
+ forks: '24k',
26
+ language: 'Python',
27
+ featured: true,
28
+ repoUrl: '#',
29
+ demoUrl: '#',
30
+ },
31
+ {
32
+ id: 3,
33
+ name: 'llama.cpp',
34
+ author: 'ggerganov',
35
+ description: 'Port of Facebooks LLaMA model in C/C++ for efficient inference on consumer hardware.',
36
+ tags: ['LLM', 'Inference', 'C++'],
37
+ stars: '58k',
38
+ forks: '7.2k',
39
+ language: 'C++',
40
+ featured: false,
41
+ repoUrl: '#',
42
+ demoUrl: '#',
43
+ },
44
+ {
45
+ id: 4,
46
+ name: 'Qwen',
47
+ author: 'Alibaba Cloud',
48
+ description: 'Large language model and multimodal model series developed by Alibaba Cloud.',
49
+ tags: ['LLM', 'Multimodal', 'Open Source'],
50
+ stars: '12k',
51
+ forks: '1.8k',
52
+ language: 'Python',
53
+ featured: true,
54
+ repoUrl: '#',
55
+ demoUrl: '#',
56
+ },
57
+ {
58
+ id: 5,
59
+ name: 'Ollama',
60
+ author: 'Ollama',
61
+ description: 'Get started running large language models locally with a simple setup.',
62
+ tags: ['LLM', 'Local', 'Go'],
63
+ stars: '78k',
64
+ forks: '5.8k',
65
+ language: 'Go',
66
+ featured: false,
67
+ repoUrl: '#',
68
+ demoUrl: '#',
69
+ },
70
+ {
71
+ id: 6,
72
+ name: 'vLLM',
73
+ author: 'vLLM Project',
74
+ description: 'High-performance and serving engine for large language models with PagedAttention.',
75
+ tags: ['Inference', 'Serving', 'Python'],
76
+ stars: '8.5k',
77
+ forks: '1.2k',
78
+ language: 'Python',
79
+ featured: false,
80
+ repoUrl: '#',
81
+ demoUrl: '#',
82
+ },
83
+ {
84
+ id: 7,
85
+ name: 'Text Generation Webui',
86
+ author: oobabooga',
87
+ description: 'A gradio web UI for running large language models like LLaMA, llama.cpp, GPT-J, etc.',
88
+ tags: ['UI', 'LLM', 'Gradio'],
89
+ stars: '28k',
90
+ forks: '4.1k',
91
+ language: 'Python',
92
+ featured: false,
93
+ repoUrl: '#',
94
+ demoUrl: '#',
95
+ },
96
+ {
97
+ id: 8,
98
+ name: 'RAGFlow',
99
+ author: 'infiniflow',