agent-framework-lib 0.6.3.post4__tar.gz → 0.7.0__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.
Files changed (268) hide show
  1. {agent_framework_lib-0.6.3.post4/agent_framework_lib.egg-info → agent_framework_lib-0.7.0}/PKG-INFO +6 -5
  2. {agent_framework_lib-0.6.3.post4/agent_framework/web/docs → agent_framework_lib-0.7.0}/README.md +5 -4
  3. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/skills/base.py +17 -1
  4. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/skills/markdown_loader.py +3 -0
  5. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/web/modern_ui.html +58 -6
  6. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0/agent_framework_lib.egg-info}/PKG-INFO +6 -5
  7. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/docs/CREATING_AGENTS.md +1 -1
  8. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/pyproject.toml +1 -1
  9. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/ARCHITECTURE.md +0 -0
  10. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/LICENSE +0 -0
  11. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/MANIFEST.in +0 -0
  12. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/__init__.py +0 -0
  13. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/a2a/__init__.py +0 -0
  14. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/a2a/base.py +0 -0
  15. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/a2a/endpoints/__init__.py +0 -0
  16. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/a2a/endpoints/a2a_router.py +0 -0
  17. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/a2a/endpoints/agent_card_builder.py +0 -0
  18. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/a2a/endpoints/agent_card_skill_builder.py +0 -0
  19. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/a2a/endpoints/jsonrpc_dispatcher.py +0 -0
  20. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/a2a/endpoints/models_jsonrpc.py +0 -0
  21. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/a2a/endpoints/sse_wrapper.py +0 -0
  22. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/a2a/endpoints/translation_layer.py +0 -0
  23. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/a2a/models.py +0 -0
  24. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/a2a/providers/__init__.py +0 -0
  25. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/a2a/providers/elasticsearch_provider.py +0 -0
  26. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/a2a/providers/postgres_provider.py +0 -0
  27. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/capabilities/__init__.py +0 -0
  28. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/capabilities/resolver.py +0 -0
  29. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/chart_generation/llm_refinement_loop.py +0 -0
  30. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/core/__init__.py +0 -0
  31. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/core/activity_formatter.py +0 -0
  32. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/core/agent_interface.py +0 -0
  33. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/core/agent_provider.py +0 -0
  34. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/core/base_agent.py +0 -0
  35. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/core/context_budget.py +0 -0
  36. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/core/context_summarizer.py +0 -0
  37. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/core/elasticsearch_config_provider.py +0 -0
  38. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/core/implementation_validator.py +0 -0
  39. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/core/knowledge_state.py +0 -0
  40. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/core/loop_detector.py +0 -0
  41. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/core/model_clients.py +0 -0
  42. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/core/model_config.py +0 -0
  43. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/core/model_router.py +0 -0
  44. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/core/models.py +0 -0
  45. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/core/provider_calibration.py +0 -0
  46. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/core/rich_content_prompt_unsused_to_be_deleted.py +0 -0
  47. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/core/scratchpad_compressor.py +0 -0
  48. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/core/state_manager.py +0 -0
  49. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/core/step_display_config.py +0 -0
  50. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/core/streaming_parts_accumulator.py +0 -0
  51. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/implementations/__init__.py +0 -0
  52. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/implementations/budget_aware_agent.py +0 -0
  53. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/implementations/llamaindex_agent.py +0 -0
  54. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/implementations/llamaindex_memory_adapter.py +0 -0
  55. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/implementations/microsoft_agent.py +0 -0
  56. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/memory/__init__.py +0 -0
  57. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/memory/agent_mixin.py +0 -0
  58. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/memory/base.py +0 -0
  59. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/memory/config.py +0 -0
  60. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/memory/manager.py +0 -0
  61. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/memory/personalization.py +0 -0
  62. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/memory/providers/__init__.py +0 -0
  63. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/memory/providers/graphiti_provider.py +0 -0
  64. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/memory/providers/memori_provider.py +0 -0
  65. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/memory/tools.py +0 -0
  66. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/monitoring/__init__.py +0 -0
  67. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/monitoring/api_timing_tracker.py +0 -0
  68. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/monitoring/elasticsearch_circuit_breaker.py +0 -0
  69. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/monitoring/elasticsearch_logging.py +0 -0
  70. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/monitoring/error_handling.py +0 -0
  71. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/monitoring/error_logging.py +0 -0
  72. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/monitoring/llm_auto_instrumentor.py +0 -0
  73. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/monitoring/llm_metrics.py +0 -0
  74. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/monitoring/llm_metrics_collector.py +0 -0
  75. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/monitoring/llm_metrics_extractor.py +0 -0
  76. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/monitoring/metrics_aggregator.py +0 -0
  77. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/monitoring/metrics_config.py +0 -0
  78. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/monitoring/observability_manager.py +0 -0
  79. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/monitoring/otel_instrumentor.py +0 -0
  80. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/monitoring/otel_logging_handler.py +0 -0
  81. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/monitoring/otel_metrics_recorder.py +0 -0
  82. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/monitoring/otel_setup.py +0 -0
  83. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/monitoring/performance_monitor.py +0 -0
  84. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/monitoring/progress_tracker.py +0 -0
  85. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/monitoring/resource_manager.py +0 -0
  86. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/monitoring/resource_metrics_collector.py +0 -0
  87. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/monitoring/streaming_latency_tracer.py +0 -0
  88. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/monitoring/timing_tracker.py +0 -0
  89. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/monitoring/token_counter.py +0 -0
  90. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/monitoring/tracing_context.py +0 -0
  91. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/processing/__init__.py +0 -0
  92. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/processing/ai_content_management.py +0 -0
  93. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/processing/markdown_converter.py +0 -0
  94. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/processing/multimodal_integration.py +0 -0
  95. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/processing/rich_content_validation.py +0 -0
  96. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/py.typed +0 -0
  97. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/session/__init__.py +0 -0
  98. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/session/elasticsearch_session_storage.py +0 -0
  99. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/session/session_storage.py +0 -0
  100. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/skills/__init__.py +0 -0
  101. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/skills/agent_mixin.py +0 -0
  102. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/skills/builtin/__init__.py +0 -0
  103. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/skills/builtin/chart_skill.py +0 -0
  104. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/skills/builtin/drawio_skill.py +0 -0
  105. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/skills/builtin/excel_skill.py +0 -0
  106. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/skills/builtin/file_access_skill.py +0 -0
  107. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/skills/builtin/file_skill.py +0 -0
  108. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/skills/builtin/form_skill.py +0 -0
  109. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/skills/builtin/image_display_skill.py +0 -0
  110. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/skills/builtin/mermaid_skill.py +0 -0
  111. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/skills/builtin/multimodal_skill.py +0 -0
  112. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/skills/builtin/optionsblock_skill.py +0 -0
  113. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/skills/builtin/pdf_skill.py +0 -0
  114. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/skills/builtin/pdf_with_images_skill.py +0 -0
  115. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/skills/builtin/scripts/__init__.py +0 -0
  116. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/skills/builtin/scripts/create_and_register.py +0 -0
  117. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/skills/builtin/scripts/register_to_storage.py +0 -0
  118. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/skills/builtin/skills/chart/SKILL.md +0 -0
  119. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/skills/builtin/skills/chart/chart_to_image.py +0 -0
  120. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/skills/builtin/skills/drawio/SKILL.md +0 -0
  121. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/skills/builtin/skills/drawio/create_drawio.py +0 -0
  122. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/skills/builtin/skills/excel/SKILL.md +0 -0
  123. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/skills/builtin/skills/excel/create_excel.py +0 -0
  124. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/skills/builtin/skills/file/SKILL.md +0 -0
  125. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/skills/builtin/skills/file/create_file.py +0 -0
  126. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/skills/builtin/skills/file/list_files.py +0 -0
  127. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/skills/builtin/skills/file/read_file.py +0 -0
  128. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/skills/builtin/skills/file_access/SKILL.md +0 -0
  129. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/skills/builtin/skills/file_access/get_file_path.py +0 -0
  130. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/skills/builtin/skills/form/SKILL.md +0 -0
  131. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/skills/builtin/skills/image_display/SKILL.md +0 -0
  132. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/skills/builtin/skills/mermaid/SKILL.md +0 -0
  133. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/skills/builtin/skills/mermaid/mermaid_to_image.py +0 -0
  134. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/skills/builtin/skills/multimodal/SKILL.md +0 -0
  135. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/skills/builtin/skills/optionsblock/SKILL.md +0 -0
  136. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/skills/builtin/skills/table/SKILL.md +0 -0
  137. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/skills/builtin/skills/table/table_to_image.py +0 -0
  138. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/skills/builtin/skills/unified_pdf/SKILL.md +0 -0
  139. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/skills/builtin/skills/unified_pdf/create_pdf.py +0 -0
  140. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/skills/builtin/skills/web_search/SKILL.md +0 -0
  141. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/skills/builtin/skills/web_search/web_news_search.py +0 -0
  142. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/skills/builtin/skills/web_search/web_search.py +0 -0
  143. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/skills/builtin/table_skill.py +0 -0
  144. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/skills/builtin/unified_pdf_skill.py +0 -0
  145. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/skills/builtin/web_search_skill.py +0 -0
  146. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/skills/custom_skill_manager.py +0 -0
  147. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/skills/discovery_prompt.py +0 -0
  148. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/skills/tools.py +0 -0
  149. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/storage/__init__.py +0 -0
  150. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/storage/file_storages.py +0 -0
  151. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/storage/file_system_management.py +0 -0
  152. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/storage/storage_optimizer.py +0 -0
  153. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/subagents/__init__.py +0 -0
  154. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/subagents/spawn_tool.py +0 -0
  155. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/tools/__init__.py +0 -0
  156. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/tools/activity_callback.py +0 -0
  157. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/tools/adaptive_pdf_css.py +0 -0
  158. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/tools/base.py +0 -0
  159. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/tools/chart_tools.py +0 -0
  160. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/tools/drawio_tools.py +0 -0
  161. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/tools/excel_tools.py +0 -0
  162. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/tools/file_access_tools.py +0 -0
  163. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/tools/file_tools.py +0 -0
  164. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/tools/html_content_analyzer.py +0 -0
  165. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/tools/mermaid_tools.py +0 -0
  166. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/tools/multimodal_tools.py +0 -0
  167. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/tools/pdf_image_scaler.py +0 -0
  168. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/tools/pdf_tools.py +0 -0
  169. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/tools/pdf_with_images_tool.py +0 -0
  170. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/tools/shell_tool.py +0 -0
  171. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/tools/sizing_config.py +0 -0
  172. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/tools/tabledata_tools.py +0 -0
  173. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/tools/unified_pdf_tool.py +0 -0
  174. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/tools/web_fetch_tool.py +0 -0
  175. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/tools/web_search_tools.py +0 -0
  176. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/utils/__init__.py +0 -0
  177. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/utils/path_utils.py +0 -0
  178. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/utils/post_install.py +0 -0
  179. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/utils/session_title_generator.py +0 -0
  180. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/utils/source_detector.py +0 -0
  181. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/utils/special_blocks.py +0 -0
  182. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/web/__init__.py +0 -0
  183. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/web/admin_auth.py +0 -0
  184. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/web/admin_models.py +0 -0
  185. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/web/admin_router.py +0 -0
  186. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/web/admin_services.py +0 -0
  187. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/web/api_timing_middleware.py +0 -0
  188. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/web/docs/A2A_GUIDE.md +0 -0
  189. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/web/docs/CREATING_AGENTS.md +0 -0
  190. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/web/docs/DOCKER_SETUP.md +0 -0
  191. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/web/docs/Dockerfile +0 -0
  192. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/web/docs/GETTING_STARTED.md +0 -0
  193. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/web/docs/MEMORY_INSTALLATION.md +0 -0
  194. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0/agent_framework/web/docs}/README.md +0 -0
  195. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/web/docs/TOOLS_AND_MCP_GUIDE.md +0 -0
  196. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/web/docs/api-reference.md +0 -0
  197. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/web/docs/configuration.md +0 -0
  198. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/web/docs/docker-compose.yml +0 -0
  199. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/web/docs/examples/agent_example_multi_skills.py +0 -0
  200. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/web/docs/examples/agent_with_file_storage.py +0 -0
  201. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/web/docs/examples/agent_with_mcp.py +0 -0
  202. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/web/docs/examples/agent_with_memory.py +0 -0
  203. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/web/docs/examples/agent_with_memory_graphiti.py +0 -0
  204. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/web/docs/examples/agent_with_memory_hybrid.py +0 -0
  205. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/web/docs/examples/agent_with_memory_simple.py +0 -0
  206. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/web/docs/examples/custom_framework_agent.py +0 -0
  207. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/web/docs/examples/simple_agent.py +0 -0
  208. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/web/docs/examples/skills_demo_agent.py +0 -0
  209. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/web/docs/installation-guide.md +0 -0
  210. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/web/documentation_generator.py +0 -0
  211. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/web/helper_agent.py +0 -0
  212. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/web/helper_ui.html +0 -0
  213. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/web/observability/kibana-llm-dashboard-setup.json +0 -0
  214. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/web/observability/kibana-resource-metrics-dashboard.json +0 -0
  215. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/web/otel_tracing_middleware.py +0 -0
  216. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/web/server.py +0 -0
  217. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/web/skills_router.py +0 -0
  218. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework/web/test_app.html +0 -0
  219. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework_lib.egg-info/SOURCES.txt +0 -0
  220. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework_lib.egg-info/dependency_links.txt +0 -0
  221. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework_lib.egg-info/entry_points.txt +0 -0
  222. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework_lib.egg-info/requires.txt +0 -0
  223. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/agent_framework_lib.egg-info/top_level.txt +0 -0
  224. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/docs/A2A_GUIDE.md +0 -0
  225. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/docs/ACTIVITY_OUTPUT_PART.md +0 -0
  226. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/docs/ARCHITECTURE_DIAGRAM.md +0 -0
  227. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/docs/CONCURRENCE_VS_PARALLELISME_GUIDE.md +0 -0
  228. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/docs/DOCKER_SETUP.md +0 -0
  229. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/docs/ELASTICSEARCH_DATA_STRUCTURES.md +0 -0
  230. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/docs/FILE_DOWNLOAD_LINKS.md +0 -0
  231. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/docs/FILE_STORAGE_GUIDE.md +0 -0
  232. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/docs/GETTING_STARTED.md +0 -0
  233. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/docs/HISTORY_MESSAGE_FORMAT.md +0 -0
  234. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/docs/IMPLEMENTATION_GUIDE_NEW_AGENT.md +0 -0
  235. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/docs/MEMORY_INSTALLATION.md +0 -0
  236. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/docs/MODIFICATIONS_CONCURRENCE.md +0 -0
  237. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/docs/MULTIMODAL_TOOLS_GUIDE.md +0 -0
  238. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/docs/OBSERVABILITY_GUIDE.md +0 -0
  239. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/docs/PYPI_PUBLISHING.md +0 -0
  240. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/docs/QA_STREAMING_LATENCY.md +0 -0
  241. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/docs/SKILLS_AND_SUBAGENTS_ANALYSIS.md +0 -0
  242. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/docs/SPEC_CROSS_MODEL_HISTORY_CONVERSION.md +0 -0
  243. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/docs/STREAMING_EVENTS_FRONTEND.md +0 -0
  244. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/docs/TOOLS_AND_MCP_GUIDE.md +0 -0
  245. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/docs/api-reference.md +0 -0
  246. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/docs/configuration.md +0 -0
  247. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/docs/framework_audit_remarques.md +0 -0
  248. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/docs/installation-guide.md +0 -0
  249. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/examples/README.md +0 -0
  250. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/examples/agent_context_budget_test.py +0 -0
  251. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/examples/agent_example_multi_skills.py +0 -0
  252. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/examples/agent_exemple_test.py +0 -0
  253. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/examples/agent_training_with_apo.py +0 -0
  254. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/examples/agent_with_custom_tools_file_storage.py +0 -0
  255. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/examples/agent_with_file_storage.py +0 -0
  256. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/examples/agent_with_mcp.py +0 -0
  257. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/examples/agent_with_memory_graphiti.py +0 -0
  258. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/examples/agent_with_memory_hybrid.py +0 -0
  259. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/examples/agent_with_memory_simple.py +0 -0
  260. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/examples/agent_with_personalization.py +0 -0
  261. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/examples/biagenttest.py +0 -0
  262. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/examples/custom_framework_agent.py +0 -0
  263. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/examples/dependencies/docker-compose.yaml +0 -0
  264. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/examples/pyproject.toml +0 -0
  265. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/examples/simple_agent.py +0 -0
  266. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/examples/skills_demo_agent.py +0 -0
  267. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/setup.cfg +0 -0
  268. {agent_framework_lib-0.6.3.post4 → agent_framework_lib-0.7.0}/setup.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: agent-framework-lib
