aiecs 1.0.4__tar.gz → 1.0.5__tar.gz

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.

Potentially problematic release.


This version of aiecs might be problematic. Click here for more details.

Files changed (96) hide show
  1. {aiecs-1.0.4/aiecs.egg-info → aiecs-1.0.5}/PKG-INFO +1 -1
  2. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs/__init__.py +1 -1
  3. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs/llm/custom_callbacks.py +3 -3
  4. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs/llm/openai_client.py +1 -1
  5. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs/llm/vertex_client.py +1 -1
  6. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs/llm/xai_client.py +1 -1
  7. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs/main.py +1 -1
  8. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs/utils/token_usage_repository.py +1 -1
  9. {aiecs-1.0.4 → aiecs-1.0.5/aiecs.egg-info}/PKG-INFO +1 -1
  10. {aiecs-1.0.4 → aiecs-1.0.5}/pyproject.toml +1 -1
  11. {aiecs-1.0.4 → aiecs-1.0.5}/LICENSE +0 -0
  12. {aiecs-1.0.4 → aiecs-1.0.5}/MANIFEST.in +0 -0
  13. {aiecs-1.0.4 → aiecs-1.0.5}/README.md +0 -0
  14. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs/__main__.py +0 -0
  15. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs/aiecs_client.py +0 -0
  16. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs/application/__init__.py +0 -0
  17. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs/application/executors/__init__.py +0 -0
  18. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs/application/executors/operation_executor.py +0 -0
  19. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs/config/__init__.py +0 -0
  20. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs/config/config.py +0 -0
  21. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs/config/registry.py +0 -0
  22. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs/core/__init__.py +0 -0
  23. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs/core/interface/__init__.py +0 -0
  24. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs/core/interface/execution_interface.py +0 -0
  25. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs/core/interface/storage_interface.py +0 -0
  26. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs/domain/__init__.py +0 -0
  27. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs/domain/context/__init__.py +0 -0
  28. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs/domain/context/context_engine.py +0 -0
  29. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs/domain/context/conversation_models.py +0 -0
  30. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs/domain/execution/__init__.py +0 -0
  31. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs/domain/execution/model.py +0 -0
  32. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs/domain/task/__init__.py +0 -0
  33. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs/domain/task/dsl_processor.py +0 -0
  34. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs/domain/task/model.py +0 -0
  35. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs/domain/task/task_context.py +0 -0
  36. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs/infrastructure/__init__.py +0 -0
  37. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs/infrastructure/messaging/__init__.py +0 -0
  38. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs/infrastructure/messaging/celery_task_manager.py +0 -0
  39. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs/infrastructure/messaging/websocket_manager.py +0 -0
  40. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs/infrastructure/monitoring/__init__.py +0 -0
  41. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs/infrastructure/monitoring/executor_metrics.py +0 -0
  42. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs/infrastructure/monitoring/structured_logger.py +0 -0
  43. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs/infrastructure/monitoring/tracing_manager.py +0 -0
  44. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs/infrastructure/persistence/__init__.py +0 -0
  45. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs/infrastructure/persistence/database_manager.py +0 -0
  46. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs/infrastructure/persistence/file_storage.py +0 -0
  47. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs/infrastructure/persistence/redis_client.py +0 -0
  48. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs/llm/__init__.py +0 -0
  49. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs/llm/base_client.py +0 -0
  50. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs/llm/client_factory.py +0 -0
  51. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs/scripts/DEPENDENCY_SYSTEM_SUMMARY.md +0 -0
  52. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs/scripts/README_DEPENDENCY_CHECKER.md +0 -0
  53. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs/scripts/README_WEASEL_PATCH.md +0 -0
  54. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs/scripts/__init__.py +0 -0
  55. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs/scripts/dependency_checker.py +0 -0
  56. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs/scripts/dependency_fixer.py +0 -0
  57. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs/scripts/download_nlp_data.py +0 -0
  58. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs/scripts/fix_weasel_validator.py +0 -0
  59. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs/scripts/fix_weasel_validator.sh +0 -0
  60. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs/scripts/patch_weasel_library.sh +0 -0
  61. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs/scripts/quick_dependency_check.py +0 -0
  62. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs/scripts/run_weasel_patch.sh +0 -0
  63. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs/scripts/setup_nlp_data.sh +0 -0
  64. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs/tasks/__init__.py +0 -0
  65. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs/tasks/worker.py +0 -0
  66. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs/tools/__init__.py +0 -0
  67. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs/tools/base_tool.py +0 -0
  68. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs/tools/langchain_adapter.py +0 -0
  69. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs/tools/task_tools/__init__.py +0 -0
  70. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs/tools/task_tools/chart_tool.py +0 -0
  71. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs/tools/task_tools/classfire_tool.py +0 -0
  72. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs/tools/task_tools/image_tool.py +0 -0
  73. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs/tools/task_tools/office_tool.py +0 -0
  74. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs/tools/task_tools/pandas_tool.py +0 -0
  75. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs/tools/task_tools/report_tool.py +0 -0
  76. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs/tools/task_tools/research_tool.py +0 -0
  77. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs/tools/task_tools/scraper_tool.py +0 -0
  78. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs/tools/task_tools/search_api.py +0 -0
  79. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs/tools/task_tools/stats_tool.py +0 -0
  80. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs/tools/temp_file_manager.py +0 -0
  81. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs/tools/tool_executor/__init__.py +0 -0
  82. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs/tools/tool_executor/tool_executor.py +0 -0
  83. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs/utils/LLM_output_structor.py +0 -0
  84. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs/utils/__init__.py +0 -0
  85. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs/utils/base_callback.py +0 -0
  86. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs/utils/execution_utils.py +0 -0
  87. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs/utils/logging.py +0 -0
  88. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs/utils/prompt_loader.py +0 -0
  89. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs/ws/__init__.py +0 -0
  90. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs/ws/socket_server.py +0 -0
  91. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs.egg-info/SOURCES.txt +0 -0
  92. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs.egg-info/dependency_links.txt +0 -0
  93. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs.egg-info/entry_points.txt +0 -0
  94. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs.egg-info/requires.txt +0 -0
  95. {aiecs-1.0.4 → aiecs-1.0.5}/aiecs.egg-info/top_level.txt +0 -0
  96. {aiecs-1.0.4 → aiecs-1.0.5}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: aiecs
