ConfigurableField#
- class langchain_core.runnables.utils.ConfigurableField(id: str, name: str | None = None, description: str | None = None, annotation: Any | None = None, is_shared: bool = False)[source]#
Field that can be configured by the user.
- Parameters:
id (str) β The unique identifier of the field.
name (str | None) β The name of the field. Defaults to None.
description (str | None) β The description of the field. Defaults to None.
annotation (Any | None) β The annotation of the field. Defaults to None.
is_shared (bool) β Whether the field is shared. Defaults to False.
Create new instance of ConfigurableField(id, name, description, annotation, is_shared)
Attributes
annotationAlias for field number 3
descriptionAlias for field number 2
idAlias for field number 0
is_sharedAlias for field number 4
nameAlias for field number 1
Methods
__init__()count(value,Β /)Return number of occurrences of value.
index(value[,Β start,Β stop])Return first index of value.
- __init__()#
- count(value, /)#
Return number of occurrences of value.
- index(value, start=0, stop=9223372036854775807, /)#
Return first index of value.
Raises ValueError if the value is not present.
Examples using ConfigurableField