anycoder-030b6d31 / pages /projects.js
b08x's picture
Upload pages/projects.js with huggingface_hub
1d08b3b verified
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',