3
- Version: 1.0.4
3
+ Version: 1.0.5
4
4
  Summary: AI Execute Services - A middleware framework for AI-powered task execution and tool orchestration
5
5
  Author-email: AIECS Team <iretbl@gmail.com>
6
6
  License-Expression: MIT
@@ -5,7 +5,7 @@ A powerful Python middleware framework for building AI-powered applications
5
5
  with tool orchestration, task execution, and multi-provider LLM support.
6
6
  """
7
7
 
8
- __version__ = "1.0.4"
8
+ __version__ = "1.0.5"
9
9
  __author__ = "AIECS Team"
10
10
  __email__ = "iretbl@gmail.com"
11
11
 
@@ -2,11 +2,11 @@ from typing import Any, List, Optional
2
2
  import logging
3
3
 
4
4
  # Import the base callback handler from utils
5
- from ..utils.base_callback import CustomAsyncCallbackHandler
5
+ from aiecs.utils.base_callback import CustomAsyncCallbackHandler
6
6
  # Import LLM types for internal use only
7
- from .base_client import LLMMessage, LLMResponse
7
+ from aiecs.llm.base_client import LLMMessage, LLMResponse
8
8
  # Import token usage repository
9
- from ..utils.token_usage_repository import token_usage_repo
9
+ from aiecs.utils.token_usage_repository import token_usage_repo
10
10
 
11
11
  logger = logging.getLogger(__name__)
12
12
 
@@ -5,7 +5,7 @@ from openai import AsyncOpenAI
5
5
  from tenacity import retry, stop_after_attempt, wait_exponential, retry_if_exception_type
6
6
  import httpx
7
7
 
8
- from .base_client import BaseLLMClient, LLMMessage, LLMResponse, ProviderNotAvailableError, RateLimitError
8
+ from aiecs.llm.base_client import BaseLLMClient, LLMMessage, LLMResponse, ProviderNotAvailableError, RateLimitError
9
9
  from aiecs.config.config import get_settings
10
10
 
11
11
  logger = logging.getLogger(__name__)
@@ -6,7 +6,7 @@ from vertexai.generative_models import GenerativeModel, HarmCategory, HarmBlockT
6
6
  import vertexai
7
7
  from google.oauth2 import service_account
8
8
 
9
- from .base_client import BaseLLMClient, LLMMessage, LLMResponse, ProviderNotAvailableError, RateLimitError
9
+ from aiecs.llm.base_client import BaseLLMClient, LLMMessage, LLMResponse, ProviderNotAvailableError, RateLimitError
10
10
  from aiecs.config.config import get_settings
11
11
 
12
12
  logger = logging.getLogger(__name__)
@@ -5,7 +5,7 @@ from typing import Dict, Any, Optional, List, AsyncGenerator
5
5
  from openai import AsyncOpenAI
6
6
  from tenacity import retry, stop_after_attempt, wait_exponential, retry_if_exception_type
7
7
 
8
- from .base_client import BaseLLMClient, LLMMessage, LLMResponse, ProviderNotAvailableError, RateLimitError
8
+ from aiecs.llm.base_client import BaseLLMClient, LLMMessage, LLMResponse, ProviderNotAvailableError, RateLimitError
9
9
  from aiecs.config.config import get_settings
10
10
 
11
11
  logger = logging.getLogger(__name__)
@@ -106,7 +106,7 @@ async def lifespan(app: FastAPI):
106
106
  app = FastAPI(
107
107
  title="AIECS - AI Execute Services",
108
108
  description="Middleware service for AI-powered task execution and tool orchestration",
109
- version="1.0.4",
109
+ version="1.0.5",
110
110
  lifespan=lifespan
111
111
  )
112
112
 
@@ -1,7 +1,7 @@
1
1
  from datetime import datetime
2
2
  from typing import Optional, Dict, Any
3
3
  import logging
4
- from ..infrastructure.persistence.redis_client import get_redis_client
4
+ from aiecs.infrastructure.persistence.redis_client import get_redis_client
5
5
 
6
6
  logger = logging.getLogger(__name__)
7
7
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: aiecs
3
- Version: 1.0.4
3
+ Version: 1.0.5
4
4
  Summary: AI Execute Services - A middleware framework for AI-powered task execution and tool orchestration
5
5
  Author-email: AIECS Team <iretbl@gmail.com>
6
6
  License-Expression: MIT
@@ -21,7 +21,7 @@ exclude = '''
21
21
 
22
22
  [project]
23
23
  name = "aiecs"
24
- version = "1.0.4"
24
+ version = "1.0.5"
25
25
  description = "AI Execute Services - A middleware framework for AI-powered task execution and tool orchestration"
26
26
  authors = [
27
27
  {name = "AIECS Team", email = "iretbl@gmail.com"}
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes