langchain.agents.mrkl.base.ChainConfig¶
- class langchain.agents.mrkl.base.ChainConfig(action_name: str, action: Callable, action_description: str)[source]¶
Configuration for chain to use in MRKL system.
- Parameters
action_name (str) – Name of the action.
action (Callable) – Action function to call.
action_description (str) – Description of the action.
Create new instance of ChainConfig(action_name, action, action_description)
Attributes
actionAlias for field number 1
action_descriptionAlias for field number 2
action_nameAlias for field number 0
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.