3
- Version: 0.6.3.post4
3
+ Version: 0.7.0
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>
@@ -985,7 +985,7 @@ class MySkillsAgent(LlamaIndexAgent):
985
985
  | Category | Skills |
986
986
  |----------|--------|
987
987
  | **Visualization** | chart, mermaid, table |
988
- | **Document** | file, pdf, pdf_with_images, file_access |
988
+ | **Document** | file, unified_pdf, file_access, excel, drawio |
989
989
  | **Web** | web_search |
990
990
  | **Multimodal** | multimodal |
991
991
  | **UI** | form, optionsblock, image_display |
@@ -994,9 +994,10 @@ class MySkillsAgent(LlamaIndexAgent):
994
994
 
995
995
  1. Agent receives user request: "Create a bar chart"
996
996
  2. Agent calls `list_skills()` → sees available skills
997
- 3. Agent calls `load_skill("chart")` → gets Chart.js instructions
998
- 4. Agent uses `save_chart_as_image()` tool with loaded knowledge
999
- 5. Optionally calls `unload_skill("chart")` when done
997
+ 3. Agent calls `load_skill("chart")` → gets chart instructions
998
+ 4. Agent constructs the shell command as described in the instructions
999
+ 5. Agent executes via `shell_exec` script generates the chart
1000
+ 6. Optionally calls `unload_skill("chart")` when done
1000
1001
 
