LLM Engineering & Open Source Resource Index

Welcome to my developer blog. This site serves as a quick reference collection of tools, libraries, serving frameworks, and notes for working with open-weights foundation models.

Note: Interactive compute environments and notebooks are accessible via the Workspace link in the sidebar.

Models & Foundation Hubs

A quick breakdown of open-weight foundation models and local execution runtimes:

Orchestration & RAG Frameworks

Libraries used to assemble multi-step reasoning agents, vector database retrieval, and structured generation:

Serving Engines & Inference

High-performance backend runtimes designed for production throughput and memory-efficient batching:

Quick Reference Cheat Sheet

Common shell commands for local model testing and inference server startup:

Framework Command Description
Ollama ollama run llama3.1:8b Launch interactive terminal session
vLLM vllm serve meta-llama/Meta-Llama-3.1-8B-Instruct Start OpenAI-compatible API endpoint
HuggingFace huggingface-cli download meta-llama/Meta-Llama-3.1-8B Download weights to local cache
# Quick Python example with vLLM OpenAI-compatible endpoint
import openai

client = openai.OpenAI(base_url="http://localhost:8000/v1", api_key="token")
response = client.chat.completions.create(
    model="meta-llama/Meta-Llama-3.1-8B-Instruct",
    messages=[{"role": "user", "content": "Explain PagedAttention in two sentences."}]
)
print(response.choices[0].message.content)