langchain.PromptDataset
kedro_datasets_experimental.langchain.PromptDataset ¶
PromptDataset(
filepath,
template="PromptTemplate",
dataset=None,
credentials=None,
fs_args=None,
metadata=None,
**kwargs
)
Bases: AbstractDataset[Union[PromptTemplate, ChatPromptTemplate], Any]
A Kedro dataset for loading LangChain prompt templates from text, JSON, or YAML files.
This dataset wraps existing Kedro datasets (such as TextDataset, JSONDataset, or YAMLDataset)
to load prompt configurations and convert them into LangChain PromptTemplate or
ChatPromptTemplate objects.
Example usage for the YAML API:¶
my_prompt:
type: kedro_datasets_experimental.langchain.PromptDataset
filepath: data/prompts/my_prompt.json
template: PromptTemplate
dataset:
type: json.JSONDataset
fs_args:
load_args:
encoding: utf-8
save_args:
ensure_ascii: false
credentials: dev_creds
metadata:
kedro-viz:
layer: raw
Example usage for the Python API:¶
from kedro_datasets_experimental.langchain import PromptDataset
dataset = PromptDataset(
filepath="data/prompts/my_prompt.json",
template="PromptTemplate",
dataset={"type": "json.JSONDataset"},
)
prompt = dataset.load()
print(prompt.format(name="Kedro"))
Parameters:
-
filepath(str) –Path to the prompt file
-
template(str, default:'PromptTemplate') –Name of the LangChain template class ("PromptTemplate" or "ChatPromptTemplate")
-
dataset(dict[str, Any] | str | None, default:None) –Configuration for the underlying Kedro dataset
-
credentials(dict[str, Any] | None, default:None) –Credentials passed to the underlying dataset unless already defined
-
fs_args(dict[str, Any] | None, default:None) –Extra arguments passed to the filesystem, if supported
-
metadata(dict[str, Any] | None, default:None) –Arbitrary metadata
-
**kwargs(Any, default:{}) –Additional arguments (ignored)
Source code in kedro_datasets_experimental/langchain/prompt_dataset.py
69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 | |
TEMPLATES
class-attribute
instance-attribute
¶
TEMPLATES = {
"PromptTemplate": "_create_prompt_template",
"ChatPromptTemplate": "_create_chat_prompt_template",
}
VALID_DATASETS
class-attribute
instance-attribute
¶
VALID_DATASETS = {
"text.TextDataset",
"json.JSONDataset",
"yaml.YAMLDataset",
}
_create_template_function
instance-attribute
¶
_create_template_function = getattr(
self, TEMPLATES[template]
)
_build_dataset_config ¶
_build_dataset_config(dataset)
Build dataset configuration.
Raises:
-
DatasetError–If the dataset type is unsupported.
-
Currently supported dataset types are–text.TextDataset, json.JSONDataset, yaml.YAMLDataset
Returns:
-
dict–A normalized dataset configuration dictionary.
Source code in kedro_datasets_experimental/langchain/prompt_dataset.py
148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 | |
_create_chat_prompt_template ¶
_create_chat_prompt_template(data)
Create a ChatPromptTemplate from validated chat data.
Supports either:
- A dictionary in the LangChain chat JSON format ({"messages": [{"role": "...", "content": "..."}]}),
- Or a list of (role, content) tuples.
Parameters:
-
data(dict | list[tuple[str, str]]) –Chat prompt data to validate and transform.
Returns:
-
ChatPromptTemplate–A LangChain
ChatPromptTemplateinstance.
Raises:
-
DatasetError–If cannot be used to create a
ChatPromptTemplate.
Examples:
>>> dataset._create_chat_prompt_template({
... "messages": [
... {"role": "system", "content": "You are a helpful assistant."},
... {"role": "user", "content": "Hello, who are you?"}
... ]
... })
ChatPromptTemplate(messages=[...])
>>> dataset._create_chat_prompt_template([
... ("user", "Hello"),
... ("ai", "Hi there!")
... ])
ChatPromptTemplate(messages=[...])
Source code in kedro_datasets_experimental/langchain/prompt_dataset.py
261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 | |
_create_prompt_template ¶
_create_prompt_template(raw_data)
Create a PromptTemplate from loaded raw data.
This method supports either a string template or a dictionary containing the prompt configuration.
Parameters:
-
raw_data(str | dict) –Either a string representing the template, or a dictionary with keys compatible with
PromptTemplateinitialization (e.g.,template,input_variables).
Returns:
-
PromptTemplate–A LangChain
PromptTemplateinstance initialized with the provided template data.
Raises:
-
DatasetError–If
raw_datais not a string or dictionary.
Examples:
>>> dataset._create_prompt_template("Hello {name}!")
PromptTemplate(template='Hello {name}!', input_variables=['name'])
>>> dataset._create_prompt_template({
... "template": "Hello {name}!",
... "input_variables": ["name"]
... })
PromptTemplate(template='Hello {name}!', input_variables=['name'])
Source code in kedro_datasets_experimental/langchain/prompt_dataset.py
201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 | |
_describe ¶
_describe()
Source code in kedro_datasets_experimental/langchain/prompt_dataset.py
299 300 301 302 303 304 305 306 307 308 | |
_exists ¶
_exists()
Source code in kedro_datasets_experimental/langchain/prompt_dataset.py
310 311 | |
_validate_chat_prompt_data ¶
_validate_chat_prompt_data(data)
Validate that chat prompt data exists and is not empty. Raises an error if data is a plain string, which is only compatible with PromptTemplate.
Returns validated and unpacked messages as a dictionary or a list of tuples.
Raises:
-
DatasetError–If the data is empty or is a plain string.
Source code in kedro_datasets_experimental/langchain/prompt_dataset.py
238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 | |
_validate_dataset_type ¶
_validate_dataset_type(dataset)
Validate that the dataset type is supported and not None.
Source code in kedro_datasets_experimental/langchain/prompt_dataset.py
135 136 137 138 139 140 141 142 143 144 145 146 | |
load ¶
load()
Loads the underlying dataset and converts the data into a LangChain prompt template.
This method retrieves raw prompt data from the underlying dataset (e.g., a JSON or YAML file)
and constructs the corresponding LangChain template — either a PromptTemplate or
ChatPromptTemplate — depending on the dataset configuration.
Raises:
-
DatasetError–If the dataset cannot be loaded, contains no data, or cannot be converted into the expected prompt template.
Returns:
-
PromptTemplate | ChatPromptTemplate–A fully initialized LangChain prompt object created from the dataset contents.
Example
dataset.load() ChatPromptTemplate.from_messages([ ("system", "You are a helpful assistant."), ("human", "{input}") ])
Source code in kedro_datasets_experimental/langchain/prompt_dataset.py
165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 | |
preview ¶
preview()
Generate a JSON-compatible preview of the underlying prompt data for Kedro-Viz.
Returns:
-
JSONPreview–A Kedro-Viz-compatible object containing a serialized JSON string of the processed data. If an exception occurs during processing, the returned JSONPreview contains an error message instead of the dataset content.
Example: >>> dataset.preview() JSONPreview('{"messages": [{"role": "system", "content": "You are..."}]}')
Source code in kedro_datasets_experimental/langchain/prompt_dataset.py
313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 | |
save ¶
save(data)
Source code in kedro_datasets_experimental/langchain/prompt_dataset.py
296 297 | |