1001
1002
  **More info:** See [Creating Agents Guide](docs/CREATING_AGENTS.md#skills-integration) and [skills_demo_agent.py](examples/skills_demo_agent.py)
1002
1003
 
@@ -839,7 +839,7 @@ class MySkillsAgent(LlamaIndexAgent):
839
839
  | Category | Skills |
840
840
  |----------|--------|
841
841
  | **Visualization** | chart, mermaid, table |
842
- | **Document** | file, pdf, pdf_with_images, file_access |
842
+ | **Document** | file, unified_pdf, file_access, excel, drawio |
843
843
  | **Web** | web_search |
844
844
  | **Multimodal** | multimodal |
845
845
  | **UI** | form, optionsblock, image_display |
@@ -848,9 +848,10 @@ class MySkillsAgent(LlamaIndexAgent):
848
848
 
849
849
  1. Agent receives user request: "Create a bar chart"
850
850
  2. Agent calls `list_skills()` → sees available skills
851
- 3. Agent calls `load_skill("chart")` → gets Chart.js instructions
852
- 4. Agent uses `save_chart_as_image()` tool with loaded knowledge
853
- 5. Optionally calls `unload_skill("chart")` when done
851
+ 3. Agent calls `load_skill("chart")` → gets chart instructions
852
+ 4. Agent constructs the shell command as described in the instructions
853
+ 5. Agent executes via `shell_exec` script generates the chart
854
+ 6. Optionally calls `unload_skill("chart")` when done
854
855
 
855
856
  **More info:** See [Creating Agents Guide](docs/CREATING_AGENTS.md#skills-integration) and [skills_demo_agent.py](examples/skills_demo_agent.py)
856
857
 
@@ -381,9 +381,25 @@ class SkillRegistry:
381
381
  loading_chain.remove(name)
382
382
 
383
383
  # Create loaded context
384
+ instructions = skill.get_instructions()
385
+
386
+ # Auto-inject execution instruction when entrypoint is defined
387
+ entrypoint = skill.config.get("entrypoint")
388
+ if entrypoint:
389
+ skill_dir = skill.config.get("skill_dir", "")
390
+ resolved_entrypoint = entrypoint.replace("{{SKILL_DIR}}", skill_dir)
391
+ # Prefix with cd to ensure correct working directory
392
+ full_command = f"cd \"{skill_dir}\" && {resolved_entrypoint}"
393
+ instructions += (
394
+ "\n\n---\n"
395
+ "## Execution\n\n"
396
+ "To run this skill with the proper path, execute:\n\n"
397
+ f"```bash\n{full_command}\n```\n"
398
+ )
399
+
384
400
  context = LoadedSkillContext(
385
401
  skill=skill,
386
- instructions=skill.get_instructions(),
402
+ instructions=instructions,
387
403
  tools=skill.get_tools(),
388
404
  dependencies_loaded=dependencies_loaded,
389
405
  )
@@ -295,6 +295,9 @@ class MarkdownSkillLoader:
295
295
  if runtime is not None:
296
296
  skill.config["runtime"] = runtime
297
297
 
298
+ # Store the skill directory for runtime path resolution
299
+ skill.config["skill_dir"] = str(source_path.parent.resolve())
300
+
298
301
  display_name: str | None = frontmatter.get("display_name")
299
302
  if display_name:
300
303
  skill.display_name = display_name
@@ -2981,13 +2981,13 @@
2981
2981
  </div>
2982
2982
  </div>
2983
2983
 
2984
- <!-- Files Section (only in edit mode for existing skills) -->
2985
- <div x-show="skillsView === 'edit'" class="bg-white rounded-lg shadow-sm border border-gray-200 p-4 space-y-3">
2984
+ <!-- Files Section -->
2985
+ <div x-show="skillsView === 'edit' || skillsView === 'create'" class="bg-white rounded-lg shadow-sm border border-gray-200 p-4 space-y-3">
2986
2986
  <h3 class="text-sm font-semibold text-gray-700 uppercase tracking-wide">Files</h3>
2987
2987
  <p class="text-xs text-gray-400">Project files stored alongside SKILL.md (scripts, data, configs...)</p>
2988
2988
 
2989
- <!-- Existing files list -->
2990
- <div x-show="skillFiles.length > 0" class="space-y-1">
2989
+ <!-- Existing files list (edit mode) -->
2990
+ <div x-show="skillsView === 'edit' && skillFiles.length > 0" class="space-y-1">
2991
2991
  <template x-for="f in skillFiles" :key="f">
2992
2992
  <div class="flex items-center justify-between py-1.5 px-2 bg-gray-50 rounded text-sm">
2993
2993
  <span class="text-gray-700 truncate" x-text="f"></span>
@@ -3001,7 +3001,22 @@
3001
3001
  </div>
3002
3002
  </template>
3003
3003
  </div>
3004
- <div x-show="skillFiles.length === 0" class="text-xs text-gray-400 italic">No files yet.</div>
3004
+ <div x-show="skillsView === 'edit' && skillFiles.length === 0 && skillPendingFiles.length === 0" class="text-xs text-gray-400 italic">No files yet.</div>
3005
+
3006
+ <!-- Pending files list (create mode) -->
3007
+ <div x-show="skillPendingFiles.length > 0" class="space-y-1">
3008
+ <template x-for="(pf, idx) in skillPendingFiles" :key="pf.name + idx">
3009
+ <div class="flex items-center justify-between py-1.5 px-2 bg-purple-50 rounded text-sm">
3010
+ <span class="text-gray-700 truncate" x-text="pf.name"></span>
3011
+ <div class="flex items-center space-x-2 flex-shrink-0 ml-2">
3012
+ <span class="text-xs text-gray-400" x-text="(pf.file.size / 1024).toFixed(1) + ' KB'"></span>
3013
+ <button @click="skillPendingFiles.splice(idx, 1)"
3014
+ class="text-xs text-red-500 hover:text-red-700">remove</button>
3015
+ </div>
3016
+ </div>
3017
+ </template>
3018
+ </div>
3019
+ <div x-show="skillsView === 'create' && skillPendingFiles.length === 0" class="text-xs text-gray-400 italic">Files will be uploaded after creation.</div>
3005
3020
 
3006
3021
  <!-- Upload -->
3007
3022
  <div class="flex items-center space-x-2">
@@ -3420,6 +3435,7 @@
3420
3435
  skillValidationReport: null,
3421
3436
  skillDeleteConfirm: null,
3422
3437
  skillFiles: [],
3438
+ skillPendingFiles: [],
3423
3439
  skillFileUploading: false,
3424
3440
 
3425
3441
  // Admin Panel - Users
@@ -4235,6 +4251,7 @@
4235
4251
  this.skillEditName = null;
4236
4252
  this.skillValidationReport = null;
4237
4253
  this.skillFiles = [];
4254
+ this.skillPendingFiles = [];
4238
4255
  this.skillsView = 'create';
4239
4256
  },
4240
4257
 
@@ -4300,6 +4317,29 @@
4300
4317
  }
