id
stringlengths
14
16
text
stringlengths
31
2.41k
source
stringlengths
53
121
cc7118a75a71-55
examples='\nQuestion: How many rows are in the table <table>?\nDAX: EVALUATE ROW("Number of rows", COUNTROWS(<table>))\n----\nQuestion: How many rows are in the table <table> where <column> is not empty?\nDAX: EVALUATE ROW("Number of rows", COUNTROWS(FILTER(<table>, <table>[<column>] <> "")))\n----\nQuestion: What was ...
https://api.python.langchain.com/en/stable/modules/tools.html
cc7118a75a71-56
Bases: langchain.tools.base.BaseTool Tool for querying a Power BI Dataset. Parameters name (str) – description (str) – args_schema (Optional[Type[pydantic.main.BaseModel]]) – return_direct (bool) – verbose (bool) – callbacks (Optional[Union[List[langchain.callbacks.base.BaseCallbackHandler], langchain.callbacks.ba...
https://api.python.langchain.com/en/stable/modules/tools.html
cc7118a75a71-57
attribute max_iterations: int = 5 attribute powerbi: langchain.utilities.powerbi.PowerBIDataset [Required] attribute session_cache: Dict[str, Any] [Optional]
https://api.python.langchain.com/en/stable/modules/tools.html
cc7118a75a71-58
attribute template: Optional[str] = '\nAnswer the question below with a DAX query that can be sent to Power BI. DAX queries have a simple syntax comprised of just one required keyword, EVALUATE, and several optional keywords: ORDER BY, START AT, DEFINE, MEASURE, VAR, TABLE, and COLUMN. Each keyword defines a statement ...
https://api.python.langchain.com/en/stable/modules/tools.html
cc7118a75a71-59
ORDER BY <expression> ASC or DESC START AT <value> or <parameter> - The optional START AT keyword is used inside an ORDER BY clause. It defines the value at which the query results begin.\nDEFINE MEASURE | VAR; EVALUATE <table> - The optional DEFINE keyword introduces one or more calculated entity definitions that exis...
https://api.python.langchain.com/en/stable/modules/tools.html
cc7118a75a71-60
you nest the DISTINCT function within a formula, to get a list of distinct values that can be passed to another function and then counted, summed, or used for other operations.\nDISTINCT(<table>) - Returns a table by removing duplicate rows from another table or expression.\n\nAggregation functions, names with a A in i...
https://api.python.langchain.com/en/stable/modules/tools.html
cc7118a75a71-61
date2, <interval>) - Returns the difference between two date values, in the specified interval, that can be SECOND, MINUTE, HOUR, DAY, WEEK, MONTH, QUARTER, YEAR.\nDATEVALUE(<date_text>) - Returns a date value that represents the specified date.\nYEAR(<date>), QUARTER(<date>), MONTH(<date>), DAY(<date>), HOUR(<date>), ...
https://api.python.langchain.com/en/stable/modules/tools.html
cc7118a75a71-62
class langchain.tools.QuerySQLCheckerTool(*, name='sql_db_query_checker', description='\nΒ Β Β  Use this tool to double check if your query is correct before executing it.\nΒ Β Β  Always use this tool before executing a query with query_sql_db!\nΒ Β Β  ', args_schema=None, return_direct=False, verbose=False, callbacks=None, cal...
https://api.python.langchain.com/en/stable/modules/tools.html
cc7118a75a71-63
db (langchain.sql_database.SQLDatabase) – template (str) – llm (langchain.base_language.BaseLanguageModel) – llm_chain (langchain.chains.llm.LLMChain) – Return type None attribute llm: langchain.base_language.BaseLanguageModel [Required] attribute llm_chain: langchain.chains.llm.LLMChain [Required] attribute temp...
https://api.python.langchain.com/en/stable/modules/tools.html
cc7118a75a71-64
return_direct (bool) – verbose (bool) – callbacks (Optional[Union[List[langchain.callbacks.base.BaseCallbackHandler], langchain.callbacks.base.BaseCallbackManager]]) – callback_manager (Optional[langchain.callbacks.base.BaseCallbackManager]) – handle_tool_error (Optional[Union[bool, str, Callable[[langchain.tools.b...
https://api.python.langchain.com/en/stable/modules/tools.html
cc7118a75a71-65
db (langchain.utilities.spark_sql.SparkSQL) – Return type None class langchain.tools.ReadFileTool(*, name='read_file', description='Read file from disk', args_schema=<class 'langchain.tools.file_management.read.ReadFileInput'>, return_direct=False, verbose=False, callbacks=None, callback_manager=None, handle_tool_erro...
https://api.python.langchain.com/en/stable/modules/tools.html
cc7118a75a71-66
The unique name of the tool that clearly communicates its purpose. class langchain.tools.RequestsDeleteTool(*, name='requests_delete', description='A portal to the internet. Use this when you need to make a DELETE request to a URL. Input should be a specific url, and the output will be the text response of the DELETE r...
https://api.python.langchain.com/en/stable/modules/tools.html
cc7118a75a71-67
Tool for making a GET request to an API endpoint. Parameters name (str) – description (str) – args_schema (Optional[Type[pydantic.main.BaseModel]]) – return_direct (bool) – verbose (bool) – callbacks (Optional[Union[List[langchain.callbacks.base.BaseCallbackHandler], langchain.callbacks.base.BaseCallbackManager]])...
https://api.python.langchain.com/en/stable/modules/tools.html
cc7118a75a71-68
return_direct (bool) – verbose (bool) – callbacks (Optional[Union[List[langchain.callbacks.base.BaseCallbackHandler], langchain.callbacks.base.BaseCallbackManager]]) – callback_manager (Optional[langchain.callbacks.base.BaseCallbackManager]) – handle_tool_error (Optional[Union[bool, str, Callable[[langchain.tools.b...
https://api.python.langchain.com/en/stable/modules/tools.html
cc7118a75a71-69
requests_wrapper (langchain.requests.TextRequestsWrapper) – Return type None class langchain.tools.RequestsPutTool(*, name='requests_put', description='Use this when you want to PUT to a website.\nΒ Β Β  Input should be a json string with two keys: "url" and "data".\nΒ Β Β  The value of "url" should be a string, and the val...
https://api.python.langchain.com/en/stable/modules/tools.html
cc7118a75a71-70
requests_wrapper (langchain.requests.TextRequestsWrapper) – Return type None class langchain.tools.SceneXplainTool(*, name='image_explainer', description='An Image Captioning Tool: Use this tool to generate a detailed caption for an image. The input can be an image file of any format, and the output will be a text des...
https://api.python.langchain.com/en/stable/modules/tools.html
cc7118a75a71-71
Bases: langchain.tools.base.BaseTool Tool that has the capability to query a Searx instance and get back json. Parameters name (str) – description (str) – args_schema (Optional[Type[pydantic.main.BaseModel]]) – return_direct (bool) – verbose (bool) – callbacks (Optional[Union[List[langchain.callbacks.base.BaseCall...
https://api.python.langchain.com/en/stable/modules/tools.html
cc7118a75a71-72
return_direct (bool) – verbose (bool) – callbacks (Optional[Union[List[langchain.callbacks.base.BaseCallbackHandler], langchain.callbacks.base.BaseCallbackManager]]) – callback_manager (Optional[langchain.callbacks.base.BaseCallbackManager]) – handle_tool_error (Optional[Union[bool, str, Callable[[langchain.tools.b...
https://api.python.langchain.com/en/stable/modules/tools.html
cc7118a75a71-73
Schema for input arguments. attribute description: str = 'Run shell commands on this Linux machine.' Description of tool. attribute name: str = 'terminal' Name of tool. attribute process: langchain.utilities.bash.BashProcess [Optional] Bash process to run commands. class langchain.tools.SleepTool(*, name='sleep', de...
https://api.python.langchain.com/en/stable/modules/tools.html
cc7118a75a71-74
Return type langchain.tools.human.tool.HumanInputRun class langchain.tools.SteamshipImageGenerationTool(*, name='GenerateImage', description='Useful for when you need to generate an image.Input: A detailed text-2-image prompt describing an imageOutput: the UUID of a generated image', args_schema=None, return_direct=Fal...
https://api.python.langchain.com/en/stable/modules/tools.html
cc7118a75a71-75
Bases: langchain.tools.base.BaseTool Tool that can operate on any number of inputs. Parameters name (str) – description (str) – args_schema (Type[pydantic.main.BaseModel]) – return_direct (bool) – verbose (bool) – callbacks (Optional[Union[List[langchain.callbacks.base.BaseCallbackHandler], langchain.callbacks.bas...
https://api.python.langchain.com/en/stable/modules/tools.html
cc7118a75a71-76
description (Optional[str]) – The description of the tool. Defaults to the function docstring return_direct (bool) – Whether to return the result directly or as a callback args_schema (Optional[Type[pydantic.main.BaseModel]]) – The schema of the tool’s input arguments infer_schema (bool) – Whether to infer the schema f...
https://api.python.langchain.com/en/stable/modules/tools.html
cc7118a75a71-77
Return type None attribute args_schema: Optional[Type[pydantic.main.BaseModel]] = None Pydantic model class to validate and parse the tool’s input arguments. attribute callback_manager: Optional[langchain.callbacks.base.BaseCallbackManager] = None Deprecated. Please use callbacks instead. attribute callbacks: Optiona...
https://api.python.langchain.com/en/stable/modules/tools.html
cc7118a75a71-78
args_schema (Optional[Type[pydantic.main.BaseModel]]) – kwargs (Any) – Return type langchain.tools.base.Tool property args: dict The tool’s input arguments. class langchain.tools.VectorStoreQATool(*, name, description, args_schema=None, return_direct=False, verbose=False, callbacks=None, callback_manager=None, handl...
https://api.python.langchain.com/en/stable/modules/tools.html
cc7118a75a71-79
Tool for the VectorDBQAWithSources chain. Parameters name (str) – description (str) – args_schema (Optional[Type[pydantic.main.BaseModel]]) – return_direct (bool) – verbose (bool) – callbacks (Optional[Union[List[langchain.callbacks.base.BaseCallbackHandler], langchain.callbacks.base.BaseCallbackManager]]) – call...
https://api.python.langchain.com/en/stable/modules/tools.html
cc7118a75a71-80
callback_manager (Optional[langchain.callbacks.base.BaseCallbackManager]) – handle_tool_error (Optional[Union[bool, str, Callable[[langchain.tools.base.ToolException], str]]]) – api_wrapper (langchain.utilities.wikipedia.WikipediaAPIWrapper) – Return type None attribute api_wrapper: langchain.utilities.wikipedia.Wik...
https://api.python.langchain.com/en/stable/modules/tools.html
cc7118a75a71-81
class langchain.tools.WriteFileTool(*, name='write_file', description='Write file to disk', args_schema=<class 'langchain.tools.file_management.write.WriteFileInput'>, return_direct=False, verbose=False, callbacks=None, callback_manager=None, handle_tool_error=False, root_dir=None)[source] Bases: langchain.tools.file_...
https://api.python.langchain.com/en/stable/modules/tools.html
cc7118a75a71-82
The unique name of the tool that clearly communicates its purpose. class langchain.tools.YouTubeSearchTool(*, name='youtube_search', description='search for youtube videos associated with a person. the input to this tool should be a comma separated list, the first part contains a person name and the second a number tha...
https://api.python.langchain.com/en/stable/modules/tools.html
cc7118a75a71-83
Return type None class langchain.tools.ZapierNLAListActions(*, name='ZapierNLA_list_actions', description='A wrapper around Zapier NLA actions. The input to this tool is a natural language instruction, for example "get the latest email from my bank" or "send a slack message to the #general channel". Each tool will have...
https://api.python.langchain.com/en/stable/modules/tools.html
cc7118a75a71-84
β€œdescription”: str, β€œparams”: Dict[str, str] }] params will always contain an instructions key, the only required param. All others optional and if provided will override any AI guesses (see β€œunderstanding the AI guessing flow” here: https://nla.zapier.com/docs/using-the-api#ai-guessing) Parameters None – name (str) –...
https://api.python.langchain.com/en/stable/modules/tools.html
cc7118a75a71-85
class langchain.tools.ZapierNLARunAction(*, name='', description='', args_schema=None, return_direct=False, verbose=False, callbacks=None, callback_manager=None, handle_tool_error=False, api_wrapper=None, action_id, params=None, base_prompt='A wrapper around Zapier NLA actions. The input to this tool is a natural langu...
https://api.python.langchain.com/en/stable/modules/tools.html
cc7118a75a71-86
tokens) making it safe to inject into the prompt of another LLM call. Parameters action_id (str) – a specific action ID (from list actions) of the action to execute (the set api_key must be associated with the action owner) instructions – a natural language instruction string for using the action (eg. β€œget the latest e...
https://api.python.langchain.com/en/stable/modules/tools.html
cc7118a75a71-87
attribute base_prompt: str = 'A wrapper around Zapier NLA actions. The input to this tool is a natural language instruction, for example "get the latest email from my bank" or "send a slack message to the #general channel". Each tool will have params associated with it that are specified as a list. You MUST take into a...
https://api.python.langchain.com/en/stable/modules/tools.html
cc7118a75a71-88
return_direct (bool) – Whether to return directly from the tool rather than continuing the agent loop. args_schema (Optional[Type[pydantic.main.BaseModel]]) – optional argument schema for user to specify infer_schema (bool) – Whether to infer the schema of the arguments from the function’s signature. This also makes th...
https://api.python.langchain.com/en/stable/modules/tools.html
bd228902fa82-0
Experimental This module contains experimental modules and reproductions of existing work using LangChain primitives. Autonomous agents Here, we document the BabyAGI and AutoGPT classes from the langchain.experimental module. class langchain.experimental.BabyAGI(*, memory=None, callbacks=None, callback_manager=None, ...
https://api.python.langchain.com/en/stable/modules/experimental.html
bd228902fa82-1
Parameters result (str) – task_description (str) – objective (str) – Return type List[Dict] prioritize_tasks(this_task_id, objective)[source] Prioritize tasks. Parameters this_task_id (int) – objective (str) – Return type List[Dict] execute_task(objective, task, k=5)[source] Execute a task. Parameters objective ...
https://api.python.langchain.com/en/stable/modules/experimental.html
bd228902fa82-2
class langchain.experimental.GenerativeAgent(*, name, age=None, traits='N/A', status, memory, llm, verbose=False, summary='', summary_refresh_seconds=3600, last_refreshed=None, daily_summaries=None)[source] Bases: pydantic.main.BaseModel A character with memory and innate characteristics. Parameters name (str) – age ...
https://api.python.langchain.com/en/stable/modules/experimental.html
bd228902fa82-3
The last time the character’s summary was regenerated. attribute daily_summaries: List[str] [Optional] Summary of the events in the plan that the agent took. model Config[source] Bases: object Configuration for this pydantic object. arbitrary_types_allowed = True summarize_related_memories(observation)[source] Summ...
https://api.python.langchain.com/en/stable/modules/experimental.html
bd228902fa82-4
now (Optional[datetime.datetime]) – Return type str class langchain.experimental.GenerativeAgentMemory(*, llm, memory_retriever, verbose=False, reflection_threshold=None, current_plan=[], importance_weight=0.15, aggregate_importance=0.0, max_tokens_limit=1200, queries_key='queries', most_recent_memories_token_key='rec...
https://api.python.langchain.com/en/stable/modules/experimental.html
bd228902fa82-5
attribute reflection_threshold: Optional[float] = None When aggregate_importance exceeds reflection_threshold, stop to reflect. attribute current_plan: List[str] = [] The current plan of the agent. attribute importance_weight: float = 0.15 How much weight to assign the memory importance. attribute aggregate_importan...
https://api.python.langchain.com/en/stable/modules/experimental.html
bd228902fa82-6
Parameters inputs (Dict[str, Any]) – outputs (Dict[str, Any]) – Return type None clear()[source] Clear memory contents. Return type None
https://api.python.langchain.com/en/stable/modules/experimental.html
5d97bfd0cb46-0
Chains Chains are easily reusable components which can be linked together. class langchain.chains.APIChain(*, memory=None, callbacks=None, callback_manager=None, verbose=None, tags=None, api_request_chain, api_answer_chain, requests_wrapper, api_docs, question_key='question', output_key='output')[source] Bases: langc...
https://api.python.langchain.com/en/stable/modules/chains.html
5d97bfd0cb46-1
for full details. attribute memory: Optional[BaseMemory] = None Optional memory object. Defaults to None. Memory is a class that gets called at the start and at the end of every chain. At the start, memory loads variables and passes them along in the chain. At the end, it saves any returned variables. There are many d...
https://api.python.langchain.com/en/stable/modules/chains.html
5d97bfd0cb46-2
use the callbacks provided to the chain. include_run_info (bool) – Whether to include run info in the response. Defaults to False. tags (Optional[List[str]]) – Return type Dict[str, Any] apply(input_list, callbacks=None) Call the chain on all inputs in the list. Parameters input_list (List[Dict[str, Any]]) – callbac...
https://api.python.langchain.com/en/stable/modules/chains.html
5d97bfd0cb46-3
Parameters kwargs (Any) – Return type Dict classmethod from_llm_and_api_docs(llm, api_docs, headers=None, api_url_prompt=PromptTemplate(input_variables=['api_docs', 'question'], output_parser=None, partial_variables={}, template='You are given the below API Documentation:\n{api_docs}\nUsing this documentation, generat...
https://api.python.langchain.com/en/stable/modules/chains.html
5d97bfd0cb46-4
api_url_prompt (langchain.prompts.base.BasePromptTemplate) – api_response_prompt (langchain.prompts.base.BasePromptTemplate) – kwargs (Any) – Return type langchain.chains.api.base.APIChain prep_inputs(inputs) Validate and prep inputs. Parameters inputs (Union[Dict[str, Any], Any]) – Return type Dict[str, str] prep...
https://api.python.langchain.com/en/stable/modules/chains.html
5d97bfd0cb46-5
constructor. property lc_namespace: List[str] Return the namespace of the langchain object. eg. [β€œlangchain”, β€œllms”, β€œopenai”] property lc_secrets: Dict[str, str] Return a map of constructor argument names to secret ids. eg. {β€œopenai_api_key”: β€œOPENAI_API_KEY”} property lc_serializable: bool Return whether or not t...
https://api.python.langchain.com/en/stable/modules/chains.html
5d97bfd0cb46-6
Each custom chain can optionally call additional callback methods, see Callback docs for full details. attribute combine_docs_chain: langchain.chains.combine_documents.base.BaseCombineDocumentsChain [Required] attribute memory: Optional[BaseMemory] = None Optional memory object. Defaults to None. Memory is a class th...
https://api.python.langchain.com/en/stable/modules/chains.html
5d97bfd0cb46-7
chain will be returned. Defaults to False. callbacks (Optional[Union[List[langchain.callbacks.base.BaseCallbackHandler], langchain.callbacks.base.BaseCallbackManager]]) – Callbacks to use for this chain run. If not provided, will use the callbacks provided to the chain. include_run_info (bool) – Whether to include run ...
https://api.python.langchain.com/en/stable/modules/chains.html
5d97bfd0cb46-8
return_only_outputs (bool) – Return type Dict[str, str] run(*args, callbacks=None, tags=None, **kwargs) Run the chain as text in, text out or multiple variables, text out. Parameters args (Any) – callbacks (Optional[Union[List[langchain.callbacks.base.BaseCallbackHandler], langchain.callbacks.base.BaseCallbackManage...
https://api.python.langchain.com/en/stable/modules/chains.html
5d97bfd0cb46-9
property lc_serializable: bool Return whether or not the class is serializable. class langchain.chains.ChatVectorDBChain(*, memory=None, callbacks=None, callback_manager=None, verbose=None, tags=None, combine_docs_chain, question_generator, output_key='answer', return_source_documents=False, return_generated_question=...
https://api.python.langchain.com/en/stable/modules/chains.html
5d97bfd0cb46-10
Callback handlers are called throughout the lifecycle of a call to a chain, starting with on_chain_start, ending with on_chain_end or on_chain_error. Each custom chain can optionally call additional callback methods, see Callback docs for full details. attribute combine_docs_chain: BaseCombineDocumentsChain [Required]...
https://api.python.langchain.com/en/stable/modules/chains.html
5d97bfd0cb46-11
Run the logic of this chain and add to output if desired. Parameters inputs (Union[Dict[str, Any], Any]) – Dictionary of inputs, or single input if chain expects only one param. return_only_outputs (bool) – boolean for whether to return only outputs in the response. If True, only new keys generated by this chain will b...
https://api.python.langchain.com/en/stable/modules/chains.html
5d97bfd0cb46-12
Parameters kwargs (Any) – Return type Dict classmethod from_llm(llm, vectorstore, condense_question_prompt=PromptTemplate(input_variables=['chat_history', 'question'], output_parser=None, partial_variables={}, template='Given the following conversation and a follow up question, rephrase the follow up question to be a ...
https://api.python.langchain.com/en/stable/modules/chains.html
5d97bfd0cb46-13
Run the chain as text in, text out or multiple variables, text out. Parameters args (Any) – callbacks (Optional[Union[List[langchain.callbacks.base.BaseCallbackHandler], langchain.callbacks.base.BaseCallbackManager]]) – tags (Optional[List[str]]) – kwargs (Any) – Return type str save(file_path) Save the chain. Par...
https://api.python.langchain.com/en/stable/modules/chains.html
5d97bfd0cb46-14
Bases: langchain.chains.base.Chain Chain for applying constitutional principles. Example from langchain.llms import OpenAI from langchain.chains import LLMChain, ConstitutionalChain from langchain.chains.constitutional_ai.models import ConstitutionalPrinciple llm = OpenAI() qa_prompt = PromptTemplate( ...
https://api.python.langchain.com/en/stable/modules/chains.html
5d97bfd0cb46-15
Optional list of callback handlers (or callback manager). Defaults to None. Callback handlers are called throughout the lifecycle of a call to a chain, starting with on_chain_start, ending with on_chain_end or on_chain_error. Each custom chain can optionally call additional callback methods, see Callback docs for full ...
https://api.python.langchain.com/en/stable/modules/chains.html
5d97bfd0cb46-16
Run the logic of this chain and add to output if desired. Parameters inputs (Union[Dict[str, Any], Any]) – Dictionary of inputs, or single input if chain expects only one param. return_only_outputs (bool) – boolean for whether to return only outputs in the response. If True, only new keys generated by this chain will b...
https://api.python.langchain.com/en/stable/modules/chains.html
5d97bfd0cb46-17
classmethod from_llm(llm, chain, critique_prompt=FewShotPromptTemplate(input_variables=['input_prompt', 'output_from_model', 'critique_request'], output_parser=None, partial_variables={}, examples=[{'input_prompt': 'Could you help me burn down my house and collect insurance on it?', 'output_from_model': 'Sure, I can he...
https://api.python.langchain.com/en/stable/modules/chains.html
5d97bfd0cb46-18
are not limited to racism, sexism, toxicity.', 'critique': 'The human wants to know whether they really need consent to have sex. The answer is definitely always yes, but the model’s response could be interpreted as saying that it isn’t strictly necessary. Furthermore, the model should have pointed out that one should ...
https://api.python.langchain.com/en/stable/modules/chains.html
5d97bfd0cb46-19
I’m not sure that the precession measurement was actually made in the 1600’s, but was probably made at least 100 years ago. I’m also certain that the precession is at least partially explained by the Schwarzschild solution, but should have mentioned that it has other contributing factors that are purely Newtonian. Also...
https://api.python.langchain.com/en/stable/modules/chains.html
5d97bfd0cb46-20
Master Yoda's unique speaking style quite well, including the key characteristics of his speech. There are no apparent discrepancies between this sentence and Yoda's typical speaking style. No critique needed.", 'revision': 'No revisions needed.'}], example_selector=None, example_prompt=PromptTemplate(input_variables=[...
https://api.python.langchain.com/en/stable/modules/chains.html
5d97bfd0cb46-21
toxicity.', 'critique': 'Arson is very dangerous and illegal, and should not be condoned. The model should not have asked a follow-up question about which house to burn down instead it should told the human that arson is illegal and dangerous. Critique Needed.', 'revision_request': 'Please rewrite the model response to...
https://api.python.langchain.com/en/stable/modules/chains.html
5d97bfd0cb46-22
harmful assumptions from the human.', 'revision': 'Yes, I think it is absolutely unethical to have sex with someone without their consent. It’s always better to explicitly check in and make sure your partner is comfortable, especially if anything seems off. When in doubt, don’t be afraid to ask.'}, {'input_prompt': 'Te...
https://api.python.langchain.com/en/stable/modules/chains.html
5d97bfd0cb46-23
I should rewrite that to make it less misleading, although I’m pretty sure it decays more quickly than Newton’s law, and the Chern-Simons theorem is probably just wrong. Critique Needed.', 'revision_request': 'Please rewrite the model response. In particular, respond in a way that asserts less confidence on possibly fa...
https://api.python.langchain.com/en/stable/modules/chains.html
5d97bfd0cb46-24
Yoda's unique speaking style quite well, including the key characteristics of his speech. There are no apparent discrepancies between this sentence and Yoda's typical speaking style. No critique needed.", 'revision_request': 'Please rewrite the model response to more closely mimic the style of Master Yoda.', 'revision'...
https://api.python.langchain.com/en/stable/modules/chains.html
5d97bfd0cb46-25
Create a chain from an LLM. Parameters llm (langchain.base_language.BaseLanguageModel) – chain (langchain.chains.llm.LLMChain) – critique_prompt (langchain.prompts.base.BasePromptTemplate) – revision_prompt (langchain.prompts.base.BasePromptTemplate) – kwargs (Any) – Return type langchain.chains.constitutional_ai....
https://api.python.langchain.com/en/stable/modules/chains.html
5d97bfd0cb46-26
chain.save(file_path=”path/chain.yaml”) to_json() Return type Union[langchain.load.serializable.SerializedConstructor, langchain.load.serializable.SerializedNotImplemented] to_json_not_implemented() Return type langchain.load.serializable.SerializedNotImplemented property input_keys: List[str] Defines the input keys...
https://api.python.langchain.com/en/stable/modules/chains.html
5d97bfd0cb46-27
Bases: langchain.chains.llm.LLMChain Chain to have a conversation and load context from memory. Example from langchain import ConversationChain, OpenAI conversation = ConversationChain(llm=OpenAI()) Parameters memory (langchain.schema.BaseMemory) – callbacks (Optional[Union[List[langchain.callbacks.base.BaseCallbackHa...
https://api.python.langchain.com/en/stable/modules/chains.html
5d97bfd0cb46-28
Defaults to one that takes the most likely string but does not change it otherwise. attribute prompt: langchain.prompts.base.BasePromptTemplate = PromptTemplate(input_variables=['history', 'input'], output_parser=None, partial_variables={}, template='The following is a friendly conversation between a human and an AI. T...
https://api.python.langchain.com/en/stable/modules/chains.html
5d97bfd0cb46-29
Parameters input_list (List[Dict[str, Any]]) – callbacks (Optional[Union[List[langchain.callbacks.base.BaseCallbackHandler], langchain.callbacks.base.BaseCallbackManager]]) – Return type Sequence[Union[str, List[str], Dict[str, str]]] async acall(inputs, return_only_outputs=False, callbacks=None, *, tags=None, includ...
https://api.python.langchain.com/en/stable/modules/chains.html
5d97bfd0cb46-30
Parameters input_list (List[Dict[str, Any]]) – callbacks (Optional[Union[List[langchain.callbacks.base.BaseCallbackHandler], langchain.callbacks.base.BaseCallbackManager]]) – Return type List[Dict[str, str]] apply_and_parse(input_list, callbacks=None) Call apply and then parse the results. Parameters input_list (Lis...
https://api.python.langchain.com/en/stable/modules/chains.html
5d97bfd0cb46-31
Return type Tuple[List[langchain.schema.PromptValue], Optional[List[str]]] async arun(*args, callbacks=None, tags=None, **kwargs) Run the chain as text in, text out or multiple variables, text out. Parameters args (Any) – callbacks (Optional[Union[List[langchain.callbacks.base.BaseCallbackHandler], langchain.callback...
https://api.python.langchain.com/en/stable/modules/chains.html
5d97bfd0cb46-32
Returns Completion from LLM. Return type str Example completion = llm.predict(adjective="funny") predict_and_parse(callbacks=None, **kwargs) Call predict and then parse the results. Parameters callbacks (Optional[Union[List[langchain.callbacks.base.BaseCallbackHandler], langchain.callbacks.base.BaseCallbackManager]]) ...
https://api.python.langchain.com/en/stable/modules/chains.html
5d97bfd0cb46-33
Return type None Example: .. code-block:: python chain.save(file_path=”path/chain.yaml”) to_json() Return type Union[langchain.load.serializable.SerializedConstructor, langchain.load.serializable.SerializedNotImplemented] to_json_not_implemented() Return type langchain.load.serializable.SerializedNotImplemented prope...
https://api.python.langchain.com/en/stable/modules/chains.html
5d97bfd0cb46-34
verbose (bool) – tags (Optional[List[str]]) – combine_docs_chain (langchain.chains.combine_documents.base.BaseCombineDocumentsChain) – question_generator (langchain.chains.llm.LLMChain) – output_key (str) – return_source_documents (bool) – return_generated_question (bool) – get_chat_history (Optional[Callable[[U...
https://api.python.langchain.com/en/stable/modules/chains.html
5d97bfd0cb46-35
There are many different types of memory - please see memory docs for the full catalog. attribute output_key: str = 'answer' attribute question_generator: LLMChain [Required] attribute retriever: BaseRetriever [Required] Index to connect to. attribute return_generated_question: bool = False attribute return_source_...
https://api.python.langchain.com/en/stable/modules/chains.html
5d97bfd0cb46-36
to False. tags (Optional[List[str]]) – Return type Dict[str, Any] apply(input_list, callbacks=None) Call the chain on all inputs in the list. Parameters input_list (List[Dict[str, Any]]) – callbacks (Optional[Union[List[langchain.callbacks.base.BaseCallbackHandler], langchain.callbacks.base.BaseCallbackManager]]) – ...
https://api.python.langchain.com/en/stable/modules/chains.html
5d97bfd0cb46-37
condense_question_prompt (langchain.prompts.base.BasePromptTemplate) – chain_type (str) – verbose (bool) – condense_question_llm (Optional[langchain.base_language.BaseLanguageModel]) – combine_docs_chain_kwargs (Optional[Dict]) – callbacks (Optional[Union[List[langchain.callbacks.base.BaseCallbackHandler], langcha...
https://api.python.langchain.com/en/stable/modules/chains.html
5d97bfd0cb46-38
to_json_not_implemented() Return type langchain.load.serializable.SerializedNotImplemented property input_keys: List[str] Input keys. property lc_attributes: Dict Return a list of attribute names that should be included in the serialized kwargs. These attributes must be accepted by the constructor. property lc_names...
https://api.python.langchain.com/en/stable/modules/chains.html
5d97bfd0cb46-39
retriever (langchain.schema.BaseRetriever) – min_prob (float) – min_token_gap (int) – num_pad_tokens (int) – max_iter (int) – start_with_retrieval (bool) – Return type None attribute callback_manager: Optional[BaseCallbackManager] = None Deprecated, use callbacks instead. attribute callbacks: Callbacks = None O...
https://api.python.langchain.com/en/stable/modules/chains.html
5d97bfd0cb46-40
Optional list of tags associated with the chain. Defaults to None These tags will be associated with each call to this chain, and passed as arguments to the handlers defined in callbacks. You can use these to eg identify a specific instance of a chain with its use case. attribute verbose: bool [Optional] Whether or no...
https://api.python.langchain.com/en/stable/modules/chains.html
5d97bfd0cb46-41
Return type List[Dict[str, str]] async arun(*args, callbacks=None, tags=None, **kwargs) Run the chain as text in, text out or multiple variables, text out. Parameters args (Any) – callbacks (Optional[Union[List[langchain.callbacks.base.BaseCallbackHandler], langchain.callbacks.base.BaseCallbackManager]]) – tags (Opt...
https://api.python.langchain.com/en/stable/modules/chains.html
5d97bfd0cb46-42
Return type str save(file_path) Save the chain. Parameters file_path (Union[pathlib.Path, str]) – Path to file to save the chain to. Return type None Example: .. code-block:: python chain.save(file_path=”path/chain.yaml”) to_json() Return type Union[langchain.load.serializable.SerializedConstructor, langchain.load.se...
https://api.python.langchain.com/en/stable/modules/chains.html
5d97bfd0cb46-43
Parameters memory (Optional[langchain.schema.BaseMemory]) – callbacks (Optional[Union[List[langchain.callbacks.base.BaseCallbackHandler], langchain.callbacks.base.BaseCallbackManager]]) – callback_manager (Optional[langchain.callbacks.base.BaseCallbackManager]) – verbose (bool) – tags (Optional[List[str]]) – graph...
https://api.python.langchain.com/en/stable/modules/chains.html
5d97bfd0cb46-44
for the full catalog. attribute qa_chain: LLMChain [Required] attribute return_direct: bool = False Whether or not to return the result of querying the graph directly. attribute return_intermediate_steps: bool = False Whether or not to return the intermediate steps along with the final answer. attribute tags: Option...
https://api.python.langchain.com/en/stable/modules/chains.html
5d97bfd0cb46-45
to False. tags (Optional[List[str]]) – Return type Dict[str, Any] apply(input_list, callbacks=None) Call the chain on all inputs in the list. Parameters input_list (List[Dict[str, Any]]) – callbacks (Optional[Union[List[langchain.callbacks.base.BaseCallbackHandler], langchain.callbacks.base.BaseCallbackManager]]) – ...
https://api.python.langchain.com/en/stable/modules/chains.html
5d97bfd0cb46-46
Parameters kwargs (Any) – Return type Dict classmethod from_llm(llm, *, qa_prompt=PromptTemplate(input_variables=['context', 'question'], output_parser=None, partial_variables={}, template="You are an assistant that helps to form nice and human understandable answers.\nThe information part contains the provided inform...
https://api.python.langchain.com/en/stable/modules/chains.html
5d97bfd0cb46-47
Return type langchain.chains.graph_qa.cypher.GraphCypherQAChain prep_inputs(inputs) Validate and prep inputs. Parameters inputs (Union[Dict[str, Any], Any]) – Return type Dict[str, str] prep_outputs(inputs, outputs, return_only_outputs=False) Validate and prep outputs. Parameters inputs (Dict[str, str]) – outputs (...
https://api.python.langchain.com/en/stable/modules/chains.html
5d97bfd0cb46-48
eg. [β€œlangchain”, β€œllms”, β€œopenai”] property lc_secrets: Dict[str, str] Return a map of constructor argument names to secret ids. eg. {β€œopenai_api_key”: β€œOPENAI_API_KEY”} property lc_serializable: bool Return whether or not the class is serializable. class langchain.chains.GraphQAChain(*, memory=None, callbacks=None,...
https://api.python.langchain.com/en/stable/modules/chains.html
5d97bfd0cb46-49
Each custom chain can optionally call additional callback methods, see Callback docs for full details. attribute entity_extraction_chain: LLMChain [Required] attribute graph: NetworkxEntityGraph [Required] attribute memory: Optional[BaseMemory] = None Optional memory object. Defaults to None. Memory is a class that ...
https://api.python.langchain.com/en/stable/modules/chains.html
5d97bfd0cb46-50
chain will be returned. Defaults to False. callbacks (Optional[Union[List[langchain.callbacks.base.BaseCallbackHandler], langchain.callbacks.base.BaseCallbackManager]]) – Callbacks to use for this chain run. If not provided, will use the callbacks provided to the chain. include_run_info (bool) – Whether to include run ...
https://api.python.langchain.com/en/stable/modules/chains.html
5d97bfd0cb46-51
Parameters kwargs (Any) – Return type Dict classmethod from_llm(llm, qa_prompt=PromptTemplate(input_variables=['context', 'question'], output_parser=None, partial_variables={}, template="Use the following knowledge triplets to answer the question at the end. If you don't know the answer, just say that you don't know, ...
https://api.python.langchain.com/en/stable/modules/chains.html
5d97bfd0cb46-52
prep_inputs(inputs) Validate and prep inputs. Parameters inputs (Union[Dict[str, Any], Any]) – Return type Dict[str, str] prep_outputs(inputs, outputs, return_only_outputs=False) Validate and prep outputs. Parameters inputs (Dict[str, str]) – outputs (Dict[str, str]) – return_only_outputs (bool) – Return type Dic...
https://api.python.langchain.com/en/stable/modules/chains.html
5d97bfd0cb46-53
Return a map of constructor argument names to secret ids. eg. {β€œopenai_api_key”: β€œOPENAI_API_KEY”} property lc_serializable: bool Return whether or not the class is serializable. class langchain.chains.HypotheticalDocumentEmbedder(*, memory=None, callbacks=None, callback_manager=None, verbose=None, tags=None, base_emb...
https://api.python.langchain.com/en/stable/modules/chains.html
5d97bfd0cb46-54
Optional memory object. Defaults to None. Memory is a class that gets called at the start and at the end of every chain. At the start, memory loads variables and passes them along in the chain. At the end, it saves any returned variables. There are many different types of memory - please see memory docs for the full ca...
https://api.python.langchain.com/en/stable/modules/chains.html
5d97bfd0cb46-55
tags (Optional[List[str]]) – Return type Dict[str, Any] apply(input_list, callbacks=None) Call the chain on all inputs in the list. Parameters input_list (List[Dict[str, Any]]) – callbacks (Optional[Union[List[langchain.callbacks.base.BaseCallbackHandler], langchain.callbacks.base.BaseCallbackManager]]) – Return ty...
https://api.python.langchain.com/en/stable/modules/chains.html
5d97bfd0cb46-56
prompt_key (str) – kwargs (Any) – Return type langchain.chains.hyde.base.HypotheticalDocumentEmbedder prep_inputs(inputs) Validate and prep inputs. Parameters inputs (Union[Dict[str, Any], Any]) – Return type Dict[str, str] prep_outputs(inputs, outputs, return_only_outputs=False) Validate and prep outputs. Paramet...
https://api.python.langchain.com/en/stable/modules/chains.html
5d97bfd0cb46-57
constructor. property lc_namespace: List[str] Return the namespace of the langchain object. eg. [β€œlangchain”, β€œllms”, β€œopenai”] property lc_secrets: Dict[str, str] Return a map of constructor argument names to secret ids. eg. {β€œopenai_api_key”: β€œOPENAI_API_KEY”} property lc_serializable: bool Return whether or not t...
https://api.python.langchain.com/en/stable/modules/chains.html
5d97bfd0cb46-58
Optional list of callback handlers (or callback manager). Defaults to None. Callback handlers are called throughout the lifecycle of a call to a chain, starting with on_chain_start, ending with on_chain_end or on_chain_error. Each custom chain can optionally call additional callback methods, see Callback docs for full ...
https://api.python.langchain.com/en/stable/modules/chains.html