haystack/haystack/components/builders/prompt_builder.py
Silvano Cerza b49e86d007
fix: Change PromptBuilder to have default values for all inputs (#6934)
* Change PromptBuilder to have default values for all inputs

* Add release notes
2024-02-07 16:03:17 +01:00

42 lines
1.4 KiB
Python

from typing import Any, Dict
from jinja2 import Template, meta
from haystack import component, default_to_dict
@component
class PromptBuilder:
"""
PromptBuilder is a component that renders a prompt from a template string using Jinja2 engine.
The template variables found in the template string are used as input types for the component and are all required.
Usage:
```python
template = "Translate the following context to {{ target_language }}. Context: {{ snippet }}; Translation:"
builder = PromptBuilder(template=template)
builder.run(target_language="spanish", snippet="I can't speak spanish.")
```
"""
def __init__(self, template: str):
"""
Initialize the component with a template string.
:param template: Jinja2 template string, e.g. "Summarize this document: {documents}\\nSummary:"
:type template: str
"""
self._template_string = template
self.template = Template(template)
ast = self.template.environment.parse(template)
template_variables = meta.find_undeclared_variables(ast)
for var in template_variables:
component.set_input_type(self, var, Any, "")
def to_dict(self) -> Dict[str, Any]:
return default_to_dict(self, template=self._template_string)
@component.output_types(prompt=str)
def run(self, **kwargs):
return {"prompt": self.template.render(kwargs)}