From 607c5ac8f44a612979742fb6a0f5bbd00750785c Mon Sep 17 00:00:00 2001 From: Andrey Smakotin Date: Thu, 15 Jan 2026 12:19:44 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9E=D0=B1=D0=BD=D0=BE=D0=B2=D0=BB=D0=B5?= =?UTF-8?q?=D0=BD=D0=B8=D0=B5=20=D1=81=D1=82=D1=80=D1=83=D0=BA=D1=82=D1=83?= =?UTF-8?q?=D1=80=D1=8B=20=D0=BC=D0=BE=D0=B4=D0=B5=D0=BB=D0=B5=D0=B9=20?= =?UTF-8?q?=D0=B8=D0=BD=D1=82=D0=B5=D0=B3=D1=80=D0=B0=D1=86=D0=B8=D0=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- myproject/integrations/models/__init__.py | 4 ++++ myproject/integrations/models/base.py | 1 + 2 files changed, 5 insertions(+) diff --git a/myproject/integrations/models/__init__.py b/myproject/integrations/models/__init__.py index a0a9689..0d81238 100644 --- a/myproject/integrations/models/__init__.py +++ b/myproject/integrations/models/__init__.py @@ -5,6 +5,8 @@ from .marketplaces import ( RecommerceIntegration, ) from .category_mappings import IntegrationCategoryMapping +from .ai_services.glm import GLMIntegration +from .ai_services.openrouter import OpenRouterIntegration __all__ = [ 'BaseIntegration', @@ -13,4 +15,6 @@ __all__ = [ 'WooCommerceIntegration', 'RecommerceIntegration', 'IntegrationCategoryMapping', + 'GLMIntegration', + 'OpenRouterIntegration', ] diff --git a/myproject/integrations/models/base.py b/myproject/integrations/models/base.py index 672f198..8c46942 100644 --- a/myproject/integrations/models/base.py +++ b/myproject/integrations/models/base.py @@ -6,6 +6,7 @@ class IntegrationType(models.TextChoices): MARKETPLACE = 'marketplace', 'Маркетплейс' PAYMENT = 'payment', 'Платёжная система' SHIPPING = 'shipping', 'Служба доставки' + AI_SERVICE = 'ai_service', 'Сервис ИИ' class BaseIntegration(models.Model):