> ## Documentation Index
> Fetch the complete documentation index at: https://prompt.university/llms.txt
> Use this file to discover all available pages before exploring further.

# Free Resources

> Curated resources for deepening your prompt engineering knowledge

<Info>
  A comprehensive collection of research papers, tools, tutorials, and community resources to advance your prompt engineering skills
</Info>

## Prompt Engineering Guides

<Info>
  Free, comprehensive prompt engineering documentation directly from leading AI companies
</Info>

<CardGroup cols={2}>
  <Card title="OpenAI Prompt Engineering Guide" icon="openai" href="https://platform.openai.com/docs/guides/prompt-engineering">
    **Provider:** OpenAI

    **Best For:** ChatGPT users
  </Card>

  <Card title="Anthropic Prompt Engineering Guide" icon="book-open" href="https://platform.claude.com/docs/en/build-with-claude/prompt-engineering/claude-4-best-practices">
    **Provider:** Anthropic

    **Best For:** Claude users
  </Card>

  <Card title="Google AI Prompt Design Guide" icon="google" href="https://ai.google.dev/gemini-api/docs/prompting-intro">
    **Provider:** Google AI

    **Best For:** Gemini users
  </Card>

  <Card title="Microsoft Copilot Prompt Guide" icon="microsoft" href="https://learn.microsoft.com/en-us/azure/ai-services/openai/concepts/prompt-engineering">
    **Provider:** Microsoft Azure

    **Best For:** ChatGPT users
  </Card>

  <Card title="AWS Bedrock Prompt Engineering" icon="aws" href="https://docs.aws.amazon.com/bedrock/latest/userguide/prompt-engineering-guidelines.html">
    **Provider:** Amazon Web Services

    **Best For:** Developers
  </Card>

  <Card title="Cohere Prompt Engineering" icon="code" href="https://docs.cohere.com/docs/prompt-engineering">
    **Provider:** Cohere

    **Best For:** Cohere users
  </Card>
</CardGroup>

***

## Prompt Libraries & Development

<CardGroup cols={2}>
  <Card title="Potentially" icon="database" href="https://potentially.com/">
    **Purpose:** Marketplace for prompts

    **Features:**

    * Pre-built prompts
    * Community sharing
    * Prompt templates

    **Best For:** Finding proven prompts
  </Card>

  <Card title="LangChain" icon="link" href="https://www.langchain.com/">
    **Purpose:** Framework for building LLM applications

    **Features:**

    * Chain composition
    * Memory management
    * Tool integration

    **Best For:** Production applications
  </Card>

  <Card title="LlamaIndex" icon="database" href="https://www.llamaindex.ai/">
    **Purpose:** Data framework for LLM applications

    **Features:**

    * Data ingestion and indexing
    * RAG implementation
    * Query engines

    **Best For:** Knowledge-based applications
  </Card>

  <Card title="OpenAI Playground" icon="play" href="https://platform.openai.com/playground">
    **Purpose:** Interactive prompt testing

    **Features:**

    * Real-time testing
    * Parameter tuning
    * Model comparison

    **Best For:** Rapid experimentation
  </Card>
</CardGroup>

***

## Foundational Research Papers

### Language Models & Transformers

