ai-fixing-errors
Installation
SKILL.md
Fix Your Broken AI
Systematic approach to diagnosing and fixing AI features that aren't working. Run through these checks in order.
Quick Diagnostic Checklist
1. Is the AI provider configured?
import dspy
# Check current config
print(dspy.settings.lm) # Should show your LM, not None
# If None, configure it:
lm = dspy.LM("openai/gpt-4o-mini")
dspy.configure(lm=lm)