Prompts
Configure your prompts
Prompt Management in R2R
R2R provides a flexible system for managing prompts, allowing you to create, update, retrieve, and delete prompts dynamically. This system is crucial for customizing the behavior of language models and ensuring consistent interactions across your application.
Default Prompts
R2R comes with a set of default prompts that are loaded from YAML files located in the py/core/providers/database/prompts
directory. These default prompts provide a starting point for various tasks within the R2R system.
For example, the default RAG (Retrieval-Augmented Generation) prompt is defined as follows:
Default Prompt Usage
You can find the full list of default prompts and their contents in the prompts directory.
Prompt Provider
R2R uses a postgres class to manage prompts. This allows for storage, retrieval, and manipulation of prompts, leveraging both a Postgres database and YAML files for flexibility and persistence.
Key features of prompts inside R2R:
- Database Storage: Prompts are stored in a Postgres table, allowing for efficient querying and updates.
- YAML File Support: Prompts can be loaded from YAML files, providing an easy way to version control and distribute default prompts.
- In-Memory Cache: Prompts are kept in memory for fast access during runtime.
Prompt Structure
Each prompt in R2R consists of:
- Name: A unique identifier for the prompt.
- Template: The actual text of the prompt, which may include placeholders for dynamic content.
- Input Types: A dictionary specifying the expected types for any dynamic inputs to the prompt.
Managing Prompts
R2R provides several endpoints and SDK methods for managing prompts:
Adding a Prompt
To add a new prompt:
Updating a Prompt
To update an existing prompt:
Retrieving a Prompt
To get a specific prompt:
Refer directly to the Prompt API Reference for more details.
Security Considerations
Access to prompt management functions is restricted to superusers to prevent unauthorized modifications to system prompts. Ensure that only trusted administrators have superuser access to your R2R deployment.
Conclusion
R2R’s prompt management system provides a powerful and flexible way to control the behavior of language models in your application. By leveraging this system effectively, you can create more dynamic, context-aware, and maintainable AI-powered features.