flowent 0.0.5 → 0.0.6

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 (149) hide show
  1. package/backend/pyproject.toml +1 -1
  2. package/backend/src/flowent/__pycache__/__init__.cpython-313.pyc +0 -0
  3. package/backend/src/flowent/__pycache__/_version.cpython-313.pyc +0 -0
  4. package/backend/src/flowent/__pycache__/access.cpython-313.pyc +0 -0
  5. package/backend/src/flowent/__pycache__/agent.cpython-313.pyc +0 -0
  6. package/backend/src/flowent/__pycache__/assistant_commands.cpython-313.pyc +0 -0
  7. package/backend/src/flowent/__pycache__/cli.cpython-313.pyc +0 -0
  8. package/backend/src/flowent/__pycache__/config.cpython-313.pyc +0 -0
  9. package/backend/src/flowent/__pycache__/events.cpython-313.pyc +0 -0
  10. package/backend/src/flowent/__pycache__/graph_runtime.cpython-313.pyc +0 -0
  11. package/backend/src/flowent/__pycache__/graph_service.cpython-313.pyc +0 -0
  12. package/backend/src/flowent/__pycache__/image_assets.cpython-313.pyc +0 -0
  13. package/backend/src/flowent/__pycache__/logging.cpython-313.pyc +0 -0
  14. package/backend/src/flowent/__pycache__/main.cpython-313.pyc +0 -0
  15. package/backend/src/flowent/__pycache__/mcp_service.cpython-313.pyc +0 -0
  16. package/backend/src/flowent/__pycache__/model_metadata.cpython-313.pyc +0 -0
  17. package/backend/src/flowent/__pycache__/network.cpython-313.pyc +0 -0
  18. package/backend/src/flowent/__pycache__/observability_service.cpython-313.pyc +0 -0
  19. package/backend/src/flowent/__pycache__/registry.cpython-313.pyc +0 -0
  20. package/backend/src/flowent/__pycache__/role_management.cpython-313.pyc +0 -0
  21. package/backend/src/flowent/__pycache__/runtime.cpython-313.pyc +0 -0
  22. package/backend/src/flowent/__pycache__/sandbox.cpython-313.pyc +0 -0
  23. package/backend/src/flowent/__pycache__/security.cpython-313.pyc +0 -0
  24. package/backend/src/flowent/__pycache__/settings.cpython-313.pyc +0 -0
  25. package/backend/src/flowent/__pycache__/settings_management.cpython-313.pyc +0 -0
  26. package/backend/src/flowent/__pycache__/state_db.cpython-313.pyc +0 -0
  27. package/backend/src/flowent/__pycache__/workspace_store.cpython-313.pyc +0 -0
  28. package/backend/src/flowent/channels/__pycache__/__init__.cpython-313.pyc +0 -0
  29. package/backend/src/flowent/channels/__pycache__/telegram.cpython-313.pyc +0 -0
  30. package/backend/src/flowent/models/__pycache__/__init__.cpython-313.pyc +0 -0
  31. package/backend/src/flowent/models/__pycache__/agent.cpython-313.pyc +0 -0
  32. package/backend/src/flowent/models/__pycache__/base.cpython-313.pyc +0 -0
  33. package/backend/src/flowent/models/__pycache__/blueprint.cpython-313.pyc +0 -0
  34. package/backend/src/flowent/models/__pycache__/content.cpython-313.pyc +0 -0
  35. package/backend/src/flowent/models/__pycache__/delta.cpython-313.pyc +0 -0
  36. package/backend/src/flowent/models/__pycache__/event.cpython-313.pyc +0 -0
  37. package/backend/src/flowent/models/__pycache__/graph.cpython-313.pyc +0 -0
  38. package/backend/src/flowent/models/__pycache__/history.cpython-313.pyc +0 -0
  39. package/backend/src/flowent/models/__pycache__/llm.cpython-313.pyc +0 -0
  40. package/backend/src/flowent/models/__pycache__/message.cpython-313.pyc +0 -0
  41. package/backend/src/flowent/models/__pycache__/tab.cpython-313.pyc +0 -0
  42. package/backend/src/flowent/models/__pycache__/todo.cpython-313.pyc +0 -0
  43. package/backend/src/flowent/prompts/__pycache__/__init__.cpython-313.pyc +0 -0
  44. package/backend/src/flowent/prompts/__pycache__/common.cpython-313.pyc +0 -0
  45. package/backend/src/flowent/prompts/__pycache__/steward.cpython-313.pyc +0 -0
  46. package/backend/src/flowent/providers/__pycache__/__init__.cpython-313.pyc +0 -0
  47. package/backend/src/flowent/providers/__pycache__/anthropic.cpython-313.pyc +0 -0
  48. package/backend/src/flowent/providers/__pycache__/base_url.cpython-313.pyc +0 -0
  49. package/backend/src/flowent/providers/__pycache__/configuration.cpython-313.pyc +0 -0
  50. package/backend/src/flowent/providers/__pycache__/content.cpython-313.pyc +0 -0
  51. package/backend/src/flowent/providers/__pycache__/errors.cpython-313.pyc +0 -0
  52. package/backend/src/flowent/providers/__pycache__/gateway.cpython-313.pyc +0 -0
  53. package/backend/src/flowent/providers/__pycache__/headers.cpython-313.pyc +0 -0
  54. package/backend/src/flowent/providers/__pycache__/management.cpython-313.pyc +0 -0
  55. package/backend/src/flowent/providers/__pycache__/openai.cpython-313.pyc +0 -0
  56. package/backend/src/flowent/providers/__pycache__/openai_responses.cpython-313.pyc +0 -0
  57. package/backend/src/flowent/providers/__pycache__/registry.cpython-313.pyc +0 -0
  58. package/backend/src/flowent/providers/__pycache__/sse.cpython-313.pyc +0 -0
  59. package/backend/src/flowent/providers/__pycache__/thinking.cpython-313.pyc +0 -0
  60. package/backend/src/flowent/routes/__pycache__/__init__.cpython-313.pyc +0 -0
  61. package/backend/src/flowent/routes/__pycache__/access.cpython-313.pyc +0 -0
  62. package/backend/src/flowent/routes/__pycache__/assistant.cpython-313.pyc +0 -0
  63. package/backend/src/flowent/routes/__pycache__/image_assets.cpython-313.pyc +0 -0
  64. package/backend/src/flowent/routes/__pycache__/mcp.cpython-313.pyc +0 -0
  65. package/backend/src/flowent/routes/__pycache__/meta.cpython-313.pyc +0 -0
  66. package/backend/src/flowent/routes/__pycache__/nodes.cpython-313.pyc +0 -0
  67. package/backend/src/flowent/routes/__pycache__/prompts.cpython-313.pyc +0 -0
  68. package/backend/src/flowent/routes/__pycache__/providers_route.cpython-313.pyc +0 -0
  69. package/backend/src/flowent/routes/__pycache__/roles.cpython-313.pyc +0 -0
  70. package/backend/src/flowent/routes/__pycache__/settings.cpython-313.pyc +0 -0
  71. package/backend/src/flowent/routes/__pycache__/tabs.cpython-313.pyc +0 -0
  72. package/backend/src/flowent/routes/__pycache__/ws.cpython-313.pyc +0 -0
  73. package/backend/src/flowent/tools/__pycache__/__init__.cpython-313.pyc +0 -0
  74. package/backend/src/flowent/tools/__pycache__/connect.cpython-313.pyc +0 -0
  75. package/backend/src/flowent/tools/__pycache__/contacts.cpython-313.pyc +0 -0
  76. package/backend/src/flowent/tools/__pycache__/create_agent.cpython-313.pyc +0 -0
  77. package/backend/src/flowent/tools/__pycache__/create_tab.cpython-313.pyc +0 -0
  78. package/backend/src/flowent/tools/__pycache__/delete_tab.cpython-313.pyc +0 -0
  79. package/backend/src/flowent/tools/__pycache__/edit.cpython-313.pyc +0 -0
  80. package/backend/src/flowent/tools/__pycache__/exec.cpython-313.pyc +0 -0
  81. package/backend/src/flowent/tools/__pycache__/fetch.cpython-313.pyc +0 -0
  82. package/backend/src/flowent/tools/__pycache__/idle.cpython-313.pyc +0 -0
  83. package/backend/src/flowent/tools/__pycache__/list_roles.cpython-313.pyc +0 -0
  84. package/backend/src/flowent/tools/__pycache__/list_tabs.cpython-313.pyc +0 -0
  85. package/backend/src/flowent/tools/__pycache__/list_tools.cpython-313.pyc +0 -0
  86. package/backend/src/flowent/tools/__pycache__/manage_prompts.cpython-313.pyc +0 -0
  87. package/backend/src/flowent/tools/__pycache__/manage_providers.cpython-313.pyc +0 -0
  88. package/backend/src/flowent/tools/__pycache__/manage_roles.cpython-313.pyc +0 -0
  89. package/backend/src/flowent/tools/__pycache__/manage_settings.cpython-313.pyc +0 -0
  90. package/backend/src/flowent/tools/__pycache__/mcp.cpython-313.pyc +0 -0
  91. package/backend/src/flowent/tools/__pycache__/read.cpython-313.pyc +0 -0
  92. package/backend/src/flowent/tools/__pycache__/send.cpython-313.pyc +0 -0
  93. package/backend/src/flowent/tools/__pycache__/set_permissions.cpython-313.pyc +0 -0
  94. package/backend/src/flowent/tools/__pycache__/sleep.cpython-313.pyc +0 -0
  95. package/backend/src/flowent/tools/__pycache__/todo.cpython-313.pyc +0 -0
  96. package/backend/tests/__pycache__/__init__.cpython-313.pyc +0 -0
  97. package/backend/tests/__pycache__/conftest.cpython-313-pytest-9.0.3.pyc +0 -0
  98. package/backend/tests/integration/api/__pycache__/conftest.cpython-313-pytest-9.0.3.pyc +0 -0
  99. package/backend/tests/integration/api/__pycache__/test_access_api.cpython-313-pytest-9.0.3.pyc +0 -0
  100. package/backend/tests/integration/api/__pycache__/test_assistant_api.cpython-313-pytest-9.0.3.pyc +0 -0
  101. package/backend/tests/integration/api/__pycache__/test_frontend_mounting.cpython-313-pytest-9.0.3.pyc +0 -0
  102. package/backend/tests/integration/api/__pycache__/test_mcp_api.cpython-313-pytest-9.0.3.pyc +0 -0
  103. package/backend/tests/integration/api/__pycache__/test_meta_api.cpython-313-pytest-9.0.3.pyc +0 -0
  104. package/backend/tests/integration/api/__pycache__/test_nodes_api.cpython-313-pytest-9.0.3.pyc +0 -0
  105. package/backend/tests/integration/api/__pycache__/test_prompts_api.cpython-313-pytest-9.0.3.pyc +0 -0
  106. package/backend/tests/integration/api/__pycache__/test_roles_api.cpython-313-pytest-9.0.3.pyc +0 -0
  107. package/backend/tests/integration/api/__pycache__/test_tabs_api.cpython-313-pytest-9.0.3.pyc +0 -0
  108. package/backend/tests/unit/__pycache__/test_access.cpython-313-pytest-9.0.3.pyc +0 -0
  109. package/backend/tests/unit/__pycache__/test_cli.cpython-313-pytest-9.0.3.pyc +0 -0
  110. package/backend/tests/unit/__pycache__/test_graph_runtime.cpython-313-pytest-9.0.3.pyc +0 -0
  111. package/backend/tests/unit/__pycache__/test_network.cpython-313-pytest-9.0.3.pyc +0 -0
  112. package/backend/tests/unit/__pycache__/test_state_sqlite_storage.cpython-313-pytest-9.0.3.pyc +0 -0
  113. package/backend/tests/unit/__pycache__/test_workspace_store.cpython-313-pytest-9.0.3.pyc +0 -0
  114. package/backend/tests/unit/agent/__pycache__/test_agent_public_api.cpython-313-pytest-9.0.3.pyc +0 -0
  115. package/backend/tests/unit/agent/__pycache__/test_agent_runtime.cpython-313-pytest-9.0.3.pyc +0 -0
  116. package/backend/tests/unit/channels/__pycache__/test_telegram_channel.cpython-313-pytest-9.0.3.pyc +0 -0
  117. package/backend/tests/unit/logging/__pycache__/test_logging.cpython-313-pytest-9.0.3.pyc +0 -0
  118. package/backend/tests/unit/prompts/__pycache__/test_prompts.cpython-313-pytest-9.0.3.pyc +0 -0
  119. package/backend/tests/unit/providers/__pycache__/test_anthropic_provider.cpython-313-pytest-9.0.3.pyc +0 -0
  120. package/backend/tests/unit/providers/__pycache__/test_errors.cpython-313-pytest-9.0.3.pyc +0 -0
  121. package/backend/tests/unit/providers/__pycache__/test_extract_delta_parts.cpython-313-pytest-9.0.3.pyc +0 -0
  122. package/backend/tests/unit/providers/__pycache__/test_openai_provider.cpython-313-pytest-9.0.3.pyc +0 -0
  123. package/backend/tests/unit/providers/__pycache__/test_openai_responses.cpython-313-pytest-9.0.3.pyc +0 -0
  124. package/backend/tests/unit/providers/__pycache__/test_provider_gateway.cpython-313-pytest-9.0.3.pyc +0 -0
  125. package/backend/tests/unit/providers/__pycache__/test_think_tag_parser.cpython-313-pytest-9.0.3.pyc +0 -0
  126. package/backend/tests/unit/routes/__pycache__/test_prompts_routes.cpython-313-pytest-9.0.3.pyc +0 -0
  127. package/backend/tests/unit/routes/__pycache__/test_providers_route.cpython-313-pytest-9.0.3.pyc +0 -0
  128. package/backend/tests/unit/routes/__pycache__/test_roles_routes.cpython-313-pytest-9.0.3.pyc +0 -0
  129. package/backend/tests/unit/routes/__pycache__/test_settings_routes.cpython-313-pytest-9.0.3.pyc +0 -0
  130. package/backend/tests/unit/runtime/__pycache__/test_bootstrap_runtime.cpython-313-pytest-9.0.3.pyc +0 -0
  131. package/backend/tests/unit/sandbox/__pycache__/test_sandbox_tools.cpython-313-pytest-9.0.3.pyc +0 -0
  132. package/backend/tests/unit/security/__pycache__/test_security.cpython-313-pytest-9.0.3.pyc +0 -0
  133. package/backend/tests/unit/settings/__pycache__/test_settings_roles.cpython-313-pytest-9.0.3.pyc +0 -0
  134. package/backend/tests/unit/tools/__pycache__/test_connect_tool.cpython-313-pytest-9.0.3.pyc +0 -0
  135. package/backend/tests/unit/tools/__pycache__/test_create_agent_tool.cpython-313-pytest-9.0.3.pyc +0 -0
  136. package/backend/tests/unit/tools/__pycache__/test_delete_tab_tool.cpython-313-pytest-9.0.3.pyc +0 -0
  137. package/backend/tests/unit/tools/__pycache__/test_edit_tool.cpython-313-pytest-9.0.3.pyc +0 -0
  138. package/backend/tests/unit/tools/__pycache__/test_exec_tool.cpython-313-pytest-9.0.3.pyc +0 -0
  139. package/backend/tests/unit/tools/__pycache__/test_fetch_tool.cpython-313-pytest-9.0.3.pyc +0 -0
  140. package/backend/tests/unit/tools/__pycache__/test_manage_prompts_tool.cpython-313-pytest-9.0.3.pyc +0 -0
  141. package/backend/tests/unit/tools/__pycache__/test_manage_providers_tool.cpython-313-pytest-9.0.3.pyc +0 -0
  142. package/backend/tests/unit/tools/__pycache__/test_manage_roles_tool.cpython-313-pytest-9.0.3.pyc +0 -0
  143. package/backend/tests/unit/tools/__pycache__/test_manage_settings_tool.cpython-313-pytest-9.0.3.pyc +0 -0
  144. package/backend/tests/unit/tools/__pycache__/test_read_tool.cpython-313-pytest-9.0.3.pyc +0 -0
  145. package/backend/tests/unit/tools/__pycache__/test_set_permissions_tool.cpython-313-pytest-9.0.3.pyc +0 -0
  146. package/backend/tests/unit/tools/__pycache__/test_todo_tool.cpython-313-pytest-9.0.3.pyc +0 -0
  147. package/backend/tests/unit/tools/__pycache__/test_tool_registry.cpython-313-pytest-9.0.3.pyc +0 -0
  148. package/backend/uv.lock +1 -1
  149. package/package.json +1 -1
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "flowent"
3
- version = "0.0.5"
3
+ version = "0.0.6"
4
4
  description = "A workflow orchestration platform for multi-agent collaboration."
5
5
  readme = "README.md"
6
6
  authors = [
package/backend/uv.lock CHANGED
@@ -286,7 +286,7 @@ wheels = [
286
286
 
287
287
  [[package]]
288
288
  name = "flowent"
289
- version = "0.0.5"
289
+ version = "0.0.6"
290
290
  source = { editable = "." }
291
291
  dependencies = [
292
292
  { name = "curl-cffi" },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "flowent",
3
- "version": "0.0.5",
3
+ "version": "0.0.6",
4
4
  "description": "A workflow orchestration platform for multi-agent collaboration.",
5
5
  "author": "ImFeH2 <i@feh2.im>",
6
6
  "license": "Apache-2.0",