Add AGENTS.md documentation for AI agent guidance

This commit is contained in:
2026-02-23 09:59:52 -05:00
commit 2e2b817435
21 changed files with 2513 additions and 0 deletions

5
app/routers/__init__.py Normal file
View File

@@ -0,0 +1,5 @@
"""API routers for watsonx-openai-proxy."""
from app.routers import chat, completions, embeddings, models
__all__ = ["chat", "completions", "embeddings", "models"]