LLM Integration
Patterns for integrating LLMs into production applications: tool use, streaming, local inference, and fine-tuning. Each category has individual rule files in rules/ loaded on-demand.
Quick Reference
| Category |
Rules |
Impact |
When to Use |
| Function Calling |
3 |
CRITICAL |
Tool definitions, parallel execution, input validation |
| Streaming |
3 |
HIGH |
SSE endpoints, structured streaming, backpressure handling |
| Local Inference |
3 |
HIGH |
Ollama setup, model selection, GPU optimization |
| Fine-Tuning |
3 |
HIGH |
LoRA/QLoRA training, dataset preparation, evaluation |
| Context Optimization |
2 |
HIGH |
Window management, compression, caching, budget scaling |
| Evaluation |
2 |
HIGH |
LLM-as-judge, RAGAS metrics, quality gates, benchmarks |
| Prompt Engineering |
4 |
HIGH |
CoT, few-shot, versioning, DSPy optimization, ReAct, cost optimization |
Total: 20 rules across 7 categories
Quick Start
# Function calling: strict mode tool definition
tools = [{
"type": "function",
"function": {
"name": "search_documents",
"description": "Search knowledge base",
"strict": True,
"parameters": {
"type": "object",
"properties": {
"query": {"type": "string", "description": "Search query"},
"limit": {"type": "integer", "description": "Max results"}
},
"required": ["query", "limit"],
"additionalProperties": False
}
}
}]
# Streaming: SSE endpoint with FastAPI
@app.get("/chat/stream")
async def stream_chat(prompt: str):
async def generate():
async for token in async_stream(prompt):
yield {"event": "token", "data": token}
yield {"event": "done", "data": ""}
return EventSourceResponse(generate())
# Local inference: Ollama with LangChain
llm = ChatOllama(
model="deepseek-r1:70b",
base_url="http://localhost:11434",
temperature=0.0,
num_ctx=32768,
)
# Fine-tuning: QLoRA with Unsloth
model, tokenizer = FastLanguageModel.from_pretrained(
model_name="unsloth/Meta-Llama-3.1-8B",
max_seq_length=2048, load_in_4bit=True,
)
model = FastLanguageModel.get_peft_model(model, r=16, lora_alpha=32)
Function Calling
Enable LLMs to use external tools and return structured data. Use strict mode schemas (2026 best practice) for reliability. Limit to 5-15 tools per request, validate all inputs with Pydantic/Zod, and return errors as tool results.
calling-tool-definition.md -- Strict mode schemas, OpenAI/Anthropic formats, LangChain binding
calling-parallel.md -- Parallel tool execution, asyncio.gather, strict mode constraints
calling-validation.md -- Input validation, error handling, tool execution loops
Streaming
Deliver LLM responses in real-time for better UX. Use SSE for web, WebSocket for bidirectional. Handle backpressure with bounded queues.
streaming-sse.md -- FastAPI SSE endpoints, frontend consumers, async iterators
streaming-structured.md -- Streaming with tool calls, partial JSON parsing, chunk accumulation
streaming-backpressure.md -- Backpressure handling, bounded buffers, cancellation
Local Inference
Run LLMs locally with Ollama for cost savings (93% vs cloud), privacy, and offline development. Pre-warm models, use provider factory for cloud/local switching.
local-ollama-setup.md -- Installation, model pulling, environment configuration
local-model-selection.md -- Model comparison by task, hardware profiles, quantization
local-gpu-optimization.md -- Apple Silicon tuning, keep-alive, CI integration
Fine-Tuning
Customize LLMs with parameter-efficient techniques. Fine-tune ONLY after exhausting prompt engineering and RAG. Requires 1000+ quality examples.
tuning-lora.md -- LoRA/QLoRA configuration, Unsloth training, adapter merging
tuning-dataset-prep.md -- Synthetic data generation, quality validation, deduplication
tuning-evaluation.md -- DPO alignment, evaluation metrics, anti-patterns
Context Optimization
Manage context windows, compression, and attention-aware positioning. Optimize for tokens-per-task.
context-window-management.md -- Five-layer architecture, anchored summarization, compression triggers
context-caching.md -- Just-in-time loading, budget scaling, probe evaluation, CC 2.1.32+
Evaluation
Evaluate LLM outputs with multi-dimension scoring, quality gates, and benchmarks.
evaluation-metrics.md -- LLM-as-judge, RAGAS metrics, hallucination detection
evaluation-benchmarks.md -- Quality gates, batch evaluation, pairwise comparison
Prompt Engineering
Design, version, and optimize prompts for production LLM applications.
prompt-design.md -- Chain-of-Thought, few-shot learning, pattern selection guide
prompt-testing.md -- Langfuse versioning, DSPy optimization, A/B testing, self-consistency
prompt-react-pattern.md -- ReAct loop for tool-using agents, thought-action-observation format
prompt-optimization.md -- Token reduction, cost optimization, model tiering, prompt spec format
Upstream coverage (do not restate)
These topics are covered by their vendors' own documentation. This skill points
at them instead of teaching them; the rules above keep only our floors, ceilings
and scars. Our delta on all of it is in references/ork-delta.md.
| Topic |
First-party source |
| Strict-mode tool schemas, structured outputs |
https://platform.openai.com/docs/guides/function-calling |
Anthropic input_schema / tool_use |
https://docs.claude.com/en/docs/agents-and-tools/tool-use/overview |
| SSE client mechanics, reconnection, cancellation |
https://developer.mozilla.org/en-US/docs/Web/API/EventSource |
| LoRA / QLoRA config, target modules, adapter merging |
https://huggingface.co/docs/peft/developer_guides/lora |
| Unsloth training loop, 4-bit loading |
https://docs.unsloth.ai/get-started/fine-tuning-llms-guide |
| DPO, preference pairs, beta tuning, RLHF comparison |
https://huggingface.co/docs/trl/dpo_trainer |
| SFT dataset formats (Alpaca, ChatML) |
https://huggingface.co/docs/trl/sft_trainer |
| Embedding similarity for dataset dedup |
https://sbert.net/ |
| Fine-tune vs prompt vs RAG decision framework |
https://platform.openai.com/docs/guides/optimizing-llm-accuracy |
| Vendor token pricing (never hardcode it here) |
https://platform.openai.com/docs/pricing |
Supporting Files
references/ork-delta.md -- our delta: scars, house ceilings, retired-file provenance
references/model-selection.md -- local model comparison by task and hardware
scripts/create-lora-config.md -- LoRA config scaffold with auto-detected model type
Key Decisions
| Decision |
Recommendation |
| Tool schema mode |
strict: true (2026 best practice) |
| Tool count |
5-15 max per request |
| Streaming protocol |
SSE for web, WebSocket for bidirectional |
| Buffer size |
50-200 tokens |
| Local model (reasoning) |
deepseek-r1:70b |
| Local model (coding) |
qwen2.5-coder:32b |
| Fine-tuning approach |
LoRA/QLoRA (try prompting first) |
| LoRA rank |
16-64 typical |
| Training epochs |
1-3 (more risks overfitting) |
| Context compression |
Anchored iterative (60-80%) |
| Compress trigger |
70% utilization, target 50% |
| Judge model |
claude-haiku-4-5-20251001 (cost tier), gpt-5.5, or gemini-3.8-flash (Google's GA general-purpose model, priced under Haiku through 2026-12-31 and a third vendor for the different-model rule; price lives in models.vocab.json, not here) |
| Quality threshold |
0.7 production, 0.6 drafts |
| Few-shot examples |
3-5 diverse, representative |
| Prompt versioning |
Langfuse with labels |
| Auto-optimization |
DSPy MIPROv2 |
Related Skills
ork:rag-retrieval -- Embedding patterns, when RAG is better than fine-tuning
agent-loops -- Multi-step tool use with reasoning
llm-evaluation -- Evaluate fine-tuned and local models
langfuse-observability -- Track training experiments
Capability Details
function-calling
Keywords: tool, function, define tool, tool schema, function schema, strict mode, parallel tools
Solves:
- Define tools with clear descriptions and strict schemas
- Execute tool calls in parallel with asyncio.gather
- Validate inputs and handle errors in tool execution loops
streaming
Keywords: streaming, SSE, Server-Sent Events, real-time, backpressure, token stream
Solves:
- Stream LLM tokens via SSE endpoints
- Handle tool calls within streams
- Manage backpressure with bounded queues
local-inference
Keywords: Ollama, local, self-hosted, model selection, GPU, Apple Silicon
Solves:
- Set up Ollama for local LLM inference
- Select models based on task and hardware
- Optimize GPU usage and CI integration
fine-tuning
Keywords: LoRA, QLoRA, fine-tune, DPO, synthetic data, PEFT, alignment
Solves:
- Configure LoRA/QLoRA for parameter-efficient training
- Generate and validate synthetic training data
- Align models with DPO and evaluate results
1---2name: llm-integration3description: LLM integration patterns for function calling, streaming responses, local inference with Ollama, and fine-tuning customization. Use when implementing tool use, SSE streaming, local model deployment, LoRA/QLoRA fine-tuning, or multi-provider LLM APIs.4license: MIT5---6
7# LLM Integration
8
9Patterns for integrating LLMs into production applications: tool use, streaming, local inference, and fine-tuning. Each category has individual rule files in `rules/` loaded on-demand.
10
11## Quick Reference
12
13| Category | Rules | Impact | When to Use |
14|----------|-------|--------|-------------|
15| [Function Calling](#function-calling) | 3 | CRITICAL | Tool definitions, parallel execution, input validation |
16| [Streaming](#streaming) | 3 | HIGH | SSE endpoints, structured streaming, backpressure handling |
17| [Local Inference](#local-inference) | 3 | HIGH | Ollama setup, model selection, GPU optimization |
18| [Fine-Tuning](#fine-tuning) | 3 | HIGH | LoRA/QLoRA training, dataset preparation, evaluation |
19| [Context Optimization](#context-optimization) | 2 | HIGH | Window management, compression, caching, budget scaling |
20| [Evaluation](#evaluation) | 2 | HIGH | LLM-as-judge, RAGAS metrics, quality gates, benchmarks |
21| [Prompt Engineering](#prompt-engineering) | 4 | HIGH | CoT, few-shot, versioning, DSPy optimization, ReAct, cost optimization |
22
23**Total: 20 rules across 7 categories**
24
25## Quick Start
26
27```python
28# Function calling: strict mode tool definition
29tools = [{
30 "type": "function",
31 "function": {
32 "name": "search_documents",
33 "description": "Search knowledge base",
34 "strict": True,
35 "parameters": {
36 "type": "object",
37 "properties": {
38 "query": {"type": "string", "description": "Search query"},
39 "limit": {"type": "integer", "description": "Max results"}
40 },
41 "required": ["query", "limit"],
42 "additionalProperties": False
43 }
44 }
45}]
46```
47
48```python
49# Streaming: SSE endpoint with FastAPI
50@app.get("/chat/stream")
51async def stream_chat(prompt: str):
52 async def generate():
53 async for token in async_stream(prompt):
54 yield {"event": "token", "data": token}
55 yield {"event": "done", "data": ""}
56 return EventSourceResponse(generate())
57```
58
59```python
60# Local inference: Ollama with LangChain
61llm = ChatOllama(
62 model="deepseek-r1:70b",
63 base_url="http://localhost:11434",
64 temperature=0.0,
65 num_ctx=32768,
66)
67```
68
69```python
70# Fine-tuning: QLoRA with Unsloth
71model, tokenizer = FastLanguageModel.from_pretrained(
72 model_name="unsloth/Meta-Llama-3.1-8B",
73 max_seq_length=2048, load_in_4bit=True,
74)
75model = FastLanguageModel.get_peft_model(model, r=16, lora_alpha=32)
76```
77
78## Function Calling
79
80Enable LLMs to use external tools and return structured data. Use strict mode schemas (2026 best practice) for reliability. Limit to 5-15 tools per request, validate all inputs with Pydantic/Zod, and return errors as tool results.
81
82- `calling-tool-definition.md` -- Strict mode schemas, OpenAI/Anthropic formats, LangChain binding
83- `calling-parallel.md` -- Parallel tool execution, asyncio.gather, strict mode constraints
84- `calling-validation.md` -- Input validation, error handling, tool execution loops
85
86## Streaming
87
88Deliver LLM responses in real-time for better UX. Use SSE for web, WebSocket for bidirectional. Handle backpressure with bounded queues.
89
90- `streaming-sse.md` -- FastAPI SSE endpoints, frontend consumers, async iterators
91- `streaming-structured.md` -- Streaming with tool calls, partial JSON parsing, chunk accumulation
92- `streaming-backpressure.md` -- Backpressure handling, bounded buffers, cancellation
93
94## Local Inference
95
96Run LLMs locally with Ollama for cost savings (93% vs cloud), privacy, and offline development. Pre-warm models, use provider factory for cloud/local switching.
97
98- `local-ollama-setup.md` -- Installation, model pulling, environment configuration
99- `local-model-selection.md` -- Model comparison by task, hardware profiles, quantization
100- `local-gpu-optimization.md` -- Apple Silicon tuning, keep-alive, CI integration
101
102## Fine-Tuning
103
104Customize LLMs with parameter-efficient techniques. Fine-tune ONLY after exhausting prompt engineering and RAG. Requires 1000+ quality examples.
105
106- `tuning-lora.md` -- LoRA/QLoRA configuration, Unsloth training, adapter merging
107- `tuning-dataset-prep.md` -- Synthetic data generation, quality validation, deduplication
108- `tuning-evaluation.md` -- DPO alignment, evaluation metrics, anti-patterns
109
110## Context Optimization
111
112Manage context windows, compression, and attention-aware positioning. Optimize for tokens-per-task.
113
114- `context-window-management.md` -- Five-layer architecture, anchored summarization, compression triggers
115- `context-caching.md` -- Just-in-time loading, budget scaling, probe evaluation, CC 2.1.32+
116
117## Evaluation
118
119Evaluate LLM outputs with multi-dimension scoring, quality gates, and benchmarks.
120
121- `evaluation-metrics.md` -- LLM-as-judge, RAGAS metrics, hallucination detection
122- `evaluation-benchmarks.md` -- Quality gates, batch evaluation, pairwise comparison
123
124## Prompt Engineering
125
126Design, version, and optimize prompts for production LLM applications.
127
128- `prompt-design.md` -- Chain-of-Thought, few-shot learning, pattern selection guide
129- `prompt-testing.md` -- Langfuse versioning, DSPy optimization, A/B testing, self-consistency
130- `prompt-react-pattern.md` -- ReAct loop for tool-using agents, thought-action-observation format
131- `prompt-optimization.md` -- Token reduction, cost optimization, model tiering, prompt spec format
132
133## Upstream coverage (do not restate)
134
135These topics are covered by their vendors' own documentation. This skill points
136at them instead of teaching them; the rules above keep only our floors, ceilings
137and scars. Our delta on all of it is in `references/ork-delta.md`.
138
139| Topic | First-party source |
140|-------|--------------------|
141| Strict-mode tool schemas, structured outputs | https://platform.openai.com/docs/guides/function-calling |
142| Anthropic `input_schema` / `tool_use` | https://docs.claude.com/en/docs/agents-and-tools/tool-use/overview |
143| SSE client mechanics, reconnection, cancellation | https://developer.mozilla.org/en-US/docs/Web/API/EventSource |
144| LoRA / QLoRA config, target modules, adapter merging | https://huggingface.co/docs/peft/developer_guides/lora |
145| Unsloth training loop, 4-bit loading | https://docs.unsloth.ai/get-started/fine-tuning-llms-guide |
146| DPO, preference pairs, beta tuning, RLHF comparison | https://huggingface.co/docs/trl/dpo_trainer |
147| SFT dataset formats (Alpaca, ChatML) | https://huggingface.co/docs/trl/sft_trainer |
148| Embedding similarity for dataset dedup | https://sbert.net/ |
149| Fine-tune vs prompt vs RAG decision framework | https://platform.openai.com/docs/guides/optimizing-llm-accuracy |
150| Vendor token pricing (never hardcode it here) | https://platform.openai.com/docs/pricing |
151
152## Supporting Files
153
154- `references/ork-delta.md` -- our delta: scars, house ceilings, retired-file provenance
155- `references/model-selection.md` -- local model comparison by task and hardware
156- `scripts/create-lora-config.md` -- LoRA config scaffold with auto-detected model type
157
158## Key Decisions
159
160| Decision | Recommendation |
161|----------|----------------|
162| Tool schema mode | `strict: true` (2026 best practice) |
163| Tool count | 5-15 max per request |
164| Streaming protocol | SSE for web, WebSocket for bidirectional |
165| Buffer size | 50-200 tokens |
166| Local model (reasoning) | `deepseek-r1:70b` |
167| Local model (coding) | `qwen2.5-coder:32b` |
168| Fine-tuning approach | LoRA/QLoRA (try prompting first) |
169| LoRA rank | 16-64 typical |
170| Training epochs | 1-3 (more risks overfitting) |
171| Context compression | Anchored iterative (60-80%) |
172| Compress trigger | 70% utilization, target 50% |
173| Judge model | `claude-haiku-4-5-20251001` (cost tier), `gpt-5.5`, or `gemini-3.8-flash` (Google's GA general-purpose model, priced under Haiku through 2026-12-31 and a third vendor for the different-model rule; price lives in `models.vocab.json`, not here) |
174| Quality threshold | 0.7 production, 0.6 drafts |
175| Few-shot examples | 3-5 diverse, representative |
176| Prompt versioning | Langfuse with labels |
177| Auto-optimization | DSPy MIPROv2 |
178
179## Related Skills
180
181- `ork:rag-retrieval` -- Embedding patterns, when RAG is better than fine-tuning
182- `agent-loops` -- Multi-step tool use with reasoning
183- `llm-evaluation` -- Evaluate fine-tuned and local models
184- `langfuse-observability` -- Track training experiments
185
186## Capability Details
187
188### function-calling
189**Keywords:** tool, function, define tool, tool schema, function schema, strict mode, parallel tools
190**Solves:**
191- Define tools with clear descriptions and strict schemas
192- Execute tool calls in parallel with asyncio.gather
193- Validate inputs and handle errors in tool execution loops
194
195### streaming
196**Keywords:** streaming, SSE, Server-Sent Events, real-time, backpressure, token stream
197**Solves:**
198- Stream LLM tokens via SSE endpoints
199- Handle tool calls within streams
200- Manage backpressure with bounded queues
201
202### local-inference
203**Keywords:** Ollama, local, self-hosted, model selection, GPU, Apple Silicon
204**Solves:**
205- Set up Ollama for local LLM inference
206- Select models based on task and hardware
207- Optimize GPU usage and CI integration
208
209### fine-tuning
210**Keywords:** LoRA, QLoRA, fine-tune, DPO, synthetic data, PEFT, alignment
211**Solves:**
212- Configure LoRA/QLoRA for parameter-efficient training
213- Generate and validate synthetic training data
214- Align models with DPO and evaluate results