aiecs 1.0.6__tar.gz → 1.0.7__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.
- {aiecs-1.0.6/aiecs.egg-info → aiecs-1.0.7}/PKG-INFO +2 -1
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/__init__.py +1 -1
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/llm/__init__.py +2 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/llm/googleai_client.py +1 -1
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/main.py +1 -1
- {aiecs-1.0.6 → aiecs-1.0.7/aiecs.egg-info}/PKG-INFO +2 -1
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs.egg-info/requires.txt +1 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/pyproject.toml +2 -1
- {aiecs-1.0.6 → aiecs-1.0.7}/LICENSE +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/MANIFEST.in +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/README.md +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/__main__.py +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/aiecs_client.py +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/application/__init__.py +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/application/executors/__init__.py +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/application/executors/operation_executor.py +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/config/__init__.py +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/config/config.py +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/config/registry.py +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/core/__init__.py +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/core/interface/__init__.py +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/core/interface/execution_interface.py +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/core/interface/storage_interface.py +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/domain/__init__.py +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/domain/community/collaborative_workflow.py +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/domain/community/community_integration.py +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/domain/community/community_manager.py +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/domain/community/decision_engine.py +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/domain/community/models/community_models.py +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/domain/community/resource_manager.py +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/domain/context/__init__.py +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/domain/context/context_engine.py +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/domain/context/conversation_models.py +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/domain/execution/__init__.py +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/domain/execution/model.py +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/domain/task/__init__.py +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/domain/task/dsl_processor.py +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/domain/task/model.py +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/domain/task/task_context.py +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/infrastructure/__init__.py +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/infrastructure/messaging/__init__.py +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/infrastructure/messaging/celery_task_manager.py +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/infrastructure/messaging/websocket_manager.py +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/infrastructure/monitoring/__init__.py +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/infrastructure/monitoring/executor_metrics.py +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/infrastructure/monitoring/structured_logger.py +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/infrastructure/monitoring/tracing_manager.py +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/infrastructure/persistence/__init__.py +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/infrastructure/persistence/context_engine_client.py +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/infrastructure/persistence/database_manager.py +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/infrastructure/persistence/file_storage.py +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/infrastructure/persistence/redis_client.py +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/llm/base_client.py +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/llm/client_factory.py +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/llm/custom_callbacks.py +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/llm/openai_client.py +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/llm/vertex_client.py +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/llm/xai_client.py +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/scripts/DEPENDENCY_SYSTEM_SUMMARY.md +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/scripts/README_DEPENDENCY_CHECKER.md +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/scripts/README_WEASEL_PATCH.md +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/scripts/__init__.py +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/scripts/dependency_checker.py +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/scripts/dependency_fixer.py +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/scripts/download_nlp_data.py +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/scripts/fix_weasel_validator.py +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/scripts/fix_weasel_validator.sh +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/scripts/patch_weasel_library.sh +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/scripts/quick_dependency_check.py +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/scripts/run_weasel_patch.sh +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/scripts/setup_nlp_data.sh +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/tasks/__init__.py +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/tasks/worker.py +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/tools/__init__.py +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/tools/base_tool.py +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/tools/langchain_adapter.py +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/tools/task_tools/__init__.py +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/tools/task_tools/chart_tool.py +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/tools/task_tools/classfire_tool.py +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/tools/task_tools/image_tool.py +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/tools/task_tools/office_tool.py +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/tools/task_tools/pandas_tool.py +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/tools/task_tools/report_tool.py +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/tools/task_tools/research_tool.py +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/tools/task_tools/scraper_tool.py +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/tools/task_tools/search_api.py +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/tools/task_tools/stats_tool.py +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/tools/temp_file_manager.py +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/tools/tool_executor/__init__.py +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/tools/tool_executor/tool_executor.py +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/utils/LLM_output_structor.py +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/utils/__init__.py +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/utils/base_callback.py +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/utils/execution_utils.py +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/utils/logging.py +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/utils/prompt_loader.py +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/utils/token_usage_repository.py +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/ws/__init__.py +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs/ws/socket_server.py +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs.egg-info/SOURCES.txt +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs.egg-info/dependency_links.txt +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs.egg-info/entry_points.txt +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/aiecs.egg-info/top_level.txt +0 -0
- {aiecs-1.0.6 → aiecs-1.0.7}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: aiecs
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.7
|
|
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
|
|
@@ -38,6 +38,7 @@ Requires-Dist: tenacity<10.0.0,>=9.1.2
|
|
|
38
38
|
Requires-Dist: flower<3.0.0,>=2.0.1
|
|
39
39
|
Requires-Dist: openai<1.76.0,>=1.68.2
|
|
40
40
|
Requires-Dist: google-cloud-aiplatform<2.0.0,>=1.80.0
|
|
41
|
+
Requires-Dist: google-generativeai<1.0.0,>=0.8.0
|
|
41
42
|
Requires-Dist: langchain<0.4.0,>=0.3.26
|
|
42
43
|
Requires-Dist: langgraph<0.6.0,>=0.5.3
|
|
43
44
|
Requires-Dist: weasel==0.4.1
|
|
@@ -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.
|
|
8
|
+
__version__ = "1.0.7"
|
|
9
9
|
__author__ = "AIECS Team"
|
|
10
10
|
__email__ = "iretbl@gmail.com"
|
|
11
11
|
|
|
@@ -26,6 +26,7 @@ from .client_factory import (
|
|
|
26
26
|
|
|
27
27
|
from .openai_client import OpenAIClient
|
|
28
28
|
from .vertex_client import VertexAIClient
|
|
29
|
+
from .googleai_client import GoogleAIClient
|
|
29
30
|
from .xai_client import XAIClient
|
|
30
31
|
|
|
31
32
|
__all__ = [
|
|
@@ -46,6 +47,7 @@ __all__ = [
|
|
|
46
47
|
# Individual clients
|
|
47
48
|
'OpenAIClient',
|
|
48
49
|
'VertexAIClient',
|
|
50
|
+
'GoogleAIClient',
|
|
49
51
|
'XAIClient',
|
|
50
52
|
|
|
51
53
|
# Convenience functions
|
|
@@ -4,7 +4,7 @@ import os
|
|
|
4
4
|
from typing import Dict, Any, Optional, List, AsyncGenerator
|
|
5
5
|
|
|
6
6
|
import google.generativeai as genai
|
|
7
|
-
from google.generativeai.types import GenerationConfig,
|
|
7
|
+
from google.generativeai.types import GenerationConfig, HarmCategory, HarmBlockThreshold
|
|
8
8
|
|
|
9
9
|
from aiecs.llm.base_client import BaseLLMClient, LLMMessage, LLMResponse, ProviderNotAvailableError, RateLimitError
|
|
10
10
|
from aiecs.config.config import get_settings
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: aiecs
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.7
|
|
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
|
|
@@ -38,6 +38,7 @@ Requires-Dist: tenacity<10.0.0,>=9.1.2
|
|
|
38
38
|
Requires-Dist: flower<3.0.0,>=2.0.1
|
|
39
39
|
Requires-Dist: openai<1.76.0,>=1.68.2
|
|
40
40
|
Requires-Dist: google-cloud-aiplatform<2.0.0,>=1.80.0
|
|
41
|
+
Requires-Dist: google-generativeai<1.0.0,>=0.8.0
|
|
41
42
|
Requires-Dist: langchain<0.4.0,>=0.3.26
|
|
42
43
|
Requires-Dist: langgraph<0.6.0,>=0.5.3
|
|
43
44
|
Requires-Dist: weasel==0.4.1
|
|
@@ -21,7 +21,7 @@ exclude = '''
|
|
|
21
21
|
|
|
22
22
|
[project]
|
|
23
23
|
name = "aiecs"
|
|
24
|
-
version = "1.0.
|
|
24
|
+
version = "1.0.7"
|
|
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"}
|
|
@@ -71,6 +71,7 @@ dependencies = [
|
|
|
71
71
|
# =============================================================================
|
|
72
72
|
"openai (>=1.68.2,<1.76.0)", # OpenAI API client for GPT models
|
|
73
73
|
"google-cloud-aiplatform (>=1.80.0,<2.0.0)", # Google Cloud AI Platform with Vertex AI (updated to latest)
|
|
74
|
+
"google-generativeai (>=0.8.0,<1.0.0)", # Google Generative AI SDK for Gemini models
|
|
74
75
|
"langchain (>=0.3.26,<0.4.0)", # Framework for developing LLM applications
|
|
75
76
|
"langgraph (>=0.5.3,<0.6.0)", # Graph-based state machine for LangChain
|
|
76
77
|
"weasel (==0.4.1)", # SpaCy's configuration system
|
|
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
|
|
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
|
|
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
|
|
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
|