From 1da05f685a5e7160db631386b84637cb13ac9d5c Mon Sep 17 00:00:00 2001 From: Matteo Rosati Date: Sun, 10 May 2026 16:31:28 +0200 Subject: [PATCH] docstrings convention --- AGENTS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/AGENTS.md b/AGENTS.md index a62f1cf..241a702 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -21,6 +21,7 @@ ## Coding Style & Naming Conventions Use Python 3.12+ syntax, type hints, and `from __future__ import annotations`. Follow the current style: 4-space indentation, snake_case functions and modules, PascalCase classes, and Typer command functions in `chromy/cli.py` that delegate to small handler functions. Keep handlers focused on CLI orchestration and user-facing output; place reusable database, chunking, embedding, query, and formatting logic in shared modules. Prefer `rich` output for user-facing CLI messages to stay consistent with the existing commands. +Docstrings follow Google coding style conventions and are always added to any function. ## Testing Guidelines