needhelp
← Back to blog

Ecossistema de código aberto de IA e cenário de ferramentas para desenvolvedores 2026

by needhelp
Código aberto de IA
lhama.cpp
NVIDIA Sana
Agente de IA
Hunyuan3D

Data: 19/05/2026 | Fonte: AI Daily News | Tempo de leitura: ~20 min

Open Source AI Banner


1. Visão geral do ecossistema de código aberto: uma única faísca pode iniciar um incêndio na pradaria

1.1 AI Open Source GitHub Stars Ranking 2026

xychart-beta
    title "AI Open Source GitHub Stars Ranking (10K)"
    x-axis ["llama.cpp", "12-Factor Agents", "TTS", "Sana", "Hunyuan3D"]
    y-axis "Stars (10K)" 0 --> 15
    bar "Stars" [11.1, 2.05, 0.83, 0.65, 0.18]

1.2 Mapa de Relacionamento do Ecossistema

graph TB
    subgraph Infrastructure Layer
        L["llama.cpp
111K⭐
Local Inference Engine"] end subgraph Model Layer S["NVIDIA Sana
6.5K⭐
Image Generation Model"] TTS["On-Device TTS
8.3K⭐
TTS Engine"] H3D["Tencent Hunyuan3D
1.8K⭐
3D Generation"] end subgraph Application Framework Layer A12["12-Factor Agents
20.5K⭐
Agent Development Guidelines"] end subgraph Upper Applications APP1["Local AI Assistant"] APP2["Creative Tools"] APP3["Game Development"] APP4["Education Apps"] APP5["Smart Hardware"] end L --> S L --> TTS L --> H3D S --> APP2 TTS --> APP4 TTS --> APP5 H3D --> APP3 A12 --> APP1 A12 --> APP2 A12 --> APP3 A12 --> APP4 A12 --> APP5

1.3 Distribuição de licença de código aberto

pie title AI Open Source License Distribution
    "MIT" : 35
    "Apache 2.0" : 28
    "GPL" : 15
    "BSD" : 12
    "Custom Commercial-Friendly" : 7
    "Other" : 3
---
## 2. llama.cpp: Minimalism in Local Inference
### 2.1 Project Overview
llama.cpp is a **pure C/C++** large language model inference engine developed by Georgi Gerganov. It makes running large models on ordinary computers possible and is the absolute主力 for edge deployment.
**Core Data**:
- **GitHub Stars**: 111,000+
- **Language**: C/C++ (pure native implementation)
- **Supported Models**: LLaMA, Mistral, Qwen, Yi, Baichuan, 100+
- **Hardware Support**: CPU (x86/ARM), GPU (CUDA/Vulkan/Metal), NPU
### 2.2 System Architecture
```sereia
gráfico LR
Camada de modelo de subgráfico
M1["Série LLaMA"]
M2["Série Mistral"]
M3["Série Qwen"]
M4["Yi/Baichuan"]
M5["GGUF personalizado"]
fim
subgrafo lhama.cpp Núcleo
M1 --> C["Carregador de formato GGUF"]
M2 --> C
M3 --> C
M4 --> C
M5 --> C
C --> Q["Mecanismo de Quantização<br/>Q4/Q5/Q6/Q8"]
Q --> B["Camada de abstração de back-end"]
B --> BE1["Back-end da CPU<br/>AVX/NEON"]
B -> BE2["Back-end CUDA<br/>GPU NVIDIA"]
B --> BE3["Back-end de metal<br/>Apple Silicon"]
B --> BE4["Vulkan Backend<br/>GPU multiplataforma"]
fim
BE1 --> O["Saída de Texto"]
BE2 --> O
BE3 --> O
BE4 --> O

2.3 Quantization Technology Deep Dive

llama.cpp’s core innovation lies in model quantization, significantly reducing memory usage:

[\text{Compression Ratio} = \frac{\text{Original Parameters} \times 16 \text{ bit}}{\text{Quantized Parameters} \times q \text{ bit}}]

Quantization Level Bits per Parameter 7B Model Size Quality Loss Recommended Use
FP16 16 bit 13.5 GB 0% Training / High-precision inference
Q8_0 8 bit 6.8 GB < 1% High-quality local deployment
Q6_K 6 bit 5.2 GB ~2% Balance quality and speed
Q5_K_M 5 bit 4.3 GB ~3% Recommended daily use
Q4_K_M 4 bit 3.5 GB ~5% Resource-constrained devices
Q3_K_S 3 bit 2.7 GB ~10% Extreme compression
Q2_K 2 bit 1.8 GB ~20% Experimental only

2.4 Performance Benchmarks

[\text{Inference Speed} = \frac{\text{Token Count}}{\text{Time (s)}}]

xychart-beta
título "Velocidade de inferência de back-end llama.cpp (tokens/s)<br/>Modelo: Qwen2.5-7B-Q4_K_M"
eixo x ["Mac Mini M4", "i9-14900K", "RTX 4090", "Laptop RTX 3060", "Raspberry Pi 5"]
eixo y "tokens/s" 0 --> 150
barra "Velocidade de inferência" [45, 25, 120, 35, 5]

2.5 Code Example

Terminal window
# Instalar
clone do git https://github.com/ggerganov/llama.cpp
cd llama.cpp && cmake -B build && cmake --build build --config Liberação
# Baixe e converta o modelo
python convert_hf_to_gguf.py --src model_dir --dst model.gguf
#Executa inferência
./build/bin/llama-cli -m model.gguf -p "O futuro da IA é" -n 100
#Iniciar servidor API
./build/bin/llama-server -m model.gguf --host 0.0.0.0 --port 8080

Local AI

Project: github.com/ggerganov/llama.cpp Docs: llama-cpp-python.readthedocs.io

---
## 3. Síntese de fala no dispositivo: fazendo os dispositivos falarem
### 3.1 Visão geral do projeto
Este projeto de código aberto com **8.300+ estrelas** implementa **conversão de texto em fala (TTS) ultrarrápida no dispositivo**, rodando nativamente em dispositivos locais, resolvendo os problemas de alta latência e falta de privacidade no TTS tradicional na nuvem.
### 3.2 Arquitetura Técnica
```mermaid
graph LR
subgraph Input
T["Text"]
S["Speaker Reference"]
E["Emotion Control"]
end
subgraph TTS Pipeline
T --> TK["Text Frontend<br/>Grapheme→Phoneme"]
TK --> D["Duration Predictor<br/>$d_i = f_{dur}(p_i)$"]
D --> A["Acoustic Model<br/>$\mathbf{x} = f_{ac}(p, d)$"]
S --> V["Voice Encoder<br/>$\mathbf{v} = f_{vc}(s)$"]
E --> A
V --> VCV["Vocoder<br/>$\mathbf{o} = f_{vc}(\mathbf{x}, \mathbf{v})$"]
A --> VCV
end
VCV --> O["Audio Waveform"]

3.3 Princípios Matemáticos

Função de perda de vocoder (espectrograma mel para forma de onda):

[\mathcal{L}{\text{total}} = \mathcal{L}{\text{mel}} + \lambda_{\text{adv}} \mathcal{L}{\text{adv}} + \lambda{\text{fm}} \mathcal{L}_{\text{fm}}]

Onde:

[\mathcal{L}{\text{mel}} = | \phi{\text{mel}}(x) - \phi_{\text{mel}}(\hat{x}) |_1]

3.4 Comparação de desempenho

Solução Latência do primeiro pacote Fator em tempo real (RTF) Qualidade (MOS) Disponível off-line
Nuvem TTS (Comercial) 200-500ms < 0.1 4.5 %%EM29%%
Coqui TTS 2-5s 0.3 3.8 %%EM30%%
Piper 500ms 0.1 3.5 %%EM31%%
This Project < 50ms 0.05 4.2 %%EM32%%
StyleTTS 2 1s 0.2 4.3 %%EM33%%

3.5 Quick Start

%%CB9%%

%%CB10%%mermaid graph TD subgraph Sana Architecture I[“Text Prompt + Noise Map
(x_T \sim \mathcal{N}(0, I))”]

I --> TE["Codificador de Texto<br/>Gemma/DeBERTa"]
I --> DE["Codificador de Compressão Profunda<br/>\(32\vezes\) Compressão"]
TE --> DIT["Atenção Linear DiT<br/>Transformador de Atenção Linear"]
DE --> DIT
DIT --> DIT1["Camada 1-8<br/>Recursos grosseiros"]
DIT1 --> DIT2["Camada 9-16<br/>Recursos finos"]
DIT2 --> DIT3["Camada 17-24<br/>Super Resolução"]
DIT3 --> D["Decodificador<br/>\(32\vezes\) Upsampling"]
D --> O["Imagem de alta resolução<br/>\(4096 \times 4096\)"]
fim
### 4.3 Core Formulas
**Linear Attention Mechanism**:
\[\text{Attention}(Q, K, V) = \frac{\phi(Q) \cdot (\phi(K)^T \cdot V)}{\phi(Q) \cdot \sum \phi(K)}\]
Where \(\phi(x) = \text{elu}(x) + 1\), reducing complexity from \(O(n^2)\) (standard attention) to \(O(n)\).
**Deep Compression Autoencoder (DC-AE)**:
\[z = \text{DC-AE}_{\text{enc}}(x), \quad z \in \mathbb{R}^{\frac{H}{32} \times \frac{W}{32} \times C}\]
Compared to traditional VAE's \(8\times\) compression, DC-AE achieves **\(32\times\)** compression, significantly reducing DiT computation.
### 4.4 Performance
\[\text{Speedup} = \frac{T_{\text{SDXL}}}{T_{\text{Sana}}} \approx 10\times\]
| Metric | Sana-0.6B | Sana-1.6B | SDXL | Flux-dev |
|------|-----------|-----------|------|----------|
| Parameters | 0.6B | 1.6B | 3.5B | 12B |
| Resolution | 4K | 4K | 1K | 1K |
| RTX 4090 | **0.3s** | **0.9s** | 5s | 15s |
| RTX 3060 | **1.2s** | **3.5s** | 12s | 40s |
| Mac M3 Max | **0.8s** | **2.5s** | 8s | Not supported |
| Laptop Integrated GPU | **5s** | **15s** | Not supported | Not supported |
| FID Score | 6.8 | **5.2** | 6.1 | 5.2 |
### 4.5 Deployment Guide
```bash
# Instalar
pip instalar sana-sprint
# Gerar imagem (CLI)
sana-gerar \
--modelo sana-1.6B \
--prompt "Uma paisagem urbana futurista ao pôr do sol, estilo cyberpunk" \
--resolução 4096x4096 \
--passos 20 \
--resultado de saída.png
#API Python
de sana importar SanaPipeline
importar tocha
pipe = SanaPipeline.from_pretrained(
"nvidia/Sana-1.6B-4K",
tocha_dtype = tocha.float16
).to("cuda")
imagem = tubo(
prompt="Um jardim japonês sereno com flores de cerejeira",
altura=4096,
largura=4096,
num_inference_steps=20
).imagens[0]

NVIDIA AI

GitHub: github.com/NVlabs/Sana Hugging Face: huggingface.co/nvidia

---
## 5. Agentes de 12 Fatores: Diretrizes de Desenvolvimento de Nível de Produção
### 5.1 Visão Geral do Projeto
Este projeto ganhou **20.500+ estrelas**, com o objetivo de resolver os problemas da implantação de aplicativos de modelo de linguagem grande, fornecendo diretrizes de nível de produção para a construção de sistemas de agente de IA estáveis, seguros e de fácil manutenção.
### 5.2 Os 12 fatores explicados
```mermaid
graph TB
subgraph 12-Factor Agents
direction TB
F1["① Define Scope"] --> F2["② Version Control"]
F2 --> F3["③ Config Management"]
F3 --> F4["④ Dependency Decl"]
F4 --> F5["⑤ Tool Abstraction"]
F5 --> F6["⑥ Memory Management"]
F6 --> F7["⑦ Observability"]
F7 --> F8["⑧ Sandboxing"]
F8 --> F9["⑨ Fault Tolerance"]
F9 --> F10["⑩ Human-in-loop"]
F10 --> F11["⑪ Audit Trail"]
F11 --> F12["⑫ Accountability"]
end

Aprofundamento do Fator 5.3

Fator 1: Definir Escopo — Defina o limite de capacidade do Agente

[\text{Espaço de capacidade do agente} = {t | P(\text{sucesso}|t, \theta) > \tau}]

Onde (\tau) é o limite de confiança (normalmente 0,85).

Fator 6: Gerenciamento de Memória – Memória de Curto e Longo Prazo[\mathbf{m}t = f{\text{mem}}(\mathbf{m}_{t-1}, \mathbf{o}_t, \mathbf{a}_t)]

Tipo de memória Armazenamento Recuperação Decadência
Memória de Trabalho Contexto atual Completo Eliminado no final do turno
Memória de curto prazo Armazenamento de vetores em nível de sessão Pesquisa de similaridade Decaimento de 24 horas
Memória de longo prazo Gráfico de conhecimento Percurso gráfico Persistente
Memória Episódica Experimente o buffer de repetição Correspondência de padrões Por importância

Fator 12: Responsabilidade — Aplicar modelo para assumir a responsabilidade final

graph TD
    T["Task Input"] --> D["Decision Node"]
    D --> C{"Confidence Assessment"}
    C -->|"$P > 0.9$"| E["Autonomous Execution"]
    C -->|"$0.7 < P \leq 0.9$"| H["Human Confirmation"]
    C -->|"$P \leq 0.7$"| R["Reject Execution
Explain Reason"] E --> A["Execution Result"] H --> A A --> L["Audit Log"] R --> L

5.4 Exemplo de arquitetura de agente de nível de produção

# 12-Factor practical example
from agent12f import Agent, Tool, Memory, Sandbox
class ResearchAgent(Agent):
"""Research assistant Agent following the 12 factors"""
# ① Define Scope
scope = ["Literature Search", "Summary Generation", "Citation Management"]
# ③ Config Management
config = {
"model": "gpt-4",
"max_iterations": 10,
"confidence_threshold": 0.85
}
# ⑤ Tool Abstraction
tools = [
Tool("search", web_search),
Tool("read", document_parser),
Tool("cite", citation_formatter)
]
# ⑥ Memory Management
memory = Memory(
short_term=VectorStore(),
long_term=KnowledgeGraph(),
working=ContextWindow(max_tokens=8000)
)
# ⑧ Sandboxing
sandbox = Sandbox(
network="restricted",
filesystem="read-only",
timeout=30
)
async def execute(self, task: str) -> Result:
# ⑩ Human-in-loop
if not await self.confirm_task(task):
return Result.rejected("User cancelled")
# ⑨ Fault Tolerance
for attempt in range(3):
try:
result = await self._run(task)
# ⑪ Audit Trail
self.audit.log(task, result)
return result
except Exception as e:
self.memory.store_error(e)
continue
# ⑫ Accountability
return Result.failed("Agent takes responsibility: Task execution failed")
---
## 6. Tencent Hunyuan 3D: Single Image to 3D Space
### 6.1 Project Overview
Tencent has launched a new **Hunyuan 3D engine** that generates 3D spaces from a single input image. The project has earned **1,800+ Stars**, breaking through the **visual limitations** of traditional video.
### 6.2 Technical Principles
```sereia
gráfico LR
Entrada de subgrafo
IMG["Imagem única<br/>\(I \in \mathbb{R}^{H \times W \times 3}\)"]
fim
subgrafo Hunyuan 3D Pipeline
IMG --> E["Codificador de imagem<br/>ViT-L"]
E --> P1["Estimativa de profundidade<br/>\(D = f_d(I)\)"]
E --> P2["Estimativa normal<br/>\(N = f_n(I)\)"]
E --> P3["Segmentação Semântica<br/>\(S = f_s(I)\)"]
P1 --> F3D["Fusão de recursos 3D"]
P2 --> F3D
P3 --> F3D
F3D -> G["Respingos Gaussianos 3D"]
G --> M["Extração de Malha<br/>Cubos de Marcha"]
M --> T["Mapeamento de Textura"]
T --> R["Material PBR<br/>Renderização com base física"]
fim
R --> OUT["Cena 3D interativa<br/>.glb / .usdz / .obj"]

6.3 3D Gaussian Splatting Math

The scene is represented by a set of 3D Gaussians:

[G(\mathbf{x}) = e^{-\frac{1}{2}(\mathbf{x} - \boldsymbol{\mu})^T \boldsymbol{\Sigma}^{-1} (\mathbf{x} - \boldsymbol{\mu})}]

Where each Gaussian is defined by:

  • (\boldsymbol{\mu} \in \mathbb{R}^3): Center position
  • (\boldsymbol{\Sigma} \in \mathbb{R}^{3 \times 3}): Covariance matrix (controls shape)
  • (\mathbf{c} \in \mathbb{R}^3): Color (spherical harmonic coefficients)
  • (\alpha \in \mathbb{R}): Opacity

Rendering Equation:

[C(\mathbf{p}) = \sum_{i=1}^{N} \mathbf{c}i \alpha_i G_i(\mathbf{p}) \prod{j=1}^{i-1} (1 - \alpha_j G_j(\mathbf{p}))]

6.4 Quality Evaluation

Metric Hunyuan 3D DreamGaussian LGM InstantMesh
PSNR ↑ 28.5 25.3 26.8 27.1
SSIM ↑ 0.92 0.87 0.89 0.90
LPIPS ↓ 0.08 0.14 0.11 0.10
Generation Time 3s 15s 10s 8s
Multi-view Consistency Excellent Good Good Good

6.5 Quick Start

Terminal window
# Clonar repositório
clone do git https://github.com/Tencent/Hunyuan3D.git
CD Hunyuan3D
#Instala dependências
pip instalar -r requisitos.txt
# Imagem única para 3D
python gerar.py \
--imagem entrada.jpg \
--saída saída.glb \
--textura_resolução 2048\
--mesh_format glb
#API Python
de hunyuan3d importar Hunyuan3DPipeline
pipeline = Hunyuan3DPipeline.from_pretrained("tencent/Hunyuan3D-v1")
malha = pipeline(
imagem="foto.jpg",
num_views=6,
textura_qualidade = "alta"
)
mesh.save("cena.glb")

3D Generation

GitHub: github.com/Tencent/Hunyuan3D Online Demo: 3d.hunyuan.tencent.com

---
## 7. Conjunto de ferramentas para desenvolvedores e práticas recomendadas
### 7.1 Cadeia de ferramentas de desenvolvimento completa
```mermaid
graph LR
subgraph Development Environment
A["VS Code + AI Plugins"]
B["Cursor / Windsurf"]
C["Jupyter Notebook"]
end
subgraph Model Layer
D["llama.cpp<br/>Local Inference"]
E["Ollama<br/>Model Management"]
F["vLLM<br/>High-Throughput Serving"]
end
subgraph Application Layer
G["LangChain<br/>Application Framework"]
H["LlamaIndex<br/>RAG Framework"]
I["CrewAI<br/>Multi-Agent Collaboration"]
end
subgraph Deployment Layer
J["Docker<br/>Containerization"]
K["Kubernetes<br/>Orchestration"]
L["Edge Deployment"]
end
A --> D
B --> E
C --> F
D --> G
E --> H
F --> I
G --> J
H --> K
I --> L

7.2 Matriz de decisão de seleção de tecnologia

[\text{Pontuação de seleção} = \sum_{i} w_i \cdot s_i, \quad \sum w_i = 1]

Cenário Solução recomendada Back-end de inferência Formato do modelo Implantação
Desenvolvimento/Experiência Pessoal lhama.cpp + lhama CPU/GPU GUF Locais
API de equipe pequena/média vLLM + FastAPI GPU AbraçandoFace Docker
Alta simultaneidade empresarial TensorRT-LLM + Tritão GPU NVIDIA ONNX/TensorRT K8
Móvel lhama.cpp (Celular) NPU/GPU Quantização do quarto trimestre Incorporado
Sensível à privacidade Lhama.cpp totalmente local CPU Q8 Quantização Off-line

7.3 Fórmulas de otimização de desempenho

[\text{Taxa de transferência (tokens/s)} = \frac{\text{Tamanho do lote} \times \text{Comprimento da sequência}}{\text{Latência (s)}}]

Estratégias de otimização:

  1. Quantização: FP16 → Q4 reduz o uso de VRAM em 75%
  2. Lote: Lote=8 normalmente atinge 3-4x rendimento em Lote=1
  3. KV Cache: Reduz a computação redundante em 30-50%
  4. Decodificação especulativa: pode acelerar em 1,5-2,5x
# Performance optimization example
from llama_cpp import Llama
# Optimized config
llm = Llama(
model_path="model-Q4_K_M.gguf",
n_ctx=8192, # Context length
n_batch=512, # Batch size
n_threads=8, # CPU threads
n_gpu_layers=-1, # Offload all to GPU
use_mlock=True, # Lock memory
verbose=False
)
# Use speculative decoding
output = llm(
"Explain quantum computing",
max_tokens=512,
temperature=0.7,
# Speculative decoding parameters
draft_model="tiny-model.gguf",
num_assistant_tokens=10
)
---
## 8. Community Activity & Contribution Guide
### 8.1 Project Contribution Trends
```sereia
xychart-beta
título "Crescimento mensal de contribuidores de código aberto de IA"
eixo x ["janeiro", "fevereiro", "março", "abril", "maio"]
eixo y "Contribuintes Ativos" 0 -> 500
linha "lhama.cpp" [280, 310, 350, 420, 450]
linha "Agentes de 12 Fatores" [50, 80, 120, 180, 220]
linha "Sana" [20, 40, 90, 150, 200]
linha "Hunyuan3D" [10, 25, 60, 100, 140]

8.2 Contribution Guide

gráfico LR
A["Repositório Fork"] --> B["Criar Branch<br/>recurso/seu-recurso"]
B --> C["Escrever código"]
C --> D["Adicionar testes"]
D --> E["Executar testes<br/>fazer teste"]
E --> F{"Aprovação nos testes?"}
F -->|"Não"| C
F -->|"Sim"| G["Enviar PR"]
G --> H["Revisão de Código"]
H --> I{"Revisar aprovação?"}
Eu -->|"Não"| C
Eu -->|"Sim"| J["Mesclar para filial principal"]

8.3 Community Resources

Resource Type Link Description
Discord Community discord.gg/llamacpp llama.cpp official discussion
Tech Blog huggingface.co/blog Latest tech articles
Video Tutorials YouTube AI Channel Beginner to advanced
Chinese Community Zhihu AI Column Chinese discussion forum
Paper Tracking arXiv cs.AI Latest research

8.4 Open Source License Quick Reference

gráfico TD
Q["Seu caso de uso?"] --> C1["Uso comercial?"]
C1 -->|"Sim"| C2["Distribuição de código fechado?"]
C1 -->|"Não"| C3["Pessoal/Pesquisa"]
C2 -->|"Sim"| L1["Apache 2.0<br/>MIT<br/>BSD"]
C2 -->|"Não"| L2["GPL<br/>AGPL"]
C3 --> L3["Qualquer licença"]L1 --> R1["✅ Recomendado"]
L2 --> R2["⚠️ Observe o Copyleft"]
L3 --> R3["✅ Gratuito para usar"]

8.5 Future Roadmap

Gantt
title Roteiro de projetos de código aberto de IA para 2026
formato de data 2026-06
seção lhama.cpp
Versão estável v1.0: llama1, 2026-06, 2M
Suporte multimodal: llama2, 2026-08, 3M
Otimização de quantização: llama3, 2026-10, 2M
seção Sana
Geração de vídeo v2.0: sana1, 2026-07, 3M
Suporte ControlNet:sana2, 2026-09, 2M
seção Hunyuan 3D
v2.0 baseado em vídeo: h3d1, 2026-08, 3M
Suporte para animação/esqueleto: h3d2, 2026-11, 2M
seção 12-Agentes de Fatores
Implementação da Estrutura v2.0:ag1, 2026-06, 2M
SDK multilíngue: ag2, 2026-09, 3M
---
## Resumo
O ecossistema de código aberto de IA de 2026 apresenta **quatro tendências principais**:
1. **Edge Computing**: Projetos como llama.cpp, elastic DiT e TTS no dispositivo estão trazendo IA verdadeiramente local
2. **Prontidão de Produção**: Projetos como Agentes de 12 Fatores marcam a transição dos Agentes de IA de brinquedos para ambientes de produção
3. **Multimodalidade**: De texto a imagens, 3D e áudio — o ecossistema de código aberto cobre tudo
4. **Ascensão da China**: Tencent Hunyuan 3D, Alibaba Qwen e outros projetos chineses de código aberto estão crescendo rapidamente em influência
\[\text{Futuro da IA de código aberto} = \text{Colaboração aberta} \times \text{Inovação técnica} \times \text{Vitalidade da comunidade}\]
---
## Referências
### Repositórios
- [llama.cpp GitHub](https://github.com/ggerganov/llama.cpp) ⭐ 111K
- [GitHub de agentes de 12 fatores](https://github.com/humanlayer/12-factor-agents) ⭐ 20,5K
- [GitHub TTS no dispositivo](https://github.com/edwko/Pinc) ⭐ 8,3K
- [NVIDIA Sana GitHub](https://github.com/NVlabs/Sana) ⭐ 6,5K
- [Tencent Hunyuan 3D GitHub](https://github.com/Tencent/Hunyuan3D) ⭐ 1,8K
### Tutoriais em vídeo
- [llama.cpp do iniciante ao profissional](https://www.youtube.com/results?search_query=llama.cpp+tutorial)
- [Geração de imagem Sana na prática](https://www.youtube.com/results?search_query=nvidia+sana+tutorial)
- [Início rápido do Hunyuan 3D](https://www.youtube.com/results?search_query=tencent+hunyuan3d+tutorial)
- [Desenvolvimento de nível de produção de agente de IA](https://www.youtube.com/results?search_query=12+factor+agents+tutorial)
### Comunidade e Documentos
- [Hub de modelo de rosto abraçado](https://huggingface.co/models)
- [Site Oficial da Ollama](https://ollama.com/)
- [Documentação LangChain](https://python.langchain.com/)
- [Documentação vLLM](https://docs.vllm.ai/)
---
*Este documento foi compilado pelo AI Daily News em 19/05/2026, dedicado ao próspero desenvolvimento do ecossistema de código aberto de IA.*

Share this page