unrealon 1.0.9__py3-none-any.whl → 1.1.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- unrealon/__init__.py +23 -21
- unrealon-1.1.0.dist-info/METADATA +164 -0
- unrealon-1.1.0.dist-info/RECORD +82 -0
- {unrealon-1.0.9.dist-info → unrealon-1.1.0.dist-info}/WHEEL +1 -1
- unrealon-1.1.0.dist-info/entry_points.txt +9 -0
- {unrealon-1.0.9.dist-info → unrealon-1.1.0.dist-info/licenses}/LICENSE +1 -1
- unrealon_bridge/__init__.py +114 -0
- unrealon_bridge/cli.py +316 -0
- unrealon_bridge/client/__init__.py +93 -0
- unrealon_bridge/client/base.py +78 -0
- unrealon_bridge/client/commands.py +89 -0
- unrealon_bridge/client/connection.py +90 -0
- unrealon_bridge/client/events.py +65 -0
- unrealon_bridge/client/health.py +38 -0
- unrealon_bridge/client/html_parser.py +146 -0
- unrealon_bridge/client/logging.py +139 -0
- unrealon_bridge/client/proxy.py +70 -0
- unrealon_bridge/client/scheduler.py +450 -0
- unrealon_bridge/client/session.py +70 -0
- unrealon_bridge/configs/__init__.py +14 -0
- unrealon_bridge/configs/bridge_config.py +212 -0
- unrealon_bridge/configs/bridge_config.yaml +39 -0
- unrealon_bridge/models/__init__.py +138 -0
- unrealon_bridge/models/base.py +28 -0
- unrealon_bridge/models/command.py +41 -0
- unrealon_bridge/models/events.py +40 -0
- unrealon_bridge/models/html_parser.py +79 -0
- unrealon_bridge/models/logging.py +55 -0
- unrealon_bridge/models/parser.py +63 -0
- unrealon_bridge/models/proxy.py +41 -0
- unrealon_bridge/models/requests.py +95 -0
- unrealon_bridge/models/responses.py +88 -0
- unrealon_bridge/models/scheduler.py +592 -0
- unrealon_bridge/models/session.py +28 -0
- unrealon_bridge/server/__init__.py +91 -0
- unrealon_bridge/server/base.py +171 -0
- unrealon_bridge/server/handlers/__init__.py +23 -0
- unrealon_bridge/server/handlers/command.py +110 -0
- unrealon_bridge/server/handlers/html_parser.py +139 -0
- unrealon_bridge/server/handlers/logging.py +95 -0
- unrealon_bridge/server/handlers/parser.py +95 -0
- unrealon_bridge/server/handlers/proxy.py +75 -0
- unrealon_bridge/server/handlers/scheduler.py +545 -0
- unrealon_bridge/server/handlers/session.py +66 -0
- unrealon_browser/__init__.py +61 -18
- unrealon_browser/{src/cli → cli}/browser_cli.py +6 -13
- unrealon_browser/{src/cli → cli}/cookies_cli.py +5 -1
- unrealon_browser/{src/core → core}/browser_manager.py +2 -2
- unrealon_browser/{src/managers → managers}/captcha.py +1 -1
- unrealon_browser/{src/managers → managers}/cookies.py +1 -1
- unrealon_browser/managers/logger_bridge.py +231 -0
- unrealon_browser/{src/managers → managers}/profile.py +1 -1
- unrealon_driver/__init__.py +73 -19
- unrealon_driver/browser/__init__.py +8 -0
- unrealon_driver/browser/config.py +74 -0
- unrealon_driver/browser/manager.py +416 -0
- unrealon_driver/exceptions.py +28 -0
- unrealon_driver/parser/__init__.py +55 -0
- unrealon_driver/parser/cli_manager.py +141 -0
- unrealon_driver/parser/daemon_manager.py +227 -0
- unrealon_driver/parser/managers/__init__.py +46 -0
- unrealon_driver/parser/managers/browser.py +51 -0
- unrealon_driver/parser/managers/config.py +281 -0
- unrealon_driver/parser/managers/error.py +412 -0
- unrealon_driver/parser/managers/html.py +732 -0
- unrealon_driver/parser/managers/logging.py +609 -0
- unrealon_driver/parser/managers/result.py +321 -0
- unrealon_driver/parser/parser_manager.py +628 -0
- unrealon/sdk_config.py +0 -88
- unrealon-1.0.9.dist-info/METADATA +0 -810
- unrealon-1.0.9.dist-info/RECORD +0 -246
- unrealon_browser/pyproject.toml +0 -182
- unrealon_browser/src/__init__.py +0 -62
- unrealon_browser/src/managers/logger_bridge.py +0 -395
- unrealon_driver/README.md +0 -204
- unrealon_driver/pyproject.toml +0 -187
- unrealon_driver/src/__init__.py +0 -90
- unrealon_driver/src/cli/__init__.py +0 -10
- unrealon_driver/src/cli/main.py +0 -66
- unrealon_driver/src/cli/simple.py +0 -510
- unrealon_driver/src/config/__init__.py +0 -11
- unrealon_driver/src/config/auto_config.py +0 -478
- unrealon_driver/src/core/__init__.py +0 -18
- unrealon_driver/src/core/exceptions.py +0 -289
- unrealon_driver/src/core/parser.py +0 -638
- unrealon_driver/src/dto/__init__.py +0 -66
- unrealon_driver/src/dto/cli.py +0 -119
- unrealon_driver/src/dto/config.py +0 -18
- unrealon_driver/src/dto/events.py +0 -237
- unrealon_driver/src/dto/execution.py +0 -313
- unrealon_driver/src/dto/services.py +0 -311
- unrealon_driver/src/execution/__init__.py +0 -23
- unrealon_driver/src/execution/daemon_mode.py +0 -317
- unrealon_driver/src/execution/interactive_mode.py +0 -88
- unrealon_driver/src/execution/modes.py +0 -45
- unrealon_driver/src/execution/scheduled_mode.py +0 -209
- unrealon_driver/src/execution/test_mode.py +0 -250
- unrealon_driver/src/logging/__init__.py +0 -24
- unrealon_driver/src/logging/driver_logger.py +0 -512
- unrealon_driver/src/services/__init__.py +0 -24
- unrealon_driver/src/services/browser_service.py +0 -726
- unrealon_driver/src/services/llm/__init__.py +0 -15
- unrealon_driver/src/services/llm/browser_llm_service.py +0 -363
- unrealon_driver/src/services/llm/llm.py +0 -195
- unrealon_driver/src/services/logger_service.py +0 -232
- unrealon_driver/src/services/metrics_service.py +0 -185
- unrealon_driver/src/services/scheduler_service.py +0 -489
- unrealon_driver/src/services/websocket_service.py +0 -362
- unrealon_driver/src/utils/__init__.py +0 -16
- unrealon_driver/src/utils/service_factory.py +0 -317
- unrealon_driver/src/utils/time_formatter.py +0 -338
- unrealon_llm/README.md +0 -44
- unrealon_llm/__init__.py +0 -26
- unrealon_llm/pyproject.toml +0 -154
- unrealon_llm/src/__init__.py +0 -228
- unrealon_llm/src/cli/__init__.py +0 -0
- unrealon_llm/src/core/__init__.py +0 -11
- unrealon_llm/src/core/smart_client.py +0 -438
- unrealon_llm/src/dto/__init__.py +0 -155
- unrealon_llm/src/dto/models/__init__.py +0 -0
- unrealon_llm/src/dto/models/config.py +0 -343
- unrealon_llm/src/dto/models/core.py +0 -328
- unrealon_llm/src/dto/models/enums.py +0 -123
- unrealon_llm/src/dto/models/html_analysis.py +0 -345
- unrealon_llm/src/dto/models/statistics.py +0 -473
- unrealon_llm/src/dto/models/translation.py +0 -383
- unrealon_llm/src/dto/models/type_conversion.py +0 -462
- unrealon_llm/src/dto/schemas/__init__.py +0 -0
- unrealon_llm/src/exceptions.py +0 -392
- unrealon_llm/src/llm_config/__init__.py +0 -20
- unrealon_llm/src/llm_config/logging_config.py +0 -178
- unrealon_llm/src/llm_logging/__init__.py +0 -42
- unrealon_llm/src/llm_logging/llm_events.py +0 -107
- unrealon_llm/src/llm_logging/llm_logger.py +0 -466
- unrealon_llm/src/managers/__init__.py +0 -15
- unrealon_llm/src/managers/cache_manager.py +0 -67
- unrealon_llm/src/managers/cost_manager.py +0 -107
- unrealon_llm/src/managers/request_manager.py +0 -298
- unrealon_llm/src/modules/__init__.py +0 -0
- unrealon_llm/src/modules/html_processor/__init__.py +0 -25
- unrealon_llm/src/modules/html_processor/base_processor.py +0 -415
- unrealon_llm/src/modules/html_processor/details_processor.py +0 -85
- unrealon_llm/src/modules/html_processor/listing_processor.py +0 -91
- unrealon_llm/src/modules/html_processor/models/__init__.py +0 -20
- unrealon_llm/src/modules/html_processor/models/processing_models.py +0 -40
- unrealon_llm/src/modules/html_processor/models/universal_model.py +0 -56
- unrealon_llm/src/modules/html_processor/processor.py +0 -102
- unrealon_llm/src/modules/llm/__init__.py +0 -0
- unrealon_llm/src/modules/translator/__init__.py +0 -0
- unrealon_llm/src/provider.py +0 -116
- unrealon_llm/src/utils/__init__.py +0 -95
- unrealon_llm/src/utils/common.py +0 -64
- unrealon_llm/src/utils/data_extractor.py +0 -188
- unrealon_llm/src/utils/html_cleaner.py +0 -767
- unrealon_llm/src/utils/language_detector.py +0 -308
- unrealon_llm/src/utils/models_cache.py +0 -592
- unrealon_llm/src/utils/smart_counter.py +0 -229
- unrealon_llm/src/utils/token_counter.py +0 -189
- unrealon_sdk/README.md +0 -25
- unrealon_sdk/__init__.py +0 -30
- unrealon_sdk/pyproject.toml +0 -231
- unrealon_sdk/src/__init__.py +0 -150
- unrealon_sdk/src/cli/__init__.py +0 -12
- unrealon_sdk/src/cli/commands/__init__.py +0 -22
- unrealon_sdk/src/cli/commands/benchmark.py +0 -42
- unrealon_sdk/src/cli/commands/diagnostics.py +0 -573
- unrealon_sdk/src/cli/commands/health.py +0 -46
- unrealon_sdk/src/cli/commands/integration.py +0 -498
- unrealon_sdk/src/cli/commands/reports.py +0 -43
- unrealon_sdk/src/cli/commands/security.py +0 -36
- unrealon_sdk/src/cli/commands/server.py +0 -483
- unrealon_sdk/src/cli/commands/servers.py +0 -56
- unrealon_sdk/src/cli/commands/tests.py +0 -55
- unrealon_sdk/src/cli/main.py +0 -126
- unrealon_sdk/src/cli/utils/reporter.py +0 -519
- unrealon_sdk/src/clients/openapi.yaml +0 -3347
- unrealon_sdk/src/clients/python_http/__init__.py +0 -3
- unrealon_sdk/src/clients/python_http/api_config.py +0 -228
- unrealon_sdk/src/clients/python_http/models/BaseModel.py +0 -12
- unrealon_sdk/src/clients/python_http/models/BroadcastDeliveryStats.py +0 -33
- unrealon_sdk/src/clients/python_http/models/BroadcastMessage.py +0 -17
- unrealon_sdk/src/clients/python_http/models/BroadcastMessageRequest.py +0 -35
- unrealon_sdk/src/clients/python_http/models/BroadcastPriority.py +0 -10
- unrealon_sdk/src/clients/python_http/models/BroadcastResponse.py +0 -21
- unrealon_sdk/src/clients/python_http/models/BroadcastResultResponse.py +0 -33
- unrealon_sdk/src/clients/python_http/models/BroadcastTarget.py +0 -11
- unrealon_sdk/src/clients/python_http/models/ConnectionStats.py +0 -27
- unrealon_sdk/src/clients/python_http/models/ConnectionsResponse.py +0 -21
- unrealon_sdk/src/clients/python_http/models/DeveloperMessageResponse.py +0 -23
- unrealon_sdk/src/clients/python_http/models/ErrorResponse.py +0 -25
- unrealon_sdk/src/clients/python_http/models/HTTPValidationError.py +0 -16
- unrealon_sdk/src/clients/python_http/models/HealthResponse.py +0 -23
- unrealon_sdk/src/clients/python_http/models/HealthStatus.py +0 -33
- unrealon_sdk/src/clients/python_http/models/LogLevel.py +0 -10
- unrealon_sdk/src/clients/python_http/models/LoggingRequest.py +0 -27
- unrealon_sdk/src/clients/python_http/models/LoggingResponse.py +0 -23
- unrealon_sdk/src/clients/python_http/models/MaintenanceMode.py +0 -9
- unrealon_sdk/src/clients/python_http/models/MaintenanceModeRequest.py +0 -33
- unrealon_sdk/src/clients/python_http/models/MaintenanceStatusResponse.py +0 -39
- unrealon_sdk/src/clients/python_http/models/ParserCommandRequest.py +0 -25
- unrealon_sdk/src/clients/python_http/models/ParserMessageResponse.py +0 -21
- unrealon_sdk/src/clients/python_http/models/ParserRegistrationRequest.py +0 -28
- unrealon_sdk/src/clients/python_http/models/ParserRegistrationResponse.py +0 -25
- unrealon_sdk/src/clients/python_http/models/ParserType.py +0 -10
- unrealon_sdk/src/clients/python_http/models/ProxyBlockRequest.py +0 -19
- unrealon_sdk/src/clients/python_http/models/ProxyEndpointResponse.py +0 -20
- unrealon_sdk/src/clients/python_http/models/ProxyListResponse.py +0 -19
- unrealon_sdk/src/clients/python_http/models/ProxyProvider.py +0 -10
- unrealon_sdk/src/clients/python_http/models/ProxyPurchaseRequest.py +0 -25
- unrealon_sdk/src/clients/python_http/models/ProxyResponse.py +0 -47
- unrealon_sdk/src/clients/python_http/models/ProxyRotationRequest.py +0 -23
- unrealon_sdk/src/clients/python_http/models/ProxyStatus.py +0 -10
- unrealon_sdk/src/clients/python_http/models/ProxyUsageRequest.py +0 -19
- unrealon_sdk/src/clients/python_http/models/ProxyUsageStatsResponse.py +0 -26
- unrealon_sdk/src/clients/python_http/models/ServiceRegistrationDto.py +0 -23
- unrealon_sdk/src/clients/python_http/models/ServiceStatsResponse.py +0 -31
- unrealon_sdk/src/clients/python_http/models/SessionStartRequest.py +0 -23
- unrealon_sdk/src/clients/python_http/models/SuccessResponse.py +0 -25
- unrealon_sdk/src/clients/python_http/models/SystemNotificationResponse.py +0 -23
- unrealon_sdk/src/clients/python_http/models/ValidationError.py +0 -18
- unrealon_sdk/src/clients/python_http/models/ValidationErrorResponse.py +0 -21
- unrealon_sdk/src/clients/python_http/models/WebSocketMetrics.py +0 -21
- unrealon_sdk/src/clients/python_http/models/__init__.py +0 -44
- unrealon_sdk/src/clients/python_http/services/None_service.py +0 -35
- unrealon_sdk/src/clients/python_http/services/ParserManagement_service.py +0 -190
- unrealon_sdk/src/clients/python_http/services/ProxyManagement_service.py +0 -289
- unrealon_sdk/src/clients/python_http/services/SocketLogging_service.py +0 -187
- unrealon_sdk/src/clients/python_http/services/SystemHealth_service.py +0 -119
- unrealon_sdk/src/clients/python_http/services/WebSocketAPI_service.py +0 -198
- unrealon_sdk/src/clients/python_http/services/__init__.py +0 -0
- unrealon_sdk/src/clients/python_http/services/admin_service.py +0 -125
- unrealon_sdk/src/clients/python_http/services/async_None_service.py +0 -35
- unrealon_sdk/src/clients/python_http/services/async_ParserManagement_service.py +0 -190
- unrealon_sdk/src/clients/python_http/services/async_ProxyManagement_service.py +0 -289
- unrealon_sdk/src/clients/python_http/services/async_SocketLogging_service.py +0 -189
- unrealon_sdk/src/clients/python_http/services/async_SystemHealth_service.py +0 -123
- unrealon_sdk/src/clients/python_http/services/async_WebSocketAPI_service.py +0 -200
- unrealon_sdk/src/clients/python_http/services/async_admin_service.py +0 -125
- unrealon_sdk/src/clients/python_websocket/__init__.py +0 -28
- unrealon_sdk/src/clients/python_websocket/client.py +0 -490
- unrealon_sdk/src/clients/python_websocket/events.py +0 -732
- unrealon_sdk/src/clients/python_websocket/example.py +0 -136
- unrealon_sdk/src/clients/python_websocket/types.py +0 -871
- unrealon_sdk/src/core/__init__.py +0 -64
- unrealon_sdk/src/core/client.py +0 -556
- unrealon_sdk/src/core/config.py +0 -465
- unrealon_sdk/src/core/exceptions.py +0 -239
- unrealon_sdk/src/core/metadata.py +0 -191
- unrealon_sdk/src/core/models.py +0 -142
- unrealon_sdk/src/core/types.py +0 -68
- unrealon_sdk/src/dto/__init__.py +0 -268
- unrealon_sdk/src/dto/authentication.py +0 -108
- unrealon_sdk/src/dto/cache.py +0 -208
- unrealon_sdk/src/dto/common.py +0 -19
- unrealon_sdk/src/dto/concurrency.py +0 -393
- unrealon_sdk/src/dto/events.py +0 -108
- unrealon_sdk/src/dto/health.py +0 -339
- unrealon_sdk/src/dto/load_balancing.py +0 -336
- unrealon_sdk/src/dto/logging.py +0 -230
- unrealon_sdk/src/dto/performance.py +0 -165
- unrealon_sdk/src/dto/rate_limiting.py +0 -295
- unrealon_sdk/src/dto/resource_pooling.py +0 -128
- unrealon_sdk/src/dto/structured_logging.py +0 -112
- unrealon_sdk/src/dto/task_scheduling.py +0 -121
- unrealon_sdk/src/dto/websocket.py +0 -55
- unrealon_sdk/src/enterprise/__init__.py +0 -59
- unrealon_sdk/src/enterprise/authentication.py +0 -401
- unrealon_sdk/src/enterprise/cache_manager.py +0 -578
- unrealon_sdk/src/enterprise/error_recovery.py +0 -494
- unrealon_sdk/src/enterprise/event_system.py +0 -549
- unrealon_sdk/src/enterprise/health_monitor.py +0 -747
- unrealon_sdk/src/enterprise/load_balancer.py +0 -964
- unrealon_sdk/src/enterprise/logging/__init__.py +0 -68
- unrealon_sdk/src/enterprise/logging/cleanup.py +0 -156
- unrealon_sdk/src/enterprise/logging/development.py +0 -744
- unrealon_sdk/src/enterprise/logging/service.py +0 -410
- unrealon_sdk/src/enterprise/multithreading_manager.py +0 -853
- unrealon_sdk/src/enterprise/performance_monitor.py +0 -539
- unrealon_sdk/src/enterprise/proxy_manager.py +0 -696
- unrealon_sdk/src/enterprise/rate_limiter.py +0 -652
- unrealon_sdk/src/enterprise/resource_pool.py +0 -763
- unrealon_sdk/src/enterprise/task_scheduler.py +0 -709
- unrealon_sdk/src/internal/__init__.py +0 -10
- unrealon_sdk/src/internal/command_router.py +0 -497
- unrealon_sdk/src/internal/connection_manager.py +0 -397
- unrealon_sdk/src/internal/http_client.py +0 -446
- unrealon_sdk/src/internal/websocket_client.py +0 -420
- unrealon_sdk/src/provider.py +0 -471
- unrealon_sdk/src/utils.py +0 -234
- /unrealon_browser/{src/cli → cli}/__init__.py +0 -0
- /unrealon_browser/{src/cli → cli}/interactive_mode.py +0 -0
- /unrealon_browser/{src/cli → cli}/main.py +0 -0
- /unrealon_browser/{src/core → core}/__init__.py +0 -0
- /unrealon_browser/{src/dto → dto}/__init__.py +0 -0
- /unrealon_browser/{src/dto → dto}/models/config.py +0 -0
- /unrealon_browser/{src/dto → dto}/models/core.py +0 -0
- /unrealon_browser/{src/dto → dto}/models/dataclasses.py +0 -0
- /unrealon_browser/{src/dto → dto}/models/detection.py +0 -0
- /unrealon_browser/{src/dto → dto}/models/enums.py +0 -0
- /unrealon_browser/{src/dto → dto}/models/statistics.py +0 -0
- /unrealon_browser/{src/managers → managers}/__init__.py +0 -0
- /unrealon_browser/{src/managers → managers}/stealth.py +0 -0
unrealon_llm/src/dto/__init__.py
DELETED
|
@@ -1,155 +0,0 @@
|
|
|
1
|
-
"""
|
|
2
|
-
UnrealOn LLM DTOs - Data Transfer Objects
|
|
3
|
-
|
|
4
|
-
Comprehensive data models for UnrealOn LLM platform with strict validation.
|
|
5
|
-
All models are built with Pydantic v2 for type safety and performance.
|
|
6
|
-
"""
|
|
7
|
-
|
|
8
|
-
# Enums
|
|
9
|
-
from .models.enums import (
|
|
10
|
-
LLMProvider,
|
|
11
|
-
OptimizationLevel,
|
|
12
|
-
CacheStrategy,
|
|
13
|
-
MessageRole,
|
|
14
|
-
PatternType,
|
|
15
|
-
SelectorType,
|
|
16
|
-
LanguageCode,
|
|
17
|
-
DataType,
|
|
18
|
-
SchemaFormat,
|
|
19
|
-
ProcessingStage,
|
|
20
|
-
LLMTestingMode,
|
|
21
|
-
)
|
|
22
|
-
|
|
23
|
-
# Configuration models
|
|
24
|
-
from .models.config import (
|
|
25
|
-
LLMConfig,
|
|
26
|
-
AnalysisConfig,
|
|
27
|
-
TranslationConfig,
|
|
28
|
-
LLMTestConfiguration,
|
|
29
|
-
)
|
|
30
|
-
|
|
31
|
-
# Core models
|
|
32
|
-
from .models.core import (
|
|
33
|
-
TokenUsage,
|
|
34
|
-
ChatMessage,
|
|
35
|
-
LLMResponse,
|
|
36
|
-
LanguageDetection,
|
|
37
|
-
CostBreakdown,
|
|
38
|
-
HealthStatus,
|
|
39
|
-
ProcessingMetrics,
|
|
40
|
-
)
|
|
41
|
-
|
|
42
|
-
# HTML Analysis models
|
|
43
|
-
from .models.html_analysis import (
|
|
44
|
-
DetectedPattern,
|
|
45
|
-
SelectorInfo,
|
|
46
|
-
HTMLAnalysisRequest,
|
|
47
|
-
HTMLAnalysisResult,
|
|
48
|
-
SelectorValidationResult,
|
|
49
|
-
CompleteAnalysisResult,
|
|
50
|
-
)
|
|
51
|
-
|
|
52
|
-
# Translation models
|
|
53
|
-
from .models.translation import (
|
|
54
|
-
TranslationRequest,
|
|
55
|
-
TranslationResponse,
|
|
56
|
-
BatchTranslationRequest,
|
|
57
|
-
BatchTranslationResponse,
|
|
58
|
-
JSONTranslationRequest,
|
|
59
|
-
JSONTranslationResponse,
|
|
60
|
-
)
|
|
61
|
-
|
|
62
|
-
# Type Conversion models
|
|
63
|
-
from .models.type_conversion import (
|
|
64
|
-
FieldAnalysis,
|
|
65
|
-
StructureAnalysis,
|
|
66
|
-
PydanticSchema,
|
|
67
|
-
TypeScriptSchema,
|
|
68
|
-
SchemaGenerationRequest,
|
|
69
|
-
SchemaGenerationResponse,
|
|
70
|
-
ConversionRequest,
|
|
71
|
-
ConversionResponse,
|
|
72
|
-
)
|
|
73
|
-
|
|
74
|
-
# Statistics models
|
|
75
|
-
from .models.statistics import (
|
|
76
|
-
ModuleUsage,
|
|
77
|
-
UsageStats,
|
|
78
|
-
StageResult,
|
|
79
|
-
CompleteProcessingResult,
|
|
80
|
-
PerformanceMetrics,
|
|
81
|
-
BenchmarkResult,
|
|
82
|
-
)
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
# Exports organized by category
|
|
86
|
-
__all__ = [
|
|
87
|
-
# ===== ENUMS =====
|
|
88
|
-
"LLMProvider",
|
|
89
|
-
"OptimizationLevel",
|
|
90
|
-
"CacheStrategy",
|
|
91
|
-
"MessageRole",
|
|
92
|
-
"PatternType",
|
|
93
|
-
"SelectorType",
|
|
94
|
-
"LanguageCode",
|
|
95
|
-
"DataType",
|
|
96
|
-
"SchemaFormat",
|
|
97
|
-
"ProcessingStage",
|
|
98
|
-
"LLMTestingMode",
|
|
99
|
-
# ===== CONFIGURATION =====
|
|
100
|
-
"LLMConfig",
|
|
101
|
-
"AnalysisConfig",
|
|
102
|
-
"TranslationConfig",
|
|
103
|
-
"LLMTestConfiguration",
|
|
104
|
-
# ===== CORE MODELS =====
|
|
105
|
-
"TokenUsage",
|
|
106
|
-
"ChatMessage",
|
|
107
|
-
"LLMResponse",
|
|
108
|
-
"LanguageDetection",
|
|
109
|
-
"CostBreakdown",
|
|
110
|
-
"HealthStatus",
|
|
111
|
-
"ProcessingMetrics",
|
|
112
|
-
# ===== HTML ANALYSIS =====
|
|
113
|
-
"DetectedPattern",
|
|
114
|
-
"SelectorInfo",
|
|
115
|
-
"HTMLAnalysisRequest",
|
|
116
|
-
"HTMLAnalysisResult",
|
|
117
|
-
"SelectorValidationResult",
|
|
118
|
-
"CompleteAnalysisResult",
|
|
119
|
-
# ===== TRANSLATION =====
|
|
120
|
-
"TranslationRequest",
|
|
121
|
-
"TranslationResponse",
|
|
122
|
-
"BatchTranslationRequest",
|
|
123
|
-
"BatchTranslationResponse",
|
|
124
|
-
"JSONTranslationRequest",
|
|
125
|
-
"JSONTranslationResponse",
|
|
126
|
-
# ===== TYPE CONVERSION =====
|
|
127
|
-
"FieldAnalysis",
|
|
128
|
-
"StructureAnalysis",
|
|
129
|
-
"PydanticSchema",
|
|
130
|
-
"TypeScriptSchema",
|
|
131
|
-
"SchemaGenerationRequest",
|
|
132
|
-
"SchemaGenerationResponse",
|
|
133
|
-
"ConversionRequest",
|
|
134
|
-
"ConversionResponse",
|
|
135
|
-
# ===== STATISTICS =====
|
|
136
|
-
"ModuleUsage",
|
|
137
|
-
"UsageStats",
|
|
138
|
-
"StageResult",
|
|
139
|
-
"CompleteProcessingResult",
|
|
140
|
-
"PerformanceMetrics",
|
|
141
|
-
"BenchmarkResult",
|
|
142
|
-
]
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
# Type aliases for convenience
|
|
146
|
-
LLMConfigType = LLMConfig
|
|
147
|
-
HTMLAnalysisResultType = HTMLAnalysisResult
|
|
148
|
-
TranslationResponseType = TranslationResponse
|
|
149
|
-
PydanticSchemaType = PydanticSchema
|
|
150
|
-
UsageStatsType = UsageStats
|
|
151
|
-
|
|
152
|
-
# Version info
|
|
153
|
-
__version__ = "2.0.0"
|
|
154
|
-
__author__ = "UnrealOn Team"
|
|
155
|
-
__description__ = "Data Transfer Objects for UnrealOn LLM Platform"
|
|
File without changes
|
|
@@ -1,343 +0,0 @@
|
|
|
1
|
-
"""
|
|
2
|
-
LLM DTOs - Configuration Models
|
|
3
|
-
Configuration data models for UnrealOn LLM platform
|
|
4
|
-
"""
|
|
5
|
-
|
|
6
|
-
from decimal import Decimal
|
|
7
|
-
from typing import List, Optional
|
|
8
|
-
|
|
9
|
-
from pydantic import BaseModel, ConfigDict, Field
|
|
10
|
-
|
|
11
|
-
from .enums import CacheStrategy, LLMProvider, LLMTestingMode, OptimizationLevel
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
class LLMConfig(BaseModel):
|
|
15
|
-
"""Main configuration for UnrealOn LLM platform"""
|
|
16
|
-
|
|
17
|
-
model_config = ConfigDict(
|
|
18
|
-
title="LLM Configuration",
|
|
19
|
-
description="Complete configuration for UnrealOn LLM platform",
|
|
20
|
-
validate_assignment=True,
|
|
21
|
-
extra="forbid",
|
|
22
|
-
json_schema_extra={
|
|
23
|
-
"example": {
|
|
24
|
-
"openrouter_api_key": "sk-or-v1-...",
|
|
25
|
-
"default_model": "anthropic/claude-3.5-sonnet",
|
|
26
|
-
"daily_cost_limit_usd": 10.0,
|
|
27
|
-
"enable_global_cache": True
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
)
|
|
31
|
-
|
|
32
|
-
# API Configuration
|
|
33
|
-
openrouter_api_key: Optional[str] = Field(
|
|
34
|
-
None,
|
|
35
|
-
description="OpenRouter API key",
|
|
36
|
-
min_length=10
|
|
37
|
-
)
|
|
38
|
-
openai_api_key: Optional[str] = Field(
|
|
39
|
-
None,
|
|
40
|
-
description="OpenAI API key",
|
|
41
|
-
min_length=10
|
|
42
|
-
)
|
|
43
|
-
anthropic_api_key: Optional[str] = Field(
|
|
44
|
-
None,
|
|
45
|
-
description="Anthropic API key",
|
|
46
|
-
min_length=10
|
|
47
|
-
)
|
|
48
|
-
|
|
49
|
-
# Default Provider & Model
|
|
50
|
-
default_provider: LLMProvider = Field(
|
|
51
|
-
LLMProvider.OPENROUTER,
|
|
52
|
-
description="Default LLM provider"
|
|
53
|
-
)
|
|
54
|
-
default_model: str = Field(
|
|
55
|
-
"anthropic/claude-3.5-sonnet",
|
|
56
|
-
description="Default model to use",
|
|
57
|
-
min_length=1
|
|
58
|
-
)
|
|
59
|
-
fallback_models: List[str] = Field(
|
|
60
|
-
default_factory=lambda: ["openai/gpt-3.5-turbo", "meta-llama/llama-2-70b-chat"],
|
|
61
|
-
description="Fallback models if primary fails"
|
|
62
|
-
)
|
|
63
|
-
|
|
64
|
-
# Performance Settings
|
|
65
|
-
max_concurrent_requests: int = Field(
|
|
66
|
-
5,
|
|
67
|
-
ge=1,
|
|
68
|
-
le=50,
|
|
69
|
-
description="Max concurrent API requests"
|
|
70
|
-
)
|
|
71
|
-
request_timeout_seconds: int = Field(
|
|
72
|
-
30,
|
|
73
|
-
ge=5,
|
|
74
|
-
le=300,
|
|
75
|
-
description="Request timeout"
|
|
76
|
-
)
|
|
77
|
-
max_retries: int = Field(
|
|
78
|
-
3,
|
|
79
|
-
ge=0,
|
|
80
|
-
le=10,
|
|
81
|
-
description="Maximum retry attempts"
|
|
82
|
-
)
|
|
83
|
-
|
|
84
|
-
# Caching Configuration
|
|
85
|
-
enable_global_cache: bool = Field(
|
|
86
|
-
True,
|
|
87
|
-
description="Enable global caching"
|
|
88
|
-
)
|
|
89
|
-
cache_strategy: CacheStrategy = Field(
|
|
90
|
-
CacheStrategy.MEMORY,
|
|
91
|
-
description="Caching strategy"
|
|
92
|
-
)
|
|
93
|
-
cache_ttl_hours: int = Field(
|
|
94
|
-
24,
|
|
95
|
-
ge=1,
|
|
96
|
-
le=168,
|
|
97
|
-
description="Cache TTL in hours"
|
|
98
|
-
)
|
|
99
|
-
max_cache_size_mb: int = Field(
|
|
100
|
-
100,
|
|
101
|
-
ge=10,
|
|
102
|
-
le=1000,
|
|
103
|
-
description="Max cache size in MB"
|
|
104
|
-
)
|
|
105
|
-
|
|
106
|
-
# Cost Management
|
|
107
|
-
daily_cost_limit_usd: float = Field(
|
|
108
|
-
10.0,
|
|
109
|
-
ge=0,
|
|
110
|
-
description="Daily cost limit in USD"
|
|
111
|
-
)
|
|
112
|
-
cost_alert_threshold: float = Field(
|
|
113
|
-
0.8,
|
|
114
|
-
ge=0,
|
|
115
|
-
le=1,
|
|
116
|
-
description="Cost alert threshold (0-1)"
|
|
117
|
-
)
|
|
118
|
-
|
|
119
|
-
# Module-specific settings
|
|
120
|
-
enable_html_analysis: bool = Field(
|
|
121
|
-
True,
|
|
122
|
-
description="Enable HTML analysis module"
|
|
123
|
-
)
|
|
124
|
-
enable_translation: bool = Field(
|
|
125
|
-
True,
|
|
126
|
-
description="Enable translation module"
|
|
127
|
-
)
|
|
128
|
-
enable_json_processing: bool = Field(
|
|
129
|
-
True,
|
|
130
|
-
description="Enable JSON processing module"
|
|
131
|
-
)
|
|
132
|
-
enable_type_conversion: bool = Field(
|
|
133
|
-
True,
|
|
134
|
-
description="Enable type conversion module"
|
|
135
|
-
)
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
class AnalysisConfig(BaseModel):
|
|
139
|
-
"""Configuration for HTML analysis operations"""
|
|
140
|
-
|
|
141
|
-
model_config = ConfigDict(validate_assignment=True, extra="forbid")
|
|
142
|
-
|
|
143
|
-
# Analysis settings
|
|
144
|
-
optimization_level: OptimizationLevel = Field(
|
|
145
|
-
OptimizationLevel.BALANCED,
|
|
146
|
-
description="Analysis optimization level"
|
|
147
|
-
)
|
|
148
|
-
max_html_size_kb: int = Field(
|
|
149
|
-
500,
|
|
150
|
-
ge=10,
|
|
151
|
-
le=2000,
|
|
152
|
-
description="Maximum HTML size in KB"
|
|
153
|
-
)
|
|
154
|
-
max_tokens_per_analysis: int = Field(
|
|
155
|
-
2000,
|
|
156
|
-
ge=100,
|
|
157
|
-
le=8000,
|
|
158
|
-
description="Maximum tokens per analysis"
|
|
159
|
-
)
|
|
160
|
-
|
|
161
|
-
# Quality settings
|
|
162
|
-
min_confidence_threshold: float = Field(
|
|
163
|
-
0.8,
|
|
164
|
-
ge=0.5,
|
|
165
|
-
le=1.0,
|
|
166
|
-
description="Minimum confidence threshold"
|
|
167
|
-
)
|
|
168
|
-
enable_selector_validation: bool = Field(
|
|
169
|
-
True,
|
|
170
|
-
description="Enable selector validation"
|
|
171
|
-
)
|
|
172
|
-
generate_fallback_selectors: bool = Field(
|
|
173
|
-
True,
|
|
174
|
-
description="Generate fallback selectors"
|
|
175
|
-
)
|
|
176
|
-
|
|
177
|
-
# Preprocessing options
|
|
178
|
-
remove_scripts: bool = Field(True, description="Remove script tags")
|
|
179
|
-
remove_styles: bool = Field(True, description="Remove style tags")
|
|
180
|
-
preserve_attributes: List[str] = Field(
|
|
181
|
-
default_factory=lambda: ["class", "id", "data-*"],
|
|
182
|
-
description="HTML attributes to preserve"
|
|
183
|
-
)
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
class TranslationConfig(BaseModel):
|
|
187
|
-
"""Configuration for translation operations"""
|
|
188
|
-
|
|
189
|
-
model_config = ConfigDict(validate_assignment=True, extra="forbid")
|
|
190
|
-
|
|
191
|
-
# Translation settings
|
|
192
|
-
auto_detect_language: bool = Field(
|
|
193
|
-
True,
|
|
194
|
-
description="Auto-detect source language"
|
|
195
|
-
)
|
|
196
|
-
preserve_formatting: bool = Field(
|
|
197
|
-
True,
|
|
198
|
-
description="Preserve original formatting"
|
|
199
|
-
)
|
|
200
|
-
handle_technical_terms: bool = Field(
|
|
201
|
-
True,
|
|
202
|
-
description="Handle technical terms specially"
|
|
203
|
-
)
|
|
204
|
-
|
|
205
|
-
# Quality settings
|
|
206
|
-
min_translation_confidence: float = Field(
|
|
207
|
-
0.9,
|
|
208
|
-
ge=0.5,
|
|
209
|
-
le=1.0,
|
|
210
|
-
description="Minimum translation confidence"
|
|
211
|
-
)
|
|
212
|
-
enable_consistency_checks: bool = Field(
|
|
213
|
-
True,
|
|
214
|
-
description="Enable translation consistency checks"
|
|
215
|
-
)
|
|
216
|
-
|
|
217
|
-
# Performance settings
|
|
218
|
-
batch_size: int = Field(
|
|
219
|
-
10,
|
|
220
|
-
ge=1,
|
|
221
|
-
le=100,
|
|
222
|
-
description="Batch translation size"
|
|
223
|
-
)
|
|
224
|
-
max_text_length: int = Field(
|
|
225
|
-
5000,
|
|
226
|
-
ge=100,
|
|
227
|
-
le=20000,
|
|
228
|
-
description="Maximum text length for single translation"
|
|
229
|
-
)
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
class LLMTestConfiguration(BaseModel):
|
|
233
|
-
"""Complete LLM testing configuration"""
|
|
234
|
-
|
|
235
|
-
model_config = ConfigDict(
|
|
236
|
-
title="LLM Testing Configuration",
|
|
237
|
-
description="Complete configuration for LLM testing with cost controls",
|
|
238
|
-
validate_assignment=True,
|
|
239
|
-
extra="forbid",
|
|
240
|
-
json_schema_extra={
|
|
241
|
-
"example": {
|
|
242
|
-
"testing_mode": "mock_only",
|
|
243
|
-
"cost_limit_usd": "0.25",
|
|
244
|
-
"ai_accuracy_threshold": 0.85,
|
|
245
|
-
"enable_real_api_tests": False
|
|
246
|
-
}
|
|
247
|
-
}
|
|
248
|
-
)
|
|
249
|
-
|
|
250
|
-
# Testing mode configuration
|
|
251
|
-
testing_mode: LLMTestingMode = Field(default=LLMTestingMode.MOCK_ONLY)
|
|
252
|
-
enable_real_api_tests: bool = Field(
|
|
253
|
-
default=False,
|
|
254
|
-
description="Enable real API testing"
|
|
255
|
-
)
|
|
256
|
-
|
|
257
|
-
# Cost control settings
|
|
258
|
-
cost_limit_usd: Decimal = Field(
|
|
259
|
-
default=Decimal('0.25'),
|
|
260
|
-
ge=0,
|
|
261
|
-
le=Decimal('1.00'),
|
|
262
|
-
description="Maximum cost limit for testing"
|
|
263
|
-
)
|
|
264
|
-
single_test_limit_usd: Decimal = Field(
|
|
265
|
-
default=Decimal('0.05'),
|
|
266
|
-
ge=0,
|
|
267
|
-
le=Decimal('0.25'),
|
|
268
|
-
description="Maximum cost per single test"
|
|
269
|
-
)
|
|
270
|
-
cost_alert_threshold: Decimal = Field(
|
|
271
|
-
default=Decimal('0.20'),
|
|
272
|
-
ge=0,
|
|
273
|
-
le=Decimal('1.00'),
|
|
274
|
-
description="Cost alert threshold"
|
|
275
|
-
)
|
|
276
|
-
|
|
277
|
-
# API configuration
|
|
278
|
-
openrouter_api_key: Optional[str] = Field(
|
|
279
|
-
None,
|
|
280
|
-
description="Real API key for controlled testing"
|
|
281
|
-
)
|
|
282
|
-
default_test_model: str = Field(
|
|
283
|
-
default="anthropic/claude-3.5-sonnet",
|
|
284
|
-
description="Cheapest model for testing"
|
|
285
|
-
)
|
|
286
|
-
max_tokens_per_test: int = Field(
|
|
287
|
-
default=500,
|
|
288
|
-
ge=10,
|
|
289
|
-
le=2000,
|
|
290
|
-
description="Token limit per test"
|
|
291
|
-
)
|
|
292
|
-
|
|
293
|
-
# Mock configuration
|
|
294
|
-
mock_response_delay_ms: int = Field(
|
|
295
|
-
default=100,
|
|
296
|
-
ge=0,
|
|
297
|
-
le=2000,
|
|
298
|
-
description="Simulated API delay"
|
|
299
|
-
)
|
|
300
|
-
mock_token_simulation: bool = Field(
|
|
301
|
-
default=True,
|
|
302
|
-
description="Simulate realistic token usage"
|
|
303
|
-
)
|
|
304
|
-
mock_cost_simulation: bool = Field(
|
|
305
|
-
default=True,
|
|
306
|
-
description="Simulate API costs"
|
|
307
|
-
)
|
|
308
|
-
|
|
309
|
-
# Quality validation settings
|
|
310
|
-
ai_accuracy_threshold: float = Field(
|
|
311
|
-
default=0.85,
|
|
312
|
-
ge=0.5,
|
|
313
|
-
le=1.0,
|
|
314
|
-
description="Minimum AI accuracy"
|
|
315
|
-
)
|
|
316
|
-
consistency_threshold: float = Field(
|
|
317
|
-
default=0.85,
|
|
318
|
-
ge=0.5,
|
|
319
|
-
le=1.0,
|
|
320
|
-
description="Response consistency requirement"
|
|
321
|
-
)
|
|
322
|
-
validate_ai_outputs: bool = Field(
|
|
323
|
-
default=True,
|
|
324
|
-
description="Enable AI output validation"
|
|
325
|
-
)
|
|
326
|
-
|
|
327
|
-
# Performance settings
|
|
328
|
-
test_timeout_seconds: int = Field(
|
|
329
|
-
default=30,
|
|
330
|
-
ge=5,
|
|
331
|
-
le=300,
|
|
332
|
-
description="Maximum test execution time"
|
|
333
|
-
)
|
|
334
|
-
parallel_test_workers: int = Field(
|
|
335
|
-
default=1,
|
|
336
|
-
ge=1,
|
|
337
|
-
le=4,
|
|
338
|
-
description="Parallel test execution"
|
|
339
|
-
)
|
|
340
|
-
enable_performance_benchmarks: bool = Field(
|
|
341
|
-
default=True,
|
|
342
|
-
description="Enable performance testing"
|
|
343
|
-
)
|