mirror of
https://github.com/magnus919/agent-skills.git
synced 2026-09-19 15:36:29 +03:00
Greenfield SkillOpt: 3 epochs for a Stanford DSPy compiler skill. DSPy is a fundamentally different paradigm from chain/RAG frameworks. Epoch 1 — Prominence: - Hard-gate blockquote: 'DSPy is NOT a chain framework' - Core Paradigm section with runnable code example early Epoch 2 — Decision Guidance: - Framework Routing Guide (DSPy vs LlamaIndex vs LangChain vs LangGraph) - Where to Start table mapping entry points - Troubleshooting table with reference links Epoch 3 — Pattern Expansion: - Optimizer selection cheat sheet from official docs - Caching, compilation cost management, save/load - FAQ covering paradigm confusion, errors, deployment 12 files: SKILL.md, 7 references, 3 templates, 1 script. v1.0.0 -> v1.0.3 across 3 epochs. All API surfaces validated against dspy.ai official docs — optimizer selection guide, caching, core modules, FAQ. Signed-off-by: Jasper <jasper@montcastle.bitches>
31 lines
918 B
Python
31 lines
918 B
Python
#!/usr/bin/env python3
|
|
"""RAG program with DSPy using ColBERT retrieval and ChainOfThought."""
|
|
|
|
import dspy
|
|
|
|
lm = dspy.LM("openai/gpt-4o-mini")
|
|
dspy.configure(lm=lm)
|
|
|
|
class RAG(dspy.Module):
|
|
def __init__(self, k=5):
|
|
self.retrieve = dspy.Retrieve(k=k)
|
|
self.generate = dspy.ChainOfThought("context, question -> answer")
|
|
|
|
def forward(self, question):
|
|
context = "\n".join(self.retrieve(question).passages)
|
|
return self.generate(question=question, context=context)
|
|
|
|
def correct(example, pred, trace=None):
|
|
return example.answer in pred.answer
|
|
|
|
trainset = [
|
|
dspy.Example(question="What is DSPy?", answer="A compiler for prompt programs").with_inputs("question"),
|
|
]
|
|
|
|
program = RAG()
|
|
optimizer = dspy.BootstrapFewShot(metric=correct)
|
|
compiled = optimizer.compile(program, trainset=trainset)
|
|
|
|
result = compiled(question="What is DSPy used for?")
|
|
print(f"Answer: {result.answer}")
|