4301
4318
 
4302
4319
  if (response.ok) {
4320
+ // Upload pending files after skill creation
4321
+ if (this.skillPendingFiles.length > 0) {
4322
+ const skillName = this.skillForm.name;
4323
+ this.skillFileUploading = true;
4324
+ for (const pf of this.skillPendingFiles) {
4325
+ try {
4326
+ const formData = new FormData();
4327
+ formData.append('file', pf.file);
4328
+ const resp = await fetch(
4329
+ BASE_PATH + '/api/skills/' + encodeURIComponent(skillName) + '/files',
4330
+ { method: 'POST', body: formData }
4331
+ );
4332
+ if (!resp.ok) {
4333
+ const err = await resp.json().catch(() => ({}));
4334
+ alert('Upload failed for ' + pf.name + ': ' + (err.detail || resp.status));
4335
+ }
4336
+ } catch (e) {
4337
+ alert('Upload error for ' + pf.name + ': ' + e.message);
4338
+ }
4339
+ }
4340
+ this.skillFileUploading = false;
4341
+ this.skillPendingFiles = [];
4342
+ }
4303
4343
  await this.loadSkills();
4304
4344
  this.skillsView = 'list';
4305
4345
  this.skillValidationReport = null;
@@ -4358,12 +4398,24 @@
4358
4398
  this.skillValidationReport = null;
4359
4399
  this.skillDeleteConfirm = null;
4360
4400
  this.skillFiles = [];
4401
+ this.skillPendingFiles = [];
4361
4402
  this.skillFileUploading = false;
4362
4403
  },
