ContextStr

ContextStr(**data: Any)

A string that requires context variable substitution.
Use the format method to substitute context variables into the string.
Create a new model by parsing and validating input data from keyword arguments.
Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.
self is explicitly positional-only to allow self as a field name.

Parameters:
NameDescription
**dataType: Any

Class Attributes

model_config



template



Instance Methods

format

format(self, context_variables: ContextVariables) -> str | None

Substitute context variables into the string.

Parameters:
NameDescription
context_variablesThe context variables to substitute into the string.

Type: ContextVariables
Returns:
TypeDescription
str | NoneOptional[str]: The formatted string with context variables substituted.