add llama-swap and meridian to README

This commit is contained in:
2026-05-05 00:04:27 +02:00
parent afd5b812af
commit bad1df3268
3 changed files with 38 additions and 3 deletions
+5 -3
View File
@@ -243,9 +243,11 @@ flowchart TD
### AI infrastructure ### AI infrastructure
| Logo | Name | Address | Description | | Logo | Name | Description |
|------|------|---------|-------------| |------|------|-------------|
| <img src="docs/assets/llama-cpp.svg" alt="LLaMA.cpp" height="50" width="50"> | LLaMA.cpp | https://llama.lumpiasty.xyz/ | LLM inference server running local models with GPU acceleration | | <img src="docs/assets/llama-cpp.svg" alt="LLaMA.cpp" height="50" width="50"> | LLaMA.cpp | LLM inference server running local models with GPU acceleration |
| <img src="docs/assets/llama-swap.svg" alt="llama-swap" height="50" width="50"> | llama-swap | Model swapping for LLaMA.cpp |
| <img src="docs/assets/meridian.svg" alt="meridian" height="50" width="50"> | Meridian | Proxy that bridges Anthropic's official SDK to third-party tools |
### Applications/Services ### Applications/Services
File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 38 KiB

+16
View File
@@ -0,0 +1,16 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" fill="none">
<rect width="64" height="64" rx="14" fill="#1C1830"/>
<!-- Meridian axis -->
<line x1="32" y1="10" x2="32" y2="54" stroke="#8B7CF6" stroke-width="2.5" stroke-linecap="round"/>
<!-- Latitude arcs — outer -->
<path d="M16 20 A18 18 0 0 1 48 20" fill="none" stroke="#C4B5FD" stroke-width="1.2" opacity="0.4"/>
<path d="M16 44 A18 18 0 0 0 48 44" fill="none" stroke="#C4B5FD" stroke-width="1.2" opacity="0.4"/>
<!-- Latitude arcs — inner -->
<path d="M20 30 A14 14 0 0 1 44 30" fill="none" stroke="#C4B5FD" stroke-width="0.8" opacity="0.2"/>
<path d="M20 34 A14 14 0 0 0 44 34" fill="none" stroke="#C4B5FD" stroke-width="0.8" opacity="0.2"/>
<!-- Poles -->
<circle cx="32" cy="10" r="3.5" fill="#C4B5FD"/>
<circle cx="32" cy="54" r="3.5" fill="#C4B5FD"/>
<!-- Center node -->
<circle cx="32" cy="32" r="3" fill="#8B7CF6"/>
</svg>

After

Width:  |  Height:  |  Size: 931 B