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

annotation

Alias for field number 3

description

Alias for field number 2

id

Alias for field number 0

is_shared

Alias for field number 4

name

Alias 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