rasa-pro 3.13.7__py3-none-any.whl → 3.14.0.dev1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of rasa-pro might be problematic. Click here for more details.

Files changed (178) hide show
  1. rasa/agents/__init__.py +0 -0
  2. rasa/agents/agent_factory.py +122 -0
  3. rasa/agents/agent_manager.py +162 -0
  4. rasa/agents/constants.py +31 -0
  5. rasa/agents/core/__init__.py +0 -0
  6. rasa/agents/core/agent_protocol.py +108 -0
  7. rasa/agents/core/types.py +70 -0
  8. rasa/agents/exceptions.py +8 -0
  9. rasa/agents/protocol/__init__.py +5 -0
  10. rasa/agents/protocol/a2a/__init__.py +0 -0
  11. rasa/agents/protocol/a2a/a2a_agent.py +51 -0
  12. rasa/agents/protocol/mcp/__init__.py +0 -0
  13. rasa/agents/protocol/mcp/mcp_base_agent.py +697 -0
  14. rasa/agents/protocol/mcp/mcp_open_agent.py +275 -0
  15. rasa/agents/protocol/mcp/mcp_task_agent.py +447 -0
  16. rasa/agents/schemas/__init__.py +6 -0
  17. rasa/agents/schemas/agent_input.py +24 -0
  18. rasa/agents/schemas/agent_output.py +26 -0
  19. rasa/agents/schemas/agent_tool_result.py +51 -0
  20. rasa/agents/schemas/agent_tool_schema.py +112 -0
  21. rasa/agents/templates/__init__.py +0 -0
  22. rasa/agents/templates/mcp_open_agent_prompt_template.jinja2 +15 -0
  23. rasa/agents/templates/mcp_task_agent_prompt_template.jinja2 +13 -0
  24. rasa/agents/utils.py +72 -0
  25. rasa/api.py +5 -0
  26. rasa/cli/arguments/default_arguments.py +12 -0
  27. rasa/cli/arguments/run.py +2 -0
  28. rasa/cli/dialogue_understanding_test.py +4 -0
  29. rasa/cli/e2e_test.py +4 -0
  30. rasa/cli/inspect.py +3 -0
  31. rasa/cli/llm_fine_tuning.py +5 -0
  32. rasa/cli/run.py +4 -0
  33. rasa/cli/shell.py +3 -0
  34. rasa/cli/train.py +2 -2
  35. rasa/constants.py +6 -0
  36. rasa/core/actions/action.py +69 -39
  37. rasa/core/actions/action_run_slot_rejections.py +1 -1
  38. rasa/core/agent.py +16 -0
  39. rasa/core/available_agents.py +196 -0
  40. rasa/core/available_endpoints.py +30 -0
  41. rasa/core/channels/development_inspector.py +47 -14
  42. rasa/core/channels/inspector/dist/assets/{arc-0b11fe30.js → arc-2e78c586.js} +1 -1
  43. rasa/core/channels/inspector/dist/assets/{blockDiagram-38ab4fdb-9eef30a7.js → blockDiagram-38ab4fdb-806b712e.js} +1 -1
  44. rasa/core/channels/inspector/dist/assets/{c4Diagram-3d4e48cf-03e94f28.js → c4Diagram-3d4e48cf-0745efa9.js} +1 -1
  45. rasa/core/channels/inspector/dist/assets/channel-c436ca7c.js +1 -0
  46. rasa/core/channels/inspector/dist/assets/{classDiagram-70f12bd4-95c09eba.js → classDiagram-70f12bd4-7bd1082b.js} +1 -1
  47. rasa/core/channels/inspector/dist/assets/{classDiagram-v2-f2320105-38e8446c.js → classDiagram-v2-f2320105-d937ba49.js} +1 -1
  48. rasa/core/channels/inspector/dist/assets/clone-50dd656b.js +1 -0
  49. rasa/core/channels/inspector/dist/assets/{createText-2e5e7dd3-57dc3038.js → createText-2e5e7dd3-a2a564ca.js} +1 -1
  50. rasa/core/channels/inspector/dist/assets/{edges-e0da2a9e-4bac0545.js → edges-e0da2a9e-b5256940.js} +1 -1
  51. rasa/core/channels/inspector/dist/assets/{erDiagram-9861fffd-81795c90.js → erDiagram-9861fffd-e6883ad2.js} +1 -1
  52. rasa/core/channels/inspector/dist/assets/{flowDb-956e92f1-89489ae6.js → flowDb-956e92f1-e576fc02.js} +1 -1
  53. rasa/core/channels/inspector/dist/assets/{flowDiagram-66a62f08-cd152627.js → flowDiagram-66a62f08-2e298d01.js} +1 -1
  54. rasa/core/channels/inspector/dist/assets/flowDiagram-v2-96b9c2cf-2b2aeaf8.js +1 -0
  55. rasa/core/channels/inspector/dist/assets/{flowchart-elk-definition-4a651766-3da369bc.js → flowchart-elk-definition-4a651766-dd7b150a.js} +1 -1
  56. rasa/core/channels/inspector/dist/assets/{ganttDiagram-c361ad54-85ec16f8.js → ganttDiagram-c361ad54-5b79575c.js} +1 -1
  57. rasa/core/channels/inspector/dist/assets/{gitGraphDiagram-72cf32ee-495bc140.js → gitGraphDiagram-72cf32ee-3016f40a.js} +1 -1
  58. rasa/core/channels/inspector/dist/assets/{graph-1ec4d266.js → graph-3e19170f.js} +1 -1
  59. rasa/core/channels/inspector/dist/assets/index-1bd9135e.js +1353 -0
  60. rasa/core/channels/inspector/dist/assets/{index-3862675e-0a0e97c9.js → index-3862675e-eb9c86de.js} +1 -1
  61. rasa/core/channels/inspector/dist/assets/{infoDiagram-f8f76790-4d54bcde.js → infoDiagram-f8f76790-b4280e4d.js} +1 -1
  62. rasa/core/channels/inspector/dist/assets/{journeyDiagram-49397b02-dc097114.js → journeyDiagram-49397b02-556091f8.js} +1 -1
  63. rasa/core/channels/inspector/dist/assets/{layout-1a08981e.js → layout-08436411.js} +1 -1
  64. rasa/core/channels/inspector/dist/assets/{line-95f7f1d3.js → line-683c4f3b.js} +1 -1
  65. rasa/core/channels/inspector/dist/assets/{linear-97e69543.js → linear-cee6d791.js} +1 -1
  66. rasa/core/channels/inspector/dist/assets/{mindmap-definition-fc14e90a-8c71ff03.js → mindmap-definition-fc14e90a-a0bf0b1a.js} +1 -1
  67. rasa/core/channels/inspector/dist/assets/{pieDiagram-8a3498a8-f14c71c7.js → pieDiagram-8a3498a8-3730d5c4.js} +1 -1
  68. rasa/core/channels/inspector/dist/assets/{quadrantDiagram-120e2f19-f1d3c9ff.js → quadrantDiagram-120e2f19-12a20fed.js} +1 -1
  69. rasa/core/channels/inspector/dist/assets/{requirementDiagram-deff3bca-bfa2412f.js → requirementDiagram-deff3bca-b9732102.js} +1 -1
  70. rasa/core/channels/inspector/dist/assets/{sankeyDiagram-04a897e0-53f2c97b.js → sankeyDiagram-04a897e0-a2e72776.js} +1 -1
  71. rasa/core/channels/inspector/dist/assets/{sequenceDiagram-704730f1-319d7c0e.js → sequenceDiagram-704730f1-8b7a76bb.js} +1 -1
  72. rasa/core/channels/inspector/dist/assets/{stateDiagram-587899a1-76a09418.js → stateDiagram-587899a1-e65853ac.js} +1 -1
  73. rasa/core/channels/inspector/dist/assets/{stateDiagram-v2-d93cdb3a-a67f15d4.js → stateDiagram-v2-d93cdb3a-6f58a44b.js} +1 -1
  74. rasa/core/channels/inspector/dist/assets/{styles-6aaf32cf-0654e7c3.js → styles-6aaf32cf-df25b934.js} +1 -1
  75. rasa/core/channels/inspector/dist/assets/{styles-9a916d00-1394bb9d.js → styles-9a916d00-88357141.js} +1 -1
  76. rasa/core/channels/inspector/dist/assets/{styles-c10674c1-e4c5bdae.js → styles-c10674c1-d600174d.js} +1 -1
  77. rasa/core/channels/inspector/dist/assets/{svgDrawCommon-08f97a94-50957104.js → svgDrawCommon-08f97a94-4adc3e0b.js} +1 -1
  78. rasa/core/channels/inspector/dist/assets/{timeline-definition-85554ec2-b0885a6a.js → timeline-definition-85554ec2-42816fa1.js} +1 -1
  79. rasa/core/channels/inspector/dist/assets/{xychartDiagram-e933f94c-79e6541a.js → xychartDiagram-e933f94c-621eb66a.js} +1 -1
  80. rasa/core/channels/inspector/dist/index.html +2 -2
  81. rasa/core/channels/inspector/index.html +1 -1
  82. rasa/core/channels/inspector/src/App.tsx +53 -7
  83. rasa/core/channels/inspector/src/components/Chat.tsx +3 -2
  84. rasa/core/channels/inspector/src/components/DiagramFlow.tsx +1 -1
  85. rasa/core/channels/inspector/src/components/DialogueStack.tsx +7 -5
  86. rasa/core/channels/inspector/src/components/LatencyDisplay.tsx +268 -0
  87. rasa/core/channels/inspector/src/components/LoadingSpinner.tsx +6 -2
  88. rasa/core/channels/inspector/src/helpers/audio/audiostream.ts +8 -3
  89. rasa/core/channels/inspector/src/helpers/formatters.ts +24 -3
  90. rasa/core/channels/inspector/src/theme/base/styles.ts +19 -1
  91. rasa/core/channels/inspector/src/types.ts +12 -0
  92. rasa/core/channels/studio_chat.py +125 -34
  93. rasa/core/channels/voice_ready/twilio_voice.py +1 -1
  94. rasa/core/channels/voice_stream/audiocodes.py +9 -6
  95. rasa/core/channels/voice_stream/browser_audio.py +39 -4
  96. rasa/core/channels/voice_stream/call_state.py +13 -2
  97. rasa/core/channels/voice_stream/genesys.py +16 -13
  98. rasa/core/channels/voice_stream/jambonz.py +13 -11
  99. rasa/core/channels/voice_stream/twilio_media_streams.py +14 -13
  100. rasa/core/channels/voice_stream/util.py +11 -1
  101. rasa/core/channels/voice_stream/voice_channel.py +101 -29
  102. rasa/core/constants.py +4 -0
  103. rasa/core/nlg/contextual_response_rephraser.py +11 -7
  104. rasa/core/nlg/generator.py +21 -5
  105. rasa/core/nlg/response.py +43 -6
  106. rasa/core/nlg/translate.py +8 -0
  107. rasa/core/policies/enterprise_search_policy.py +4 -2
  108. rasa/core/policies/flow_policy.py +2 -2
  109. rasa/core/policies/flows/flow_executor.py +374 -35
  110. rasa/core/policies/flows/mcp_tool_executor.py +240 -0
  111. rasa/core/processor.py +6 -1
  112. rasa/core/run.py +8 -1
  113. rasa/core/utils.py +21 -1
  114. rasa/dialogue_understanding/commands/__init__.py +8 -0
  115. rasa/dialogue_understanding/commands/cancel_flow_command.py +97 -4
  116. rasa/dialogue_understanding/commands/chit_chat_answer_command.py +11 -0
  117. rasa/dialogue_understanding/commands/continue_agent_command.py +91 -0
  118. rasa/dialogue_understanding/commands/knowledge_answer_command.py +11 -0
  119. rasa/dialogue_understanding/commands/restart_agent_command.py +146 -0
  120. rasa/dialogue_understanding/commands/start_flow_command.py +129 -8
  121. rasa/dialogue_understanding/commands/utils.py +6 -2
  122. rasa/dialogue_understanding/generator/command_parser.py +4 -0
  123. rasa/dialogue_understanding/generator/llm_based_command_generator.py +50 -12
  124. rasa/dialogue_understanding/generator/prompt_templates/agent_command_prompt_v2_claude_3_5_sonnet_20240620_template.jinja2 +61 -0
  125. rasa/dialogue_understanding/generator/prompt_templates/agent_command_prompt_v2_gpt_4o_2024_11_20_template.jinja2 +61 -0
  126. rasa/dialogue_understanding/generator/prompt_templates/agent_command_prompt_v3_claude_3_5_sonnet_20240620_template.jinja2 +81 -0
  127. rasa/dialogue_understanding/generator/prompt_templates/agent_command_prompt_v3_gpt_4o_2024_11_20_template.jinja2 +81 -0
  128. rasa/dialogue_understanding/generator/single_step/compact_llm_command_generator.py +7 -6
  129. rasa/dialogue_understanding/generator/single_step/search_ready_llm_command_generator.py +7 -6
  130. rasa/dialogue_understanding/generator/single_step/single_step_based_llm_command_generator.py +41 -2
  131. rasa/dialogue_understanding/patterns/continue_interrupted.py +163 -1
  132. rasa/dialogue_understanding/patterns/default_flows_for_patterns.yml +51 -7
  133. rasa/dialogue_understanding/stack/dialogue_stack.py +123 -2
  134. rasa/dialogue_understanding/stack/frames/flow_stack_frame.py +57 -0
  135. rasa/dialogue_understanding/stack/utils.py +3 -2
  136. rasa/dialogue_understanding_test/du_test_runner.py +7 -2
  137. rasa/dialogue_understanding_test/du_test_schema.yml +3 -3
  138. rasa/e2e_test/e2e_test_runner.py +5 -0
  139. rasa/e2e_test/e2e_test_schema.yml +3 -3
  140. rasa/model_manager/model_api.py +1 -1
  141. rasa/model_manager/socket_bridge.py +8 -2
  142. rasa/server.py +10 -0
  143. rasa/shared/agents/__init__.py +0 -0
  144. rasa/shared/agents/utils.py +35 -0
  145. rasa/shared/constants.py +5 -0
  146. rasa/shared/core/constants.py +12 -1
  147. rasa/shared/core/domain.py +5 -5
  148. rasa/shared/core/events.py +319 -0
  149. rasa/shared/core/flows/flows_list.py +2 -2
  150. rasa/shared/core/flows/flows_yaml_schema.json +101 -186
  151. rasa/shared/core/flows/steps/call.py +51 -5
  152. rasa/shared/core/flows/validation.py +45 -7
  153. rasa/shared/core/flows/yaml_flows_io.py +3 -3
  154. rasa/shared/providers/llm/_base_litellm_client.py +39 -7
  155. rasa/shared/providers/llm/litellm_router_llm_client.py +8 -4
  156. rasa/shared/providers/llm/llm_client.py +7 -3
  157. rasa/shared/providers/llm/llm_response.py +49 -0
  158. rasa/shared/providers/llm/self_hosted_llm_client.py +8 -4
  159. rasa/shared/utils/common.py +2 -1
  160. rasa/shared/utils/llm.py +28 -5
  161. rasa/shared/utils/mcp/__init__.py +0 -0
  162. rasa/shared/utils/mcp/server_connection.py +157 -0
  163. rasa/shared/utils/schemas/events.py +42 -0
  164. rasa/studio/upload.py +4 -7
  165. rasa/tracing/instrumentation/instrumentation.py +4 -2
  166. rasa/utils/common.py +53 -0
  167. rasa/utils/licensing.py +21 -10
  168. rasa/utils/plotting.py +1 -1
  169. rasa/version.py +1 -1
  170. {rasa_pro-3.13.7.dist-info → rasa_pro-3.14.0.dev1.dist-info}/METADATA +16 -15
  171. {rasa_pro-3.13.7.dist-info → rasa_pro-3.14.0.dev1.dist-info}/RECORD +174 -137
  172. rasa/core/channels/inspector/dist/assets/channel-51d02e9e.js +0 -1
  173. rasa/core/channels/inspector/dist/assets/clone-cc738fa6.js +0 -1
  174. rasa/core/channels/inspector/dist/assets/flowDiagram-v2-96b9c2cf-0c716443.js +0 -1
  175. rasa/core/channels/inspector/dist/assets/index-c804b295.js +0 -1335
  176. {rasa_pro-3.13.7.dist-info → rasa_pro-3.14.0.dev1.dist-info}/NOTICE +0 -0
  177. {rasa_pro-3.13.7.dist-info → rasa_pro-3.14.0.dev1.dist-info}/WHEEL +0 -0
  178. {rasa_pro-3.13.7.dist-info → rasa_pro-3.14.0.dev1.dist-info}/entry_points.txt +0 -0
