Spaces:
Build error
Build error
File size: 2,543 Bytes
1d08b3b | 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 | import Layout from '../components/Layout';
import ProjectCard from '../components/ProjectCard';
const projects = [
{
id: 1,
name: 'AutoGPT',
author: 'Significant Gravitas',
description: 'An autonomous GPT-4 agent that can accomplish tasks on its own by breaking them down into sub-tasks and using available tools.',
tags: ['Agent', 'Autonomous', 'Python'],
stars: '163k',
forks: '34.5k',
language: 'Python',
featured: true,
repoUrl: '#',
demoUrl: '#',
},
{
id: 2,
name: 'LangChain',
author: 'LangChain AI',
description: 'Build applications using large language models through composable components and agent abstractions.',
tags: ['LLM', 'Framework', 'Python'],
stars: '93k',
forks: '24k',
language: 'Python',
featured: true,
repoUrl: '#',
demoUrl: '#',
},
{
id: 3,
name: 'llama.cpp',
author: 'ggerganov',
description: 'Port of Facebooks LLaMA model in C/C++ for efficient inference on consumer hardware.',
tags: ['LLM', 'Inference', 'C++'],
stars: '58k',
forks: '7.2k',
language: 'C++',
featured: false,
repoUrl: '#',
demoUrl: '#',
},
{
id: 4,
name: 'Qwen',
author: 'Alibaba Cloud',
description: 'Large language model and multimodal model series developed by Alibaba Cloud.',
tags: ['LLM', 'Multimodal', 'Open Source'],
stars: '12k',
forks: '1.8k',
language: 'Python',
featured: true,
repoUrl: '#',
demoUrl: '#',
},
{
id: 5,
name: 'Ollama',
author: 'Ollama',
description: 'Get started running large language models locally with a simple setup.',
tags: ['LLM', 'Local', 'Go'],
stars: '78k',
forks: '5.8k',
language: 'Go',
featured: false,
repoUrl: '#',
demoUrl: '#',
},
{
id: 6,
name: 'vLLM',
author: 'vLLM Project',
description: 'High-performance and serving engine for large language models with PagedAttention.',
tags: ['Inference', 'Serving', 'Python'],
stars: '8.5k',
forks: '1.2k',
language: 'Python',
featured: false,
repoUrl: '#',
demoUrl: '#',
},
{
id: 7,
name: 'Text Generation Webui',
author: oobabooga',
description: 'A gradio web UI for running large language models like LLaMA, llama.cpp, GPT-J, etc.',
tags: ['UI', 'LLM', 'Gradio'],
stars: '28k',
forks: '4.1k',
language: 'Python',
featured: false,
repoUrl: '#',
demoUrl: '#',
},
{
id: 8,
name: 'RAGFlow',
author: 'infiniflow', |