4363
4404
 
4364
4405
  async uploadSkillFiles(event) {
4365
4406
  const files = event.target.files;
4366
- if (!files || files.length === 0 || !this.skillEditName) return;
4407
+ if (!files || files.length === 0) return;
4408
+
4409
+ // En mode création, stocker les fichiers en mémoire
4410
+ if (this.skillsView === 'create') {
4411
+ for (const file of files) {
4412
+ this.skillPendingFiles.push({ name: file.name, file: file });
4413
+ }
4414
+ event.target.value = '';
4415
+ return;
4416
+ }
4417
+
4418
+ if (!this.skillEditName) return;
4367
4419
  this.skillFileUploading = true;
4368
4420
  for (const file of files) {
4369
4421
  try {
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: agent-framework-lib
3
- Version: 0.6.3.post4
3
+ Version: 0.7.0
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>
@@ -985,7 +985,7 @@ class MySkillsAgent(LlamaIndexAgent):
985
985
  | Category | Skills |
986
986
  |----------|--------|
987
987
  | **Visualization** | chart, mermaid, table |
988
- | **Document** | file, pdf, pdf_with_images, file_access |
988
+ | **Document** | file, unified_pdf, file_access, excel, drawio |
989
989
  | **Web** | web_search |
990
990
  | **Multimodal** | multimodal |
991
991
  | **UI** | form, optionsblock, image_display |
@@ -994,9 +994,10 @@ class MySkillsAgent(LlamaIndexAgent):
994
994
 
995
995
  1. Agent receives user request: "Create a bar chart"
996
996
  2. Agent calls `list_skills()` → sees available skills
997
- 3. Agent calls `load_skill("chart")` → gets Chart.js instructions
998
- 4. Agent uses `save_chart_as_image()` tool with loaded knowledge
999
- 5. Optionally calls `unload_skill("chart")` when done
997
+ 3. Agent calls `load_skill("chart")` → gets chart instructions
998
+ 4. Agent constructs the shell command as described in the instructions
999
+ 5. Agent executes via `shell_exec` script generates the chart
1000
+ 6. Optionally calls `unload_skill("chart")` when done
1000
1001
 
1001
1002
  **More info:** See [Creating Agents Guide](docs/CREATING_AGENTS.md#skills-integration) and [skills_demo_agent.py](examples/skills_demo_agent.py)
1002
1003
 
@@ -1048,7 +1048,7 @@ What happens automatically:
1048
1048
  | Category | Skills | Description |
1049
1049
  |----------|--------|-------------|
1050
1050
  | **Visualization** | chart, mermaid, table | Chart.js charts, Mermaid diagrams, table images |
1051
- | **Document** | file, pdf, pdf_with_images, file_access | File operations, PDF generation |
1051
+ | **Document** | file, unified_pdf, file_access, excel, drawio | File operations, PDF generation, Excel, Draw.io |
1052
1052
  | **Web** | web_search | Web and news search |
1053
1053
  | **Multimodal** | multimodal | Image analysis |
1054
1054
  | **UI** | form, optionsblock, image_display | Forms, option buttons, image display |
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "agent-framework-lib"
7
- version = "0.6.3post4"
7
+ version = "0.7.0"
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"}