agent-framework-lib 0.8.8.post6__tar.gz → 0.8.8.post7__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.
- {agent_framework_lib-0.8.8.post6/agent_framework_lib.egg-info → agent_framework_lib-0.8.8.post7}/PKG-INFO +1 -1
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/skills/builtin/scripts/create_and_register.py +32 -17
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/tools/shell_tool.py +7 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7/agent_framework_lib.egg-info}/PKG-INFO +1 -1
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/pyproject.toml +1 -1
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/ARCHITECTURE.md +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/LICENSE +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/MANIFEST.in +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/README.md +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/__init__.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/a2a/__init__.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/a2a/base.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/a2a/endpoints/__init__.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/a2a/endpoints/a2a_router.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/a2a/endpoints/agent_card_builder.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/a2a/endpoints/agent_card_skill_builder.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/a2a/endpoints/jsonrpc_dispatcher.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/a2a/endpoints/models_jsonrpc.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/a2a/endpoints/sse_wrapper.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/a2a/endpoints/translation_layer.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/a2a/models.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/a2a/providers/__init__.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/a2a/providers/elasticsearch_provider.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/a2a/providers/postgres_provider.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/capabilities/__init__.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/capabilities/resolver.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/code_delivery/__init__.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/code_delivery/audit.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/code_delivery/config.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/code_delivery/crypto.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/code_delivery/git_provider.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/code_delivery/herdr_client.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/code_delivery/models.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/code_delivery/orchestrator.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/code_delivery/store.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/code_delivery/tools.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/core/__init__.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/core/activity_formatter.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/core/agent_interface.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/core/agent_provider.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/core/base_agent.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/core/context_budget.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/core/context_summarizer.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/core/elasticsearch_config_provider.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/core/execution_controller.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/core/implementation_validator.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/core/interruption_message.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/core/knowledge_state.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/core/loop_detector.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/core/model_clients.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/core/model_config.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/core/model_router.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/core/models.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/core/prompt_builder.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/core/provider_calibration.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/core/scratchpad_compressor.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/core/scratchpad_serializer.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/core/state_manager.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/core/step_display_config.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/core/streaming_parts_accumulator.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/implementations/__init__.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/implementations/budget_aware_agent.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/implementations/llamaindex_agent.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/implementations/llamaindex_memory_adapter.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/implementations/microsoft_agent.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/memory/__init__.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/memory/agent_mixin.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/memory/base.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/memory/config.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/memory/hypothesis_engine.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/memory/implicit_feedback.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/memory/manager.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/memory/personalization.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/memory/providers/__init__.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/memory/providers/graphiti_provider.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/memory/providers/memori_provider.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/memory/response_lessons.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/memory/tools.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/memory/work_patterns.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/monitoring/__init__.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/monitoring/api_timing_tracker.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/monitoring/elasticsearch_circuit_breaker.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/monitoring/elasticsearch_logging.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/monitoring/error_handling.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/monitoring/error_logging.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/monitoring/llm_auto_instrumentor.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/monitoring/llm_metrics.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/monitoring/llm_metrics_collector.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/monitoring/llm_metrics_extractor.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/monitoring/metrics_aggregator.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/monitoring/metrics_config.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/monitoring/observability_manager.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/monitoring/otel_instrumentor.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/monitoring/otel_logging_handler.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/monitoring/otel_metrics_recorder.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/monitoring/otel_setup.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/monitoring/performance_monitor.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/monitoring/progress_tracker.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/monitoring/resource_manager.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/monitoring/resource_metrics_collector.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/monitoring/streaming_latency_tracer.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/monitoring/timing_tracker.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/monitoring/token_counter.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/monitoring/tracing_context.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/notifications/__init__.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/notifications/hub.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/notifications/webhook_notifier.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/processing/__init__.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/processing/ai_content_management.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/processing/markdown_converter.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/processing/multimodal_integration.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/processing/rich_content_validation.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/py.typed +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/security/__init__.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/security/authz.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/security/file_view_token.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/security/input_guard.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/security/openshell_policy.yaml +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/security/pii_redactor.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/security/sandbox.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/security/sandbox_provider.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/security/secret_redactor.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/security/shell_env.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/security/upload_token.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/session/__init__.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/session/elasticsearch_session_storage.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/session/session_storage.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/skills/__init__.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/skills/agent_mixin.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/skills/base.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/skills/builtin/__init__.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/skills/builtin/scripts/__init__.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/skills/builtin/scripts/register_to_storage.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/skills/builtin/skills/chart/SKILL.md +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/skills/builtin/skills/chart/chart_to_image.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/skills/builtin/skills/chart/vendor_chart.umd.min.js +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/skills/builtin/skills/code_delivery/SKILL.md +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/skills/builtin/skills/code_format/SKILL.md +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/skills/builtin/skills/code_format/format_python.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/skills/builtin/skills/csv/SKILL.md +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/skills/builtin/skills/csv/create_csv.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/skills/builtin/skills/csv/read_csv.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/skills/builtin/skills/csv/transform_csv.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/skills/builtin/skills/data_format/SKILL.md +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/skills/builtin/skills/data_format/json_to_yaml.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/skills/builtin/skills/data_format/yaml_to_json.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/skills/builtin/skills/drawio/SKILL.md +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/skills/builtin/skills/drawio/create_drawio.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/skills/builtin/skills/email_template/SKILL.md +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/skills/builtin/skills/excel/SKILL.md +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/skills/builtin/skills/excel/create_excel.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/skills/builtin/skills/file/SKILL.md +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/skills/builtin/skills/file/create_file.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/skills/builtin/skills/file/list_files.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/skills/builtin/skills/file/read_file.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/skills/builtin/skills/file_access/SKILL.md +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/skills/builtin/skills/file_access/download_to_local.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/skills/builtin/skills/file_access/get_file_path.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/skills/builtin/skills/form/SKILL.md +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/skills/builtin/skills/image_display/SKILL.md +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/skills/builtin/skills/image_gen/SKILL.md +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/skills/builtin/skills/image_gen/create_image.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/skills/builtin/skills/image_gen/generate_image.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/skills/builtin/skills/mermaid/SKILL.md +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/skills/builtin/skills/mermaid/mermaid_to_image.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/skills/builtin/skills/mermaid/vendor_mermaid.umd.min.js +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/skills/builtin/skills/multimodal/SKILL.md +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/skills/builtin/skills/optionsblock/SKILL.md +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/skills/builtin/skills/powerpoint/SKILL.md +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/skills/builtin/skills/powerpoint/create_powerpoint.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/skills/builtin/skills/powerpoint/templates/Big Data Infographics.pptx +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/skills/builtin/skills/powerpoint/templates/Executive Design Pitch Deck.pptx +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/skills/builtin/skills/powerpoint/templates/Management Consulting Toolkit.pptx +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/skills/builtin/skills/powerpoint/templates/__init__.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/skills/builtin/skills/powerpoint/templates/generate_templates.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/skills/builtin/skills/skill_creator/SKILL.md +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/skills/builtin/skills/skill_creator/skill_api.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/skills/builtin/skills/table/SKILL.md +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/skills/builtin/skills/table/table_to_image.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/skills/builtin/skills/unified_pdf/SKILL.md +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/skills/builtin/skills/unified_pdf/create_pdf.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/skills/builtin/skills/web_news_search/SKILL.md +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/skills/builtin/skills/web_news_search/web_news_search.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/skills/builtin/skills/word/SKILL.md +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/skills/builtin/skills/word/create_word.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/skills/custom_skill_manager.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/skills/discovery_prompt.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/skills/markdown_loader.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/skills/tools.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/storage/__init__.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/storage/file_storages.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/storage/file_system_management.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/storage/storage_optimizer.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/subagents/__init__.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/subagents/executor.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/subagents/message_injector.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/subagents/message_queue.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/subagents/retrigger.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/subagents/spawn_tool.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/tools/__init__.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/tools/activity_callback.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/tools/adaptive_pdf_css.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/tools/base.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/tools/html_content_analyzer.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/tools/multimodal_tools.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/tools/pdf_image_scaler.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/tools/sizing_config.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/tools/web_fetch_tool.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/tools/web_search_tool.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/utils/__init__.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/utils/path_utils.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/utils/post_install.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/utils/session_title_generator.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/utils/source_detector.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/utils/special_blocks.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/web/__init__.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/web/admin_auth.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/web/admin_models.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/web/admin_router.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/web/admin_services.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/web/api_timing_middleware.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/web/docs/A2A_GUIDE.md +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/web/docs/BUILTIN_SKILLS_REFERENCE.md +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/web/docs/CREATING_AGENTS.md +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/web/docs/CUSTOM_SKILLS_GUIDE.md +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/web/docs/DOCKER_SETUP.md +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/web/docs/Dockerfile +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/web/docs/GETTING_STARTED.md +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/web/docs/GITNEXUS_USER_GUIDE.md +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/web/docs/MEMORY_INSTALLATION.md +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/web/docs/README.md +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/web/docs/TOOLS_AND_MCP_GUIDE.md +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/web/docs/WORKSPACE_INTEGRATION.md +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/web/docs/api-reference.md +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/web/docs/configuration.md +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/web/docs/docker-compose.yml +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/web/docs/examples/agent_example_multi_skills.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/web/docs/examples/agent_with_file_storage.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/web/docs/examples/agent_with_mcp.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/web/docs/examples/agent_with_memory.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/web/docs/examples/agent_with_memory_graphiti.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/web/docs/examples/agent_with_memory_hybrid.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/web/docs/examples/agent_with_memory_simple.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/web/docs/examples/custom_framework_agent.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/web/docs/examples/simple_agent.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/web/docs/examples/skills_demo_agent.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/web/docs/installation-guide.md +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/web/documentation_generator.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/web/gitnexus_client.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/web/helper_agent.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/web/helper_ui.html +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/web/modern_ui.html +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/web/observability/kibana-llm-dashboard-setup.json +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/web/observability/kibana-resource-metrics-dashboard.json +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/web/otel_tracing_middleware.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/web/server.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/web/skills_router.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/web/test_app.html +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/workspace/__init__.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/workspace/artefacts.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/workspace/client.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/workspace/config.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/workspace/context.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/workspace/cursor.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/workspace/memory.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/workspace/models.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/workspace/poller.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/workspace/preferences.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/workspace/router.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/workspace/session.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/workspace/subscription.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework_lib.egg-info/SOURCES.txt +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework_lib.egg-info/dependency_links.txt +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework_lib.egg-info/entry_points.txt +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework_lib.egg-info/requires.txt +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework_lib.egg-info/top_level.txt +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/docs/A2A_GUIDE.md +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/docs/ACTIVITY_OUTPUT_PART.md +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/docs/ARCHITECTURE_DIAGRAM.md +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/docs/BUILTIN_SKILLS_REFERENCE.md +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/docs/CANCEL_AND_INTERRUPT_FRONTEND.md +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/docs/CONCURRENCE_VS_PARALLELISME_GUIDE.md +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/docs/CREATING_AGENTS.md +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/docs/CUSTOM_SKILLS_GUIDE.md +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/docs/DEEPEVAL_TEST_REPORT.md +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/docs/DIAGNOSTIC_SANDBOX_SKILLS.md +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/docs/DOCKER_SETUP.md +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/docs/ELASTICSEARCH_DATA_STRUCTURES.md +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/docs/FILE_DOWNLOAD_LINKS.md +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/docs/FILE_STORAGE_GUIDE.md +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/docs/GETTING_STARTED.md +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/docs/GITNEXUS_USER_GUIDE.md +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/docs/HISTORY_MESSAGE_FORMAT.md +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/docs/IMPLEMENTATION_GUIDE_NEW_AGENT.md +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/docs/MEMORY_INSTALLATION.md +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/docs/MODIFICATIONS_CONCURRENCE.md +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/docs/MULTIMODAL_TOOLS_GUIDE.md +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/docs/OBSERVABILITY_GUIDE.md +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/docs/OPENSHELL_GATEWAY_HOST_SETUP.md +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/docs/PYPI_PUBLISHING.md +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/docs/QA_STREAMING_LATENCY.md +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/docs/SCREENSHOTS_GUIDE.md +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/docs/SECRETS_MANAGEMENT.md +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/docs/SECURITY_HARDENING.md +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/docs/SPEC_CROSS_MODEL_HISTORY_CONVERSION.md +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/docs/SSE_NOTIFICATIONS_GUIDE.md +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/docs/STREAMING_EVENTS_FRONTEND.md +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/docs/TOOLS_AND_MCP_GUIDE.md +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/docs/WORKSPACE_INTEGRATION.md +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/docs/api-reference.md +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/docs/configuration.md +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/docs/framework_audit_remarques.md +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/docs/helper_agent.md +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/docs/index.md +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/docs/installation-guide.md +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/examples/README.md +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/examples/agent_context_budget_test.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/examples/agent_example_multi_skills.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/examples/agent_exemple_test.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/examples/agent_training_with_apo.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/examples/agent_with_custom_tools_file_storage.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/examples/agent_with_file_storage.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/examples/agent_with_mcp.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/examples/agent_with_memory_graphiti.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/examples/agent_with_memory_hybrid.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/examples/agent_with_memory_simple.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/examples/agent_with_personalization.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/examples/biagenttest.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/examples/custom_framework_agent.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/examples/dependencies/docker-compose.yaml +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/examples/pyproject.toml +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/examples/simple_agent.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/examples/skills_demo_agent.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/examples/test_work_patterns_live.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/examples/workspace_test_agent.py +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/setup.cfg +0 -0
- {agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/setup.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: agent-framework-lib
|
|
3
|
-
Version: 0.8.8.
|
|
3
|
+
Version: 0.8.8.post7
|
|
4
4
|
Summary: A comprehensive Python framework for building and serving conversational AI agents with FastAPI
|
|
5
5
|
Author-email: Sebastian Pavel <sebastian@cinco.ai>, Elliott Girard <elliott.girard@icloud.com>
|
|
6
6
|
Maintainer-email: Sebastian Pavel <sebastian@cinco.ai>
|
|
@@ -117,7 +117,14 @@ def _verify_file(filepath: str) -> None:
|
|
|
117
117
|
|
|
118
118
|
|
|
119
119
|
def _upload_file(filepath: str) -> dict:
|
|
120
|
-
"""Upload the file to the Storage API
|
|
120
|
+
"""Upload the file to the Storage API. NEVER fatal.
|
|
121
|
+
|
|
122
|
+
Returns the server response dict on success, or {} on ANY failure — the
|
|
123
|
+
parent ShellTool finalizer then delivers the file from AGENT_OUTPUT_DIR
|
|
124
|
+
(collect_out). A failed upload must not exit non-zero: that derailed the
|
|
125
|
+
agent into improvising its own (wrong) delivery, which was worse than just
|
|
126
|
+
letting the finalizer do its job.
|
|
127
|
+
"""
|
|
121
128
|
user_id = os.environ.get("AGENT_USER_ID", "default_user")
|
|
122
129
|
session_id = os.environ.get("AGENT_SESSION_ID", "")
|
|
123
130
|
host = os.environ.get("AGENT_HOST", "localhost")
|
|
@@ -141,12 +148,13 @@ def _upload_file(filepath: str) -> dict:
|
|
|
141
148
|
try:
|
|
142
149
|
with urllib.request.urlopen(req, timeout=30) as resp:
|
|
143
150
|
return json.loads(resp.read().decode("utf-8"))
|
|
144
|
-
except
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
151
|
+
except Exception as e: # noqa: BLE001 — soft-fail: finalizer delivers instead
|
|
152
|
+
print(
|
|
153
|
+
f"[create_and_register] direct upload failed ({e}); "
|
|
154
|
+
"falling back to automatic delivery by the framework",
|
|
155
|
+
file=sys.stderr,
|
|
156
|
+
)
|
|
157
|
+
return {}
|
|
150
158
|
|
|
151
159
|
|
|
152
160
|
def _cleanup(filepath: str) -> bool:
|
|
@@ -183,11 +191,13 @@ def main() -> None:
|
|
|
183
191
|
|
|
184
192
|
_verify_file(filepath)
|
|
185
193
|
|
|
186
|
-
# Delivery is
|
|
187
|
-
#
|
|
188
|
-
# in the sandbox
|
|
189
|
-
#
|
|
190
|
-
#
|
|
194
|
+
# Delivery is belt-and-braces. PRIMARY: a direct upload to the agent's
|
|
195
|
+
# callback endpoint when AGENT_SKILL_HTTP_UPLOAD is set (the framework sets
|
|
196
|
+
# it in the sandbox when the callback port is published) — on success the
|
|
197
|
+
# download link is immediate. FALLBACK: the upload soft-fails (returns {})
|
|
198
|
+
# and the parent ShellTool finalizer delivers the file from AGENT_OUTPUT_DIR.
|
|
199
|
+
# Either way this script exits 0 with a clear success — the agent must never
|
|
200
|
+
# be tempted to improvise its own delivery.
|
|
191
201
|
do_upload = os.environ.get("AGENT_SKILL_HTTP_UPLOAD", "").lower() in ("1", "true", "yes")
|
|
192
202
|
upload_result = _upload_file(filepath) if do_upload else {}
|
|
193
203
|
|
|
@@ -213,9 +223,9 @@ def main() -> None:
|
|
|
213
223
|
"filename": os.path.basename(filepath),
|
|
214
224
|
"mime_type": mime,
|
|
215
225
|
"local_cleaned": local_cleaned,
|
|
216
|
-
#
|
|
217
|
-
#
|
|
218
|
-
#
|
|
226
|
+
# Whether the direct upload succeeded or the parent finalizer delivers,
|
|
227
|
+
# the file ALWAYS reaches storage. The agent must NOT try to upload or
|
|
228
|
+
# authenticate anything itself.
|
|
219
229
|
"delivery": "automatic",
|
|
220
230
|
"message": (
|
|
221
231
|
f"File '{os.path.basename(filepath)}' created successfully and is being "
|
|
@@ -223,11 +233,16 @@ def main() -> None:
|
|
|
223
233
|
"command's result. Do not upload or authenticate."
|
|
224
234
|
),
|
|
225
235
|
}
|
|
226
|
-
#
|
|
227
|
-
|
|
236
|
+
# Direct upload succeeded → surface the storage fields right away (the
|
|
237
|
+
# finalizer sees the file_id in stdout and will not re-register the file).
|
|
238
|
+
if upload_result.get("file_id"):
|
|
228
239
|
output["file_id"] = upload_result.get("file_id", "")
|
|
229
240
|
output["download_url"] = upload_result.get("download_url", "")
|
|
230
241
|
output["size_bytes"] = upload_result.get("size_bytes", 0)
|
|
242
|
+
output["message"] = (
|
|
243
|
+
f"File '{os.path.basename(filepath)}' created and stored — "
|
|
244
|
+
f"download link: {output['download_url']}"
|
|
245
|
+
)
|
|
231
246
|
print(json.dumps(output))
|
|
232
247
|
|
|
233
248
|
|
|
@@ -768,6 +768,13 @@ class ShellTool(AgentTool):
|
|
|
768
768
|
)
|
|
769
769
|
env["AGENT_HOST"] = callback_host
|
|
770
770
|
env["AGENT_PORT"] = str(callback_port)
|
|
771
|
+
# Belt-and-braces delivery: enable the skill's DIRECT upload to the
|
|
772
|
+
# callback endpoint (PRIMARY — immediate download link; requires the
|
|
773
|
+
# callback port to be published, see AGENT_SANDBOX_CALLBACK_PORT). The
|
|
774
|
+
# upload soft-fails: on any error the file stays in AGENT_OUTPUT_DIR and
|
|
775
|
+
# the parent finalizer delivers it via collect_out (FALLBACK). Set
|
|
776
|
+
# AGENT_SKILL_HTTP_UPLOAD=0 in the host env to force finalizer-only.
|
|
777
|
+
env["AGENT_SKILL_HTTP_UPLOAD"] = os.environ.get("AGENT_SKILL_HTTP_UPLOAD", "1")
|
|
771
778
|
# Tell upload scripts whether to authenticate.
|
|
772
779
|
env["REQUIRE_AUTH"] = os.environ.get("REQUIRE_AUTH", "false")
|
|
773
780
|
# Scoped, short-lived session token (HMAC, user/session) so the sandbox
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: agent-framework-lib
|
|
3
|
-
Version: 0.8.8.
|
|
3
|
+
Version: 0.8.8.post7
|
|
4
4
|
Summary: A comprehensive Python framework for building and serving conversational AI agents with FastAPI
|
|
5
5
|
Author-email: Sebastian Pavel <sebastian@cinco.ai>, Elliott Girard <elliott.girard@icloud.com>
|
|
6
6
|
Maintainer-email: Sebastian Pavel <sebastian@cinco.ai>
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "agent-framework-lib"
|
|
7
|
-
version = "0.8.
|
|
7
|
+
version = "0.8.8post7"
|
|
8
8
|
description = "A comprehensive Python framework for building and serving conversational AI agents with FastAPI"
|
|
9
9
|
readme = {file = "README.md", content-type = "text/markdown"}
|
|
10
10
|
license = {text = "MIT"}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/__init__.py
RENAMED
|
File without changes
|
{agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/a2a/__init__.py
RENAMED
|
File without changes
|
{agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/a2a/base.py
RENAMED
|
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
|
{agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/a2a/models.py
RENAMED
|
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
|
{agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/core/__init__.py
RENAMED
|
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
|
{agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/core/models.py
RENAMED
|
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
|
{agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/memory/base.py
RENAMED
|
File without changes
|
{agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/memory/config.py
RENAMED
|
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
|
{agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/memory/tools.py
RENAMED
|
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
|
{agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/py.typed
RENAMED
|
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
|
{agent_framework_lib-0.8.8.post6 → agent_framework_lib-0.8.8.post7}/agent_framework/skills/base.py
RENAMED
|
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
|