From b3e9c1764b60883c55096c3219600295cabcb15d Mon Sep 17 00:00:00 2001 From: busaud Date: Sun, 5 May 2024 17:33:04 +0300 Subject: [PATCH] docstring typo (#13273) Maybe this was copied from chain of thought implementation. --- .../llama_index/packs/tables/chain_of_table/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llama-index-packs/llama-index-packs-tables/llama_index/packs/tables/chain_of_table/base.py b/llama-index-packs/llama-index-packs-tables/llama_index/packs/tables/chain_of_table/base.py index 8889c6d4637f8..98524e1b021df 100644 --- a/llama-index-packs/llama-index-packs-tables/llama_index/packs/tables/chain_of_table/base.py +++ b/llama-index-packs/llama-index-packs-tables/llama_index/packs/tables/chain_of_table/base.py @@ -647,7 +647,7 @@ def __init__( super().__init__(table=table, llm=llm, verbose=verbose, **kwargs) def custom_query(self, query_str: str) -> Response: - """Run chain of thought query engine.""" + """Run chain of table query engine.""" op_chain = [] dynamic_plan_parser = FnComponent(fn=_dynamic_plan_parser)