@@ -1088,13 +1088,15 @@ def _instrument_advance_flows_until_next_action(
1088
1088
  ) -> None:
1089
1089
  def tracing_advance_flows_until_next_action_wrapper(fn: Callable) -> Callable:
1090
1090
  @functools.wraps(fn)
1091
- def wrapper(
1091
+ async def wrapper(
1092
1092
  tracker: DialogueStateTracker,
1093
1093
  available_actions: List[str],
1094
1094
  flows: FlowsList,
1095
1095
  ) -> FlowActionPrediction:
1096
1096
  with tracer.start_as_current_span(f"{module_name}.{fn.__name__}") as span:
1097
- prediction: FlowActionPrediction = fn(tracker, available_actions, flows)
1097
+ prediction: FlowActionPrediction = await fn(
1098
+ tracker, available_actions, flows
1099
+ )
1098
1100
 
1099
1101
  span.set_attributes(
1100
1102
  {
rasa/utils/common.py CHANGED
@@ -34,7 +34,9 @@ from rasa.constants import (
34
34
  ENV_LOG_LEVEL_KAFKA,
35
35
  ENV_LOG_LEVEL_LIBRARIES,
36
36
  ENV_LOG_LEVEL_MATPLOTLIB,
37
+ ENV_LOG_LEVEL_MCP,
37
38
  ENV_LOG_LEVEL_RABBITMQ,
39
+ ENV_MCP_LOGGING_ENABLED,
38
40
  )
39
41
  from rasa.shared.constants import DEFAULT_LOG_LEVEL, ENV_LOG_LEVEL, TCP_PROTOCOL
40
42
  from rasa.shared.exceptions import RasaException
@@ -281,6 +283,7 @@ def configure_library_logging() -> None:
281
283
  update_kafka_log_level(library_log_level)
282
284
  update_rabbitmq_log_level(library_log_level)
283
285
  update_websockets_log_level(library_log_level)
286
+ update_mcp_log_level()
284
287
 
285
288
 
286
289
  def update_apscheduler_log_level() -> None:
@@ -415,6 +418,56 @@ def update_websockets_log_level(library_log_level: Text) -> None:
415
418
  logging.getLogger("websockets").propagate = False
416
419
 
417
420
 
421
+ def update_mcp_log_level() -> None:
422
+ """Set the log level for MCP-related loggers.
423
+
424
+ This function configures logging levels for MCP (Model Context Protocol) related
425
+ loggers to reduce noise from HTTP and MCP client libraries.
426
+
427
+ Environment Variables:
428
+ LOG_LEVEL_MCP: Set the log level for MCP-related loggers.
429
+ Valid values: DEBUG, INFO, WARNING, ERROR, CRITICAL
430
+ Default: ERROR
431
+
432
+ MCP_LOGGING_ENABLED: Enable or disable MCP logging completely.
433
+ Valid values: true, false
434
+ Default: true
435
+
436
+ Examples:
437
+ # Show only ERROR and above for MCP logs
438
+ export LOG_LEVEL_MCP=ERROR
439
+
440
+ # Show DEBUG level MCP logs (very verbose)
441
+ export LOG_LEVEL_MCP=DEBUG
442
+
443
+ # Completely disable MCP logging
444
+ export MCP_LOGGING_ENABLED=false
445
+ """
446
+ # Check if MCP logging is completely disabled
447
+ mcp_logging_enabled = (
448
+ os.environ.get(ENV_MCP_LOGGING_ENABLED, "true").lower() == "true"
449
+ )
450
+
451
+ # Default to ERROR level for MCP logs to reduce noise
452
+ mcp_log_level: Union[int, str] = os.environ.get(ENV_LOG_LEVEL_MCP, "ERROR")
453
+ if not mcp_logging_enabled:
454
+ # Completely disable MCP logging
455
+ mcp_log_level = logging.CRITICAL + 1 # Higher than CRITICAL to disable all logs
456
+
457
+ # MCP client and HTTP-related loggers that are commonly noisy
458
+ mcp_loggers = [
459
+ "mcp.client.streamable_http",
460
+ "mcp.client",
461
+ "httpcore.connection",
462
+ "httpcore.http11",
463
+ "httpx",
464
+ ]
465
+
466
+ for logger_name in mcp_loggers:
467
+ logging.getLogger(logger_name).setLevel(mcp_log_level)
468
+ logging.getLogger(logger_name).propagate = False
469
+
470
+
418
471
  def sort_list_of_dicts_by_first_key(dicts: List[Dict]) -> List[Dict]:
419
472
  """Sorts a list of dictionaries by their first key."""
420
473
  return sorted(dicts, key=lambda d: next(iter(d.keys())))
rasa/utils/licensing.py CHANGED
@@ -20,7 +20,8 @@ from rasa.shared.utils.cli import print_error_and_exit
20
20
  if typing.TYPE_CHECKING:
21
21
  from rasa.core.tracker_stores.tracker_store import TrackerStore
22
22
 
23
- LICENSE_ENV_VAR = "RASA_PRO_LICENSE"
23
+ LICENSE_ENV_VAR = "RASA_LICENSE"
24
+ LICENSE_ENV_VAR_LEGACY = "RASA_PRO_LICENSE"
24
25
  ALGORITHM = "RS256"
25
26
  # deepcode ignore HardcodedKey: This is a public key - not a security issue.
26
27
  PUBLIC_KEY = """-----BEGIN PUBLIC KEY-----
@@ -265,12 +266,22 @@ class License:
265
266
 
266
267
  def retrieve_license_from_env() -> Text:
267
268
  """Return the license found in the env var."""
269
+ # Check environment variables first
270
+ license_value = os.environ.get(LICENSE_ENV_VAR) or os.environ.get(
271
+ LICENSE_ENV_VAR_LEGACY
272
+ )
273
+ if license_value:
274
+ return license_value
275
+
276
+ # Fall back to .env file
268
277
  stored_env_values = dotenv_values(".env")
269
- license_from_env = os.environ.get(LICENSE_ENV_VAR)
270
- license = license_from_env or stored_env_values.get(LICENSE_ENV_VAR)
271
- if not license:
272
- raise LicenseNotFoundException()
273
- return license
278
+ license_value = stored_env_values.get(LICENSE_ENV_VAR) or stored_env_values.get(
279
+ LICENSE_ENV_VAR_LEGACY
280
+ )
281
+ if license_value:
282
+ return license_value
283
+
284
+ raise LicenseNotFoundException()
274
285
 
275
286
 
276
287
  def is_license_expiring_soon(license: License) -> bool:
@@ -297,15 +308,15 @@ def validate_license_from_env(product_area: Text = PRODUCT_AREA) -> None:
297
308
  except LicenseNotFoundException:
298
309
  structlogger.error("license.not_found.error")
299
310
  raise SystemExit(
300
- f"A Rasa Pro license is required. "
301
- f"Please set the environmental variable "
311
+ f"A Rasa license is required. "
312
+ f"Please set the environment variable "
302
313
  f"`{LICENSE_ENV_VAR}` to a valid license string. "
303
314
  )
304
315
  except LicenseValidationException as e:
305
316
  structlogger.error("license.validation.error", error=e)
306
317
  raise SystemExit(
307
- f"Failed to validate Rasa Pro license "
308
- f"which was read from environmental variable `{LICENSE_ENV_VAR}`. "
318
+ f"Failed to validate Rasa license "
319
+ f"which was read from environment variable `{LICENSE_ENV_VAR}`. "
309
320
  f"Please ensure `{LICENSE_ENV_VAR}` is set to a valid license string. "
310
321
  )
311
322
 
rasa/utils/plotting.py CHANGED
@@ -99,7 +99,7 @@ def plot_confusion_matrix(
99
99
  zmax = confusion_matrix.max() if len(confusion_matrix) > 0 else 1
100
100
  plt.clf()
101
101
  if not color_map:
102
- color_map = plt.cm.Blues
102
+ color_map = plt.cm.get_cmap("Blues")
103
103
  plt.imshow(
104
104
  confusion_matrix,
105
105
  interpolation="nearest",
rasa/version.py CHANGED
@@ -1,3 +1,3 @@
1
1
  # this file will automatically be changed,
2
2
  # do not add anything but the version number here!
3
- __version__ = "3.13.7"
3
+ __version__ = "3.14.0.dev1"
@@ -1,13 +1,13 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: rasa-pro
3
- Version: 3.13.7
3
+ Version: 3.14.0.dev1
4
4
  Summary: State-of-the-art open-core Conversational AI framework for Enterprises that natively leverages generative AI for effortless assistant development.
5
5
  Keywords: nlp,machine-learning,machine-learning-library,bot,bots,botkit,rasa conversational-agents,conversational-ai,chatbot,chatbot-framework,bot-framework
6
6
  Author: Rasa Technologies GmbH
7
7
  Author-email: hi@rasa.com
8
8
  Maintainer: Tom Bocklisch
9
9
  Maintainer-email: tom@rasa.com
10
- Requires-Python: >=3.9.2,<3.12
10
+ Requires-Python: >=3.10,<3.12
11
11
  Classifier: Development Status :: 5 - Production/Stable
12
12
  Classifier: Intended Audience :: Developers
13
13
  Classifier: Programming Language :: Python :: 3
@@ -23,7 +23,7 @@ Provides-Extra: spacy
23
23
  Provides-Extra: transformers
24
24
  Requires-Dist: CacheControl (>=0.14.2,<0.15.0)
25
25
  Requires-Dist: PyJWT[crypto] (>=2.8.0,<3.0.0)
26
- Requires-Dist: SQLAlchemy (>=2.0.41,<2.1.0)
26
+ Requires-Dist: SQLAlchemy (>=2.0.42,<2.1.0)
27
27
  Requires-Dist: absl-py (>=2.0,<2.1)
28
28
  Requires-Dist: aio-pika (>=8.2.3,<9.4.4)
29
29
  Requires-Dist: aiogram (>=3.15,<3.16)
@@ -38,14 +38,14 @@ Requires-Dist: colorama (>=0.4.6,<0.5.0) ; sys_platform == "win32"
38
38
  Requires-Dist: colorclass (>=2.2,<2.3)
39
39
  Requires-Dist: coloredlogs (>=15,<16)
40
40
  Requires-Dist: colorhash (>=2.0,<2.1.0)
41
- Requires-Dist: confluent-kafka (>=2.10.0,<3.0.0)
41
+ Requires-Dist: confluent-kafka (>=2.11.0,<3.0.0)
42
42
  Requires-Dist: cryptography (>=44.0.1)
43
43
  Requires-Dist: cvg-python-sdk (>=0.5.1,<0.6.0)
44
- Requires-Dist: dask (>=2024.7.0,<2024.8.0)
44
+ Requires-Dist: dask (>=2024.8.0,<2024.9.0)
45
45
  Requires-Dist: demoji (>=1.1.0,<2.0.0)
46
46
  Requires-Dist: diskcache (>=5.6.3,<5.7.0)
47
47
  Requires-Dist: dnspython (==2.6.1)
48
- Requires-Dist: faiss-cpu (>=1.7.4,<2.0.0)
48
+ Requires-Dist: faiss-cpu (>=1.11.0,<1.12.0)
49
49
  Requires-Dist: fbmessenger (>=6.0.0,<6.1.0)
50
50
  Requires-Dist: github3.py (>=3.2.0,<3.3.0) ; extra == "gh-release-notes"
51
51
  Requires-Dist: gitpython (>=3.1.41,<3.2.0) ; extra == "full"
@@ -65,8 +65,9 @@ Requires-Dist: langchain (>=0.2.17,<0.3.0)
65
65
  Requires-Dist: langchain-community (>=0.2.19,<0.3.0)
66
66
  Requires-Dist: langcodes (>=3.5.0,<4.0.0)
67
67
  Requires-Dist: litellm (>=1.69.0,<1.70.0)
68
- Requires-Dist: matplotlib (>=3.7,<3.8)
68
+ Requires-Dist: matplotlib (>=3.9.4,<3.10.0)
69
69
  Requires-Dist: mattermostwrapper (>=2.2,<2.3)
70
+ Requires-Dist: mcp (>=1.12.0,<1.13.0)
70
71
  Requires-Dist: networkx (>=3.1,<3.2)
71
72
  Requires-Dist: numpy (>=1.26.4,<1.27.0)
72
73
  Requires-Dist: onnxruntime (==1.19.2) ; extra == "pii"
@@ -93,13 +94,13 @@ Requires-Dist: python-dateutil (>=2.8.2,<2.9.0)
93
94
  Requires-Dist: python-dotenv (>=1.0.1,<2.0.0)
94
95
  Requires-Dist: python-engineio (>=4.12.2,<4.13.0)
95
96
  Requires-Dist: python-keycloak (>=3.12.0,<4.0.0)
96
- Requires-Dist: python-socketio (>=5.8,<6)
97
+ Requires-Dist: python-socketio (>=5.13,<6)
97
98
  Requires-Dist: pytz (>=2022.7.1,<2023.0)
98
- Requires-Dist: pyyaml (>=6.0)
99
+ Requires-Dist: pyyaml (>=6.0.2,<6.1.0)
99
100
  Requires-Dist: qdrant-client (>=1.9.1,<1.10.0)
100
101
  Requires-Dist: questionary (>=1.10.0,<2.1.0)
101
102
  Requires-Dist: randomname (>=0.2.1,<0.3.0)
102
- Requires-Dist: rasa-sdk (==3.13.0)
103
+ Requires-Dist: rasa-sdk (==3.14.0.dev2)
103
104
  Requires-Dist: redis (>=4.6.0,<6.0)
104
105
  Requires-Dist: regex (>=2024.7.24,<2024.8.0)
105
106
  Requires-Dist: requests (>=2.32.3,<2.33.0)
@@ -111,16 +112,16 @@ Requires-Dist: sanic (>=22.12,<22.13)
111
112
  Requires-Dist: sanic-cors (>=2.2.0,<2.3.0)
112
113
  Requires-Dist: sanic-jwt (>=1.8.0,<2.0.0)
113
114
  Requires-Dist: sanic-routing (>=22.8.0,<23.0.0)
114
- Requires-Dist: scikit-learn (>=1.5.1,<1.6.0)
115
+ Requires-Dist: scikit-learn (>=1.6.1,<1.7.0)
115
116
  Requires-Dist: scipy (>=1.13.1,<1.14.0)
116
117
  Requires-Dist: sentencepiece[sentencepiece] (>=0.1.99,<0.2.0) ; extra == "transformers" or extra == "full"
117
118
  Requires-Dist: sentry-sdk (>=2.8.0,<3)
118
119
  Requires-Dist: setuptools (>=78.1.1,<78.2.0)
119
- Requires-Dist: sklearn-crfsuite (>=0.3.6,<0.4.0)
120
- Requires-Dist: skops (>=0.10.0,<0.11.0)
120
+ Requires-Dist: sklearn-crfsuite (>=0.5.0,<0.6.0)
121
+ Requires-Dist: skops (>=0.11.0,<0.12.0)
121
122
  Requires-Dist: slack-sdk (>=3.27.1,<3.28.0)
122
123
  Requires-Dist: spacy (>=3.5.4,<4.0.0) ; extra == "spacy" or extra == "full"
123
- Requires-Dist: structlog (>=23.1.0,<23.2.0)
124
+ Requires-Dist: structlog (>=25.4.0,<25.5.0)
124
125
  Requires-Dist: structlog-sentry (>=2.0.3,<2.1.0)
125
126
  Requires-Dist: tarsafe (>=0.0.5,<0.0.6)
126
127
  Requires-Dist: tenacity (>=8.4.1,<8.5.0)
@@ -135,7 +136,7 @@ Requires-Dist: tensorflow-metal (==1.1.0) ; (sys_platform == "darwin" and platfo
135
136
  Requires-Dist: tensorflow-text (==2.14.0) ; sys_platform != "win32" and platform_machine != "arm64" and platform_machine != "aarch64"
136
137
  Requires-Dist: tensorflow_hub (>=0.13.0,<0.14.0)
137
138
  Requires-Dist: terminaltables (>=3.1.10,<3.2.0)
138
- Requires-Dist: tiktoken (>=0.7.0,<0.8.0)
139
+ Requires-Dist: tiktoken (>=0.9.0,<0.10.0)
139
140
  Requires-Dist: tqdm (>=4.66.2,<5.0.0)
140
141
  Requires-Dist: transformers (>=4.38.2,<4.39.0) ; extra == "transformers" or extra == "full"
141
142
  Requires-Dist: twilio (>=8.4,<8.5)