From 21552e10d9bf4bd3bbc881550661d8d9e3a62b6f Mon Sep 17 00:00:00 2001 From: Bedram Tamang Date: Thu, 23 Jul 2026 15:00:24 -0700 Subject: [PATCH] docs(ai): add active-development caution to AI package entry point Add a module-level docstring warning to the AI package's __init__ noting the package is under active development, that APIs may change without notice, and that it should be used with caution in production. --- fastapi_startkit/src/fastapi_startkit/ai/__init__.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/fastapi_startkit/src/fastapi_startkit/ai/__init__.py b/fastapi_startkit/src/fastapi_startkit/ai/__init__.py index dbf4c85e..e0bfc154 100644 --- a/fastapi_startkit/src/fastapi_startkit/ai/__init__.py +++ b/fastapi_startkit/src/fastapi_startkit/ai/__init__.py @@ -1,3 +1,12 @@ +"""FastAPI Startkit AI package. + +.. warning:: + + The AI package is under active development. APIs may change without notice + as we experiment with the best integration patterns. Use with caution in + production. +""" + from .agent import Agent from .pipeline import Middleware from .audio import Audio, AudioResponse