From b7aeb68da99b562b046f14af1af984cdc0f1eb30 Mon Sep 17 00:00:00 2001 From: Matteo Rosati Date: Wed, 22 Apr 2026 22:27:55 +0200 Subject: [PATCH] update description --- chromy/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chromy/cli.py b/chromy/cli.py index 308c5f5..801c0e0 100644 --- a/chromy/cli.py +++ b/chromy/cli.py @@ -15,7 +15,7 @@ from chromy.handlers.delete_collection import ( from chromy.handlers.list_collections import handle_list_collections from chromy.handlers.query import handle_query -app = typer.Typer(help="Inspect local Chroma collections.") +app = typer.Typer(help="Chromy, local RAG CLI based on Chromadb.") ExitCodeHandler = Callable[[], int]