Skill · Prompting → chains → RAG → agentsLive
LLM Apps
The patterns behind every AI app — prompt templates, chaining, structured output, retrieval, and tool-using agents — wired to a real, live model. No keys, no setup.
- Task 1Your first callEasySend text to a real model and read its reply.→
- Task 2Prompt templatesEasyBuild prompts from a reusable f-string template.→
- Task 3System promptsEasySet the model's rules and persona with a system message.→
- Task 4Few-shot promptingMediumTeach the model a pattern by showing examples first.→
- Task 5Structured JSON outputMediumGet machine-readable JSON instead of prose.→
- Task 6Chaining callsMediumFeed one model's output into the next call.→
- Task 7EmbeddingsMediumTurn text into a vector of numbers.→
- Task 8Semantic searchHardRank documents by meaning, not keywords.→
- Task 9RAG: answer from docsHardGround the model in facts so it can't make things up.→
- Task 10A tool-using agentHardLet the model choose a tool; your code runs it.→