feat: revue de code, doc CODE_REVIEW, forfaits 2026, traduction LLM, providers avec modèle

Made-with: Cursor
This commit is contained in:
Sepehr Ramezani
2026-03-07 11:42:58 +01:00
parent 3d37ce4582
commit 473b3e26c7
181 changed files with 30617 additions and 7170 deletions

View File

@@ -27,6 +27,9 @@ from .validation import (
from .security import (
SecurityHeadersMiddleware,
RequestLoggingMiddleware,
)
from .error_handler import (
ErrorHandlingMiddleware,
)
@@ -37,7 +40,25 @@ from .cleanup import (
create_cleanup_manager,
)
from .api_key_auth import (
APIKeyError,
get_user_from_api_key,
get_authenticated_user,
get_authenticated_user_optional,
get_current_user_optional,
require_authenticated_user,
require_api_key,
)
__all__ = [
# API Key Authentication
"APIKeyError",
"get_user_from_api_key",
"get_authenticated_user",
"get_authenticated_user_optional",
"get_current_user_optional",
"require_authenticated_user",
"require_api_key",
# Rate limiting
"RateLimitConfig",
"RateLimitManager",