From 2777e63b952f9a6a9672943a57872007a776850a Mon Sep 17 00:00:00 2001 From: kracekumar Date: Mon, 24 Feb 2025 00:00:09 +0000 Subject: [PATCH] Enhance comment --- litecli/packages/special/llm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litecli/packages/special/llm.py b/litecli/packages/special/llm.py index c7e4aa8..b8d9aaf 100644 --- a/litecli/packages/special/llm.py +++ b/litecli/packages/special/llm.py @@ -273,7 +273,7 @@ def handle_llm(text, cur) -> Tuple[str, Optional[str], float]: try: ensure_litecli_template() # Measure end to end llm command invocation. - # This measures the internal DB command to pull the schema + # This measures the internal DB command to pull the schema and llm command start = time.perf_counter() context, sql = sql_using_llm(cur=cur, question=arg, verbose=verbose) end = time.perf_counter()