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
|
@@ -1,383 +0,0 @@
|
|
|
1
|
-
"""
|
|
2
|
-
LLM DTOs - Translation Models
|
|
3
|
-
Data models for translation operations
|
|
4
|
-
"""
|
|
5
|
-
|
|
6
|
-
from typing import Any, Dict, List, Optional
|
|
7
|
-
|
|
8
|
-
from pydantic import BaseModel, ConfigDict, Field
|
|
9
|
-
|
|
10
|
-
from .enums import LanguageCode
|
|
11
|
-
from .core import LanguageDetection
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
class TranslationRequest(BaseModel):
|
|
15
|
-
"""Translation request model"""
|
|
16
|
-
|
|
17
|
-
model_config = ConfigDict(
|
|
18
|
-
title="Translation Request",
|
|
19
|
-
description="Request for text translation with options",
|
|
20
|
-
validate_assignment=True,
|
|
21
|
-
extra="forbid",
|
|
22
|
-
json_schema_extra={
|
|
23
|
-
"example": {
|
|
24
|
-
"text": "안녕하세요",
|
|
25
|
-
"source_language": "ko",
|
|
26
|
-
"target_language": "en",
|
|
27
|
-
"context": "greeting"
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
)
|
|
31
|
-
|
|
32
|
-
text: str = Field(
|
|
33
|
-
...,
|
|
34
|
-
min_length=1,
|
|
35
|
-
description="Text to translate"
|
|
36
|
-
)
|
|
37
|
-
source_language: LanguageCode = Field(
|
|
38
|
-
...,
|
|
39
|
-
description="Source language"
|
|
40
|
-
)
|
|
41
|
-
target_language: LanguageCode = Field(
|
|
42
|
-
...,
|
|
43
|
-
description="Target language"
|
|
44
|
-
)
|
|
45
|
-
context: Optional[str] = Field(
|
|
46
|
-
None,
|
|
47
|
-
description="Translation context"
|
|
48
|
-
)
|
|
49
|
-
|
|
50
|
-
# Processing options
|
|
51
|
-
preserve_formatting: bool = Field(
|
|
52
|
-
True,
|
|
53
|
-
description="Preserve original formatting"
|
|
54
|
-
)
|
|
55
|
-
handle_technical_terms: bool = Field(
|
|
56
|
-
True,
|
|
57
|
-
description="Handle technical terms specially"
|
|
58
|
-
)
|
|
59
|
-
preserve_terms: Optional[List[str]] = Field(
|
|
60
|
-
None,
|
|
61
|
-
description="Terms to preserve without translation"
|
|
62
|
-
)
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
class TranslationResponse(BaseModel):
|
|
66
|
-
"""Translation operation result"""
|
|
67
|
-
|
|
68
|
-
model_config = ConfigDict(
|
|
69
|
-
title="Translation Response",
|
|
70
|
-
description="Complete translation result with metadata",
|
|
71
|
-
validate_assignment=True,
|
|
72
|
-
extra="forbid"
|
|
73
|
-
)
|
|
74
|
-
|
|
75
|
-
original_text: str = Field(..., description="Original text")
|
|
76
|
-
translated_text: str = Field(..., description="Translated text")
|
|
77
|
-
source_language: LanguageCode = Field(
|
|
78
|
-
...,
|
|
79
|
-
description="Source language used"
|
|
80
|
-
)
|
|
81
|
-
target_language: LanguageCode = Field(
|
|
82
|
-
...,
|
|
83
|
-
description="Target language used"
|
|
84
|
-
)
|
|
85
|
-
|
|
86
|
-
# Quality metrics
|
|
87
|
-
translation_confidence: float = Field(
|
|
88
|
-
...,
|
|
89
|
-
ge=0,
|
|
90
|
-
le=1,
|
|
91
|
-
description="Translation quality confidence"
|
|
92
|
-
)
|
|
93
|
-
detected_language: Optional[LanguageDetection] = Field(
|
|
94
|
-
None,
|
|
95
|
-
description="Language detection result"
|
|
96
|
-
)
|
|
97
|
-
|
|
98
|
-
# Processing metadata
|
|
99
|
-
processing_time_seconds: float = Field(
|
|
100
|
-
...,
|
|
101
|
-
ge=0,
|
|
102
|
-
description="Translation time"
|
|
103
|
-
)
|
|
104
|
-
tokens_used: Optional[int] = Field(
|
|
105
|
-
None,
|
|
106
|
-
ge=0,
|
|
107
|
-
description="Tokens consumed"
|
|
108
|
-
)
|
|
109
|
-
cost_usd: Optional[float] = Field(
|
|
110
|
-
None,
|
|
111
|
-
ge=0,
|
|
112
|
-
description="Translation cost"
|
|
113
|
-
)
|
|
114
|
-
cached: bool = Field(False, description="Result from cache")
|
|
115
|
-
|
|
116
|
-
# Enhanced features
|
|
117
|
-
alternative_translations: List[str] = Field(
|
|
118
|
-
default_factory=list,
|
|
119
|
-
description="Alternative translations"
|
|
120
|
-
)
|
|
121
|
-
terminology_used: Dict[str, str] = Field(
|
|
122
|
-
default_factory=dict,
|
|
123
|
-
description="Special terminology mappings"
|
|
124
|
-
)
|
|
125
|
-
|
|
126
|
-
# Quality indicators
|
|
127
|
-
fluency_score: Optional[float] = Field(
|
|
128
|
-
None,
|
|
129
|
-
ge=0,
|
|
130
|
-
le=1,
|
|
131
|
-
description="Translation fluency score"
|
|
132
|
-
)
|
|
133
|
-
accuracy_score: Optional[float] = Field(
|
|
134
|
-
None,
|
|
135
|
-
ge=0,
|
|
136
|
-
le=1,
|
|
137
|
-
description="Translation accuracy score"
|
|
138
|
-
)
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
class BatchTranslationRequest(BaseModel):
|
|
142
|
-
"""Batch translation request"""
|
|
143
|
-
|
|
144
|
-
model_config = ConfigDict(
|
|
145
|
-
title="Batch Translation Request",
|
|
146
|
-
description="Request for batch translation of multiple texts",
|
|
147
|
-
validate_assignment=True,
|
|
148
|
-
extra="forbid"
|
|
149
|
-
)
|
|
150
|
-
|
|
151
|
-
texts: List[str] = Field(
|
|
152
|
-
...,
|
|
153
|
-
min_length=1,
|
|
154
|
-
description="Texts to translate"
|
|
155
|
-
)
|
|
156
|
-
source_language: LanguageCode = Field(
|
|
157
|
-
...,
|
|
158
|
-
description="Source language"
|
|
159
|
-
)
|
|
160
|
-
target_language: LanguageCode = Field(
|
|
161
|
-
...,
|
|
162
|
-
description="Target language"
|
|
163
|
-
)
|
|
164
|
-
context: Optional[str] = Field(
|
|
165
|
-
None,
|
|
166
|
-
description="Translation context"
|
|
167
|
-
)
|
|
168
|
-
|
|
169
|
-
# Batch options
|
|
170
|
-
preserve_order: bool = Field(
|
|
171
|
-
True,
|
|
172
|
-
description="Preserve order of translations"
|
|
173
|
-
)
|
|
174
|
-
fail_on_error: bool = Field(
|
|
175
|
-
False,
|
|
176
|
-
description="Fail entire batch on single error"
|
|
177
|
-
)
|
|
178
|
-
max_batch_size: Optional[int] = Field(
|
|
179
|
-
None,
|
|
180
|
-
ge=1,
|
|
181
|
-
le=100,
|
|
182
|
-
description="Maximum batch size"
|
|
183
|
-
)
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
class BatchTranslationResponse(BaseModel):
|
|
187
|
-
"""Batch translation result"""
|
|
188
|
-
|
|
189
|
-
model_config = ConfigDict(
|
|
190
|
-
title="Batch Translation Response",
|
|
191
|
-
description="Result of batch translation operation",
|
|
192
|
-
validate_assignment=True,
|
|
193
|
-
extra="forbid"
|
|
194
|
-
)
|
|
195
|
-
|
|
196
|
-
translations: List[TranslationResponse] = Field(
|
|
197
|
-
...,
|
|
198
|
-
description="Individual translation results"
|
|
199
|
-
)
|
|
200
|
-
|
|
201
|
-
# Batch metrics
|
|
202
|
-
total_texts: int = Field(
|
|
203
|
-
...,
|
|
204
|
-
ge=1,
|
|
205
|
-
description="Total number of texts processed"
|
|
206
|
-
)
|
|
207
|
-
successful_translations: int = Field(
|
|
208
|
-
...,
|
|
209
|
-
ge=0,
|
|
210
|
-
description="Number of successful translations"
|
|
211
|
-
)
|
|
212
|
-
failed_translations: int = Field(
|
|
213
|
-
...,
|
|
214
|
-
ge=0,
|
|
215
|
-
description="Number of failed translations"
|
|
216
|
-
)
|
|
217
|
-
|
|
218
|
-
# Performance metrics
|
|
219
|
-
total_processing_time_seconds: float = Field(
|
|
220
|
-
...,
|
|
221
|
-
ge=0,
|
|
222
|
-
description="Total processing time"
|
|
223
|
-
)
|
|
224
|
-
average_time_per_translation: float = Field(
|
|
225
|
-
...,
|
|
226
|
-
ge=0,
|
|
227
|
-
description="Average time per translation"
|
|
228
|
-
)
|
|
229
|
-
|
|
230
|
-
# Cost metrics
|
|
231
|
-
total_tokens_used: int = Field(
|
|
232
|
-
...,
|
|
233
|
-
ge=0,
|
|
234
|
-
description="Total tokens consumed"
|
|
235
|
-
)
|
|
236
|
-
total_cost_usd: float = Field(
|
|
237
|
-
...,
|
|
238
|
-
ge=0,
|
|
239
|
-
description="Total cost"
|
|
240
|
-
)
|
|
241
|
-
|
|
242
|
-
# Quality metrics
|
|
243
|
-
average_confidence: float = Field(
|
|
244
|
-
...,
|
|
245
|
-
ge=0,
|
|
246
|
-
le=1,
|
|
247
|
-
description="Average translation confidence"
|
|
248
|
-
)
|
|
249
|
-
cache_hit_rate: float = Field(
|
|
250
|
-
...,
|
|
251
|
-
ge=0,
|
|
252
|
-
le=1,
|
|
253
|
-
description="Cache hit rate"
|
|
254
|
-
)
|
|
255
|
-
|
|
256
|
-
# Error information
|
|
257
|
-
errors: List[Dict[str, Any]] = Field(
|
|
258
|
-
default_factory=list,
|
|
259
|
-
description="Details of any errors that occurred"
|
|
260
|
-
)
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
class JSONTranslationRequest(BaseModel):
|
|
264
|
-
"""Request for JSON structure translation"""
|
|
265
|
-
|
|
266
|
-
model_config = ConfigDict(
|
|
267
|
-
title="JSON Translation Request",
|
|
268
|
-
description="Request for translating JSON data while preserving structure",
|
|
269
|
-
validate_assignment=True,
|
|
270
|
-
extra="forbid"
|
|
271
|
-
)
|
|
272
|
-
|
|
273
|
-
json_data: Dict[str, Any] = Field(
|
|
274
|
-
...,
|
|
275
|
-
description="JSON data to translate"
|
|
276
|
-
)
|
|
277
|
-
source_language: LanguageCode = Field(
|
|
278
|
-
...,
|
|
279
|
-
description="Source language"
|
|
280
|
-
)
|
|
281
|
-
target_language: LanguageCode = Field(
|
|
282
|
-
...,
|
|
283
|
-
description="Target language"
|
|
284
|
-
)
|
|
285
|
-
|
|
286
|
-
# Translation options
|
|
287
|
-
preserve_keys: List[str] = Field(
|
|
288
|
-
default_factory=list,
|
|
289
|
-
description="Keys to preserve without translation"
|
|
290
|
-
)
|
|
291
|
-
translate_keys: bool = Field(
|
|
292
|
-
False,
|
|
293
|
-
description="Whether to translate object keys"
|
|
294
|
-
)
|
|
295
|
-
preserve_types: bool = Field(
|
|
296
|
-
True,
|
|
297
|
-
description="Preserve data types (numbers, booleans, etc.)"
|
|
298
|
-
)
|
|
299
|
-
|
|
300
|
-
# Context options
|
|
301
|
-
data_context: Optional[str] = Field(
|
|
302
|
-
None,
|
|
303
|
-
description="Context about the data (e.g., 'product_data', 'user_profile')"
|
|
304
|
-
)
|
|
305
|
-
field_contexts: Optional[Dict[str, str]] = Field(
|
|
306
|
-
None,
|
|
307
|
-
description="Specific context for individual fields"
|
|
308
|
-
)
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
class JSONTranslationResponse(BaseModel):
|
|
312
|
-
"""JSON translation result"""
|
|
313
|
-
|
|
314
|
-
model_config = ConfigDict(
|
|
315
|
-
title="JSON Translation Response",
|
|
316
|
-
description="Result of JSON structure translation",
|
|
317
|
-
validate_assignment=True,
|
|
318
|
-
extra="forbid"
|
|
319
|
-
)
|
|
320
|
-
|
|
321
|
-
original_data: Dict[str, Any] = Field(
|
|
322
|
-
...,
|
|
323
|
-
description="Original JSON data"
|
|
324
|
-
)
|
|
325
|
-
translated_data: Dict[str, Any] = Field(
|
|
326
|
-
...,
|
|
327
|
-
description="Translated JSON data"
|
|
328
|
-
)
|
|
329
|
-
|
|
330
|
-
# Translation metadata
|
|
331
|
-
fields_translated: List[str] = Field(
|
|
332
|
-
...,
|
|
333
|
-
description="List of fields that were translated"
|
|
334
|
-
)
|
|
335
|
-
fields_preserved: List[str] = Field(
|
|
336
|
-
...,
|
|
337
|
-
description="List of fields that were preserved"
|
|
338
|
-
)
|
|
339
|
-
|
|
340
|
-
# Quality metrics
|
|
341
|
-
translation_confidence: float = Field(
|
|
342
|
-
...,
|
|
343
|
-
ge=0,
|
|
344
|
-
le=1,
|
|
345
|
-
description="Overall translation confidence"
|
|
346
|
-
)
|
|
347
|
-
structure_preserved: bool = Field(
|
|
348
|
-
...,
|
|
349
|
-
description="Whether structure was preserved"
|
|
350
|
-
)
|
|
351
|
-
|
|
352
|
-
# Performance metrics
|
|
353
|
-
processing_time_seconds: float = Field(
|
|
354
|
-
...,
|
|
355
|
-
ge=0,
|
|
356
|
-
description="Processing time"
|
|
357
|
-
)
|
|
358
|
-
total_tokens_used: int = Field(
|
|
359
|
-
...,
|
|
360
|
-
ge=0,
|
|
361
|
-
description="Total tokens used"
|
|
362
|
-
)
|
|
363
|
-
cost_usd: float = Field(
|
|
364
|
-
...,
|
|
365
|
-
ge=0,
|
|
366
|
-
description="Translation cost"
|
|
367
|
-
)
|
|
368
|
-
|
|
369
|
-
# Detailed results
|
|
370
|
-
field_results: Dict[str, TranslationResponse] = Field(
|
|
371
|
-
default_factory=dict,
|
|
372
|
-
description="Individual translation results for each field"
|
|
373
|
-
)
|
|
374
|
-
|
|
375
|
-
# Error tracking
|
|
376
|
-
errors: List[Dict[str, Any]] = Field(
|
|
377
|
-
default_factory=list,
|
|
378
|
-
description="Any errors encountered during translation"
|
|
379
|
-
)
|
|
380
|
-
warnings: List[str] = Field(
|
|
381
|
-
default_factory=list,
|
|
382
|
-
description="Translation warnings"
|
|
383
|
-
)
|