<AccordionGroup>
  <Accordion title="Attention Is All You Need (2017)">
    **Authors:** Vaswani et al., Google Brain

    **Key Contribution:** Introduced the Transformer architecture that powers modern LLMs

    **Why Read:** Understanding transformers is fundamental to understanding how prompts are processed

    **Link:** [arXiv:1706.03762](https://arxiv.org/abs/1706.03762)
  </Accordion>

  <Accordion title="Language Models are Few-Shot Learners (2020)">
    **Authors:** Brown et al., OpenAI (GPT-3 Paper)

    **Key Contribution:** Demonstrated that large language models can perform tasks with just a few examples (few-shot learning)

    **Why Read:** Foundational paper on in-context learning and prompt-based task solving

    **Link:** [arXiv:2005.14165](https://arxiv.org/abs/2005.14165)
  </Accordion>

  <Accordion title="Training language models to follow instructions (2022)">
    **Authors:** Ouyang et al., OpenAI (InstructGPT Paper)

    **Key Contribution:** Showed how RLHF (Reinforcement Learning from Human Feedback) improves instruction following

    **Why Read:** Explains why modern models are better at following prompts

    **Link:** [arXiv:2203.02155](https://arxiv.org/abs/2203.02155)
  </Accordion>
</AccordionGroup>

***

## Prompting Techniques

### Chain of Thought & Reasoning

<AccordionGroup>
  <Accordion title="Chain-of-Thought Prompting Elicits Reasoning (2022)">
    **Authors:** Wei et al., Google Research

    **Key Contribution:** Introduced Chain of Thought prompting, showing 30-50% accuracy improvements on reasoning tasks

    **Why Read:** The definitive paper on CoT prompting

    **Link:** [arXiv:2201.11903](https://arxiv.org/abs/2201.11903)
  </Accordion>

  <Accordion title="Large Language Models are Zero-Shot Reasoners (2022)">
    **Authors:** Kojima et al., University of Tokyo

    **Key Contribution:** Showed that simply adding "Let's think step by step" dramatically improves reasoning

    **Why Read:** Demonstrates the power of simple prompting modifications

    **Link:** [arXiv:2205.11916](https://arxiv.org/abs/2205.11916)
  </Accordion>

  <Accordion title="Self-Consistency Improves Chain of Thought Reasoning (2022)">
    **Authors:** Wang et al., Google Research

    **Key Contribution:** Introduced self-consistency (ensembling multiple reasoning paths)

    **Why Read:** Shows how to improve CoT reliability through multiple samples

    **Link:** [arXiv:2203.11171](https://arxiv.org/abs/2203.11171)
  </Accordion>

  <Accordion title="Tree of Thoughts: Deliberate Problem Solving (2023)">
    **Authors:** Yao et al., Princeton University

    **Key Contribution:** Extended CoT to explore multiple reasoning branches like a search tree

    **Why Read:** Advanced technique for complex problem-solving

    **Link:** [arXiv:2305.10601](https://arxiv.org/abs/2305.10601)
  </Accordion>
</AccordionGroup>

***

### Retrieval-Augmented Generation

<AccordionGroup>
  <Accordion title="Retrieval-Augmented Generation for Knowledge-Intensive NLP (2020)">
    **Authors:** Lewis et al., Facebook AI Research

    **Key Contribution:** Introduced RAG, combining retrieval with generation

    **Why Read:** Foundational paper on grounding LLM outputs in external knowledge

    **Link:** [arXiv:2005.11401](https://arxiv.org/abs/2005.11401)
  </Accordion>

  <Accordion title="In-Context Retrieval-Augmented Language Models (2023)">
    **Authors:** Ram et al., AI21 Labs

    **Key Contribution:** Showed how to effectively integrate retrieved documents into prompts

    **Why Read:** Practical techniques for implementing RAG

    **Link:** [arXiv:2302.00083](https://arxiv.org/abs/2302.00083)
  </Accordion>
</AccordionGroup>

***

### Prompt Engineering Surveys

<AccordionGroup>
  <Accordion title="Pre-train, Prompt, and Predict (2021)">
    **Authors:** Liu et al., Carnegie Mellon University

    **Key Contribution:** Comprehensive survey of prompting methods

    **Why Read:** Excellent overview of the prompting landscape

    **Link:** [arXiv:2107.13586](https://arxiv.org/abs/2107.13586)
  </Accordion>

  <Accordion title="A Survey of Large Language Models (2023)">
    **Authors:** Zhao et al., Renmin University of China

    **Key Contribution:** Comprehensive survey covering LLM architectures, training, and prompting

    **Why Read:** Up-to-date overview of the entire LLM field

    **Link:** [arXiv:2303.18223](https://arxiv.org/abs/2303.18223)
  </Accordion>
</AccordionGroup>

***

## Tools & Frameworks

### Vector Databases (for RAG)

<CardGroup cols={2}>
  <Card title="Pinecone" icon="database" href="https://www.pinecone.io/">
    Managed vector database with high performance
  </Card>

  <Card title="Weaviate" icon="server" href="https://weaviate.io/">
    Open-source vector search engine
  </Card>

  <Card title="Chroma" icon="palette" href="https://www.trychroma.com/">
    Lightweight, embeddable vector database
  </Card>

  <Card title="Qdrant" icon="magnifying-glass" href="https://qdrant.tech/">
    High-performance vector similarity search
  </Card>
</CardGroup>

***

### Evaluation & Testing

<CardGroup cols={2}>
  <Card title="PromptFoo" icon="vial" href="https://www.promptfoo.dev/">
    **Purpose:** Test and evaluate prompts

    **Features:**

    * Automated testing
    * Performance metrics
    * Regression detection
  </Card>

  <Card title="LangSmith" icon="chart-line" href="https://www.langchain.com/langsmith">
    **Purpose:** Debug and monitor LLM applications

    **Features:**

    * Trace visualization
    * Performance analytics
    * Prompt versioning
  </Card>
</CardGroup>

***

## Community Resources

### Learning Platforms

<CardGroup cols={2}>
  <Card title="Learn Prompting" icon="graduation-cap" href="https://learnprompting.org/">
    Free, comprehensive prompt engineering course
  </Card>

  <Card title="Prompt Engineering Guide" icon="book" href="https://www.promptingguide.ai/">
    Open-source guide with examples and techniques
  </Card>

  <Card title="OpenAI Cookbook" icon="book-open" href="https://cookbook.openai.com/">
    Official examples and best practices from OpenAI
  </Card>

  <Card title="Anthropic Prompt Library" icon="library" href="https://docs.anthropic.com/claude/prompt-library">
    Curated prompts for Claude
  </Card>
</CardGroup>

***

### Blogs & Newsletters

<AccordionGroup>
  <Accordion title="Lilian Weng's Blog">
    **Focus:** Deep dives into LLM research and techniques

    **Notable Posts:**

    * "Prompt Engineering"
    * "Large Language Models"
    * "Controllable Text Generation"

    **Link:** [lilianweng.github.io](https://lilianweng.github.io/)
  </Accordion>

  <Accordion title="The Batch (DeepLearning.AI)">
    **Focus:** Weekly AI news and insights

    **Why Subscribe:** Stay current with AI developments

    **Link:** [deeplearning.ai/the-batch](https://www.deeplearning.ai/the-batch/)
  </Accordion>

  <Accordion title="Import AI">
    **Focus:** Weekly newsletter on AI research

    **Why Subscribe:** Curated research paper summaries

    **Link:** [jack-clark.net](https://jack-clark.net/)
  </Accordion>

  <Accordion title="Ahead of AI">
    **Focus:** Practical AI and prompt engineering

    **Why Subscribe:** Actionable tips and techniques

    **Link:** [magazine.sebastianraschka.com](https://magazine.sebastianraschka.com/)
  </Accordion>
</AccordionGroup>

***

### Communities

<CardGroup cols={2}>
  <Card title="Prompt University Discord" icon="discord" href="https://club.prompt.university">
    Education Community for Prompt University
  </Card>

  <Card title="r/PromptEngineering" icon="reddit" href="https://www.reddit.com/r/PromptEngineering/">
    Active Reddit community for prompt engineering discussions
  </Card>

  <Card title="OpenAI Forum" icon="comments" href="https://community.openai.com/">
    Official OpenAI community forum
  </Card>

  <Card title="Hugging Face Forums" icon="face-smile" href="https://discuss.huggingface.co/">
    Community for open-source AI models
  </Card>
</CardGroup>

***

## Books

### Recommended Reading

<AccordionGroup>
  <Accordion title="The Prompt Engineering Handbook">
    **Authors:** Various contributors

    **Focus:** Comprehensive guide to prompt engineering

    **Best For:** Structured learning path

    **Availability:** Free online
  </Accordion>

  <Accordion title="Designing Machine Learning Systems">
    **Author:** Chip Huyen

    **Focus:** Production ML systems (includes prompting)

    **Best For:** Building real-world applications

    **Publisher:** O'Reilly Media
  </Accordion>

  <Accordion title="Natural Language Processing with Transformers">
    **Authors:** Tunstall, von Werra, Wolf

    **Focus:** Deep dive into transformer models

    **Best For:** Understanding the underlying technology

    **Publisher:** O'Reilly Media
  </Accordion>
</AccordionGroup>

***

## Online Courses

### Structured Learning

<CardGroup cols={2}>
  <Card title="ChatGPT Prompt Engineering for Developers" icon="graduation-cap" href="https://www.deeplearning.ai/short-courses/chatgpt-prompt-engineering-for-developers/">
    **Provider:** DeepLearning.AI + OpenAI

    **Duration:** 1 hour

    **Level:** Beginner

    **Cost:** Free
  </Card>

  <Card title="LangChain for LLM Application Development" icon="link" href="https://www.deeplearning.ai/short-courses/langchain-for-llm-application-development/">
    **Provider:** DeepLearning.AI

    **Duration:** 1 hour

    **Level:** Intermediate

    **Cost:** Free
  </Card>

  <Card title="Building Systems with ChatGPT API" icon="robot" href="https://www.deeplearning.ai/short-courses/building-systems-with-chatgpt/">
    **Provider:** DeepLearning.AI + OpenAI

    **Duration:** 1 hour

    **Level:** Intermediate

    **Cost:** Free
  </Card>

  <Card title="Prompt Engineering Specialization" icon="certificate" href="https://www.coursera.org/specializations/prompt-engineering">
    **Provider:** Vanderbilt University (Coursera)

    **Duration:** 4 courses

    **Level:** Beginner to Advanced

    **Cost:** Paid (with free audit option)
  </Card>
</CardGroup>

***

## Advanced Topics

### Cutting-Edge Research Areas

<Tabs>
  <Tab title="Constitutional AI">
    **Focus:** Training AI systems to be helpful, harmless, and honest

    **Key Paper:** "Constitutional AI: Harmlessness from AI Feedback" (Anthropic, 2022)

    **Why Important:** Addresses AI safety and alignment

    **Link:** [arXiv:2212.08073](https://arxiv.org/abs/2212.08073)
  </Tab>

  <Tab title="Multimodal Prompting">
    **Focus:** Prompting with images, audio, and text

    **Key Papers:**

    * "Flamingo: a Visual Language Model" (DeepMind, 2022)
    * "GPT-4 Technical Report" (OpenAI, 2023)

    **Why Important:** Expanding beyond text-only prompts
  </Tab>

  <Tab title="Prompt Optimization">
    **Focus:** Automatically discovering optimal prompts

    **Key Papers:**

    * "Automatic Prompt Engineer" (Zhou et al., 2022)
    * "Large Language Models Are Human-Level Prompt Engineers" (Zhou et al., 2023)

    **Why Important:** Automating prompt engineering
  </Tab>

  <Tab title="Adversarial Prompting">
    **Focus:** Understanding and defending against prompt injection

    **Key Resources:**

    * OWASP Top 10 for LLM Applications
    * "Jailbroken: How Does LLM Safety Training Fail?" (Wei et al., 2023)

    **Why Important:** Security and robustness
  </Tab>
</Tabs>

***

## Research Groups & Labs

### Leading Organizations

<CardGroup cols={2}>
  <Card title="OpenAI" icon="brain" href="https://openai.com/research">
    GPT series, DALL-E, ChatGPT
  </Card>

  <Card title="Anthropic" icon="shield" href="https://www.anthropic.com/research">
    Claude, Constitutional AI
  </Card>

  <Card title="Google DeepMind" icon="google" href="https://deepmind.google/research/">
    PaLM, Gemini, Flamingo
  </Card>

  <Card title="Meta AI" icon="meta" href="https://ai.meta.com/research/">
    LLaMA, RAG research
  </Card>

  <Card title="Microsoft Research" icon="microsoft" href="https://www.microsoft.com/en-us/research/research-area/artificial-intelligence/">
    Orca, Phi models
  </Card>

  <Card title="Stanford NLP" icon="graduation-cap" href="https://nlp.stanford.edu/">
    Academic research on LLMs
  </Card>
</CardGroup>

***

## Staying Current

### How to Keep Up

<Steps>
  <Step title="Follow Key Researchers">
    Twitter/X accounts: @AndrewYNg, @karpathy, @ylecun, @goodfellow\_ian, @sama
  </Step>

  <Step title="Monitor arXiv">
    Subscribe to cs.CL (Computation and Language) and cs.AI categories
  </Step>

  <Step title="Join Communities">
    Participate in Discord servers, Reddit, and forums
  </Step>

  <Step title="Experiment Regularly">
    Try new techniques as they're published
  </Step>

  <Step title="Read Release Notes">
    Follow model updates from OpenAI, Anthropic, Google, etc.
  </Step>
</Steps>

***

## Practice Resources

### Datasets for Practice

<CardGroup cols={2}>
  <Card title="MMLU" icon="brain" href="https://github.com/hendrycks/test">
    Massive Multitask Language Understanding - 57 subjects
  </Card>

  <Card title="BIG-bench" icon="database" href="https://github.com/google/BIG-bench">
    Beyond the Imitation Game - 200+ diverse tasks
  </Card>

  <Card title="HELM" icon="chart-bar" href="https://crfm.stanford.edu/helm/">
    Holistic Evaluation of Language Models
  </Card>

  <Card title="PromptSource" icon="code" href="https://github.com/bigscience-workshop/promptsource">
    Collection of prompts for NLP datasets
  </Card>
</CardGroup>

***

## Prompt University Courses

<CardGroup cols={2}>
  <Card title="Glossary" icon="book" href="/resources/glossary">
    Key terms and definitions
  </Card>

  <Card title="Best Practices" icon="check-circle" href="/resources/best-practices">
    Quick reference guide
  </Card>

  <Card title="Module 1" icon="1" href="/module-1">
    Prompt Engineering Fundamentals
  </Card>

  <Card title="Module 2" icon="2" href="/module-2">
    Task-Specific Prompting
  </Card>

  <Card title="Module 3" icon="3" href="/module-3">
    Advanced Techniques
  </Card>
</CardGroup>

***

<Note>
  **Note:** This field evolves rapidly. Links and resources are current as of 2025, but new papers and tools emerge frequently. Check the communities and newsletters above to stay updated.
</Note>
