microsoft-agents-hosting-dialogs 0.10.0.dev9__tar.gz → 1.1.0.dev0__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 (97) hide show
  1. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/PKG-INFO +18 -3
  2. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/component_dialog.py +5 -5
  3. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/models/dialog_reason.py +7 -7
  4. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/prompts/activity_prompt.py +9 -9
  5. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/prompts/attachment_prompt.py +1 -1
  6. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/prompts/choice_prompt.py +1 -1
  7. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/prompts/confirm_prompt.py +1 -1
  8. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/prompts/prompt_options.py +3 -3
  9. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/waterfall_dialog.py +10 -10
  10. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/waterfall_step_context.py +8 -8
  11. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents_hosting_dialogs.egg-info/PKG-INFO +18 -3
  12. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents_hosting_dialogs.egg-info/requires.txt +1 -1
  13. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/readme.md +16 -1
  14. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/LICENSE +0 -0
  15. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/__init__.py +0 -0
  16. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/_component_registration.py +0 -0
  17. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/_telemetry_client.py +0 -0
  18. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/choices/__init__.py +0 -0
  19. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/choices/channel.py +0 -0
  20. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/choices/choice_factory.py +0 -0
  21. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/choices/choice_recognizer.py +0 -0
  22. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/choices/find.py +0 -0
  23. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/choices/models/__init__.py +0 -0
  24. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/choices/models/choice.py +0 -0
  25. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/choices/models/choice_factory_options.py +0 -0
  26. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/choices/models/find_choices_options.py +0 -0
  27. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/choices/models/find_values_options.py +0 -0
  28. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/choices/models/found_choice.py +0 -0
  29. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/choices/models/found_value.py +0 -0
  30. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/choices/models/list_style.py +0 -0
  31. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/choices/models/model_result.py +0 -0
  32. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/choices/models/sorted_value.py +0 -0
  33. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/choices/models/token.py +0 -0
  34. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/choices/tokenizer.py +0 -0
  35. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/dialog.py +0 -0
  36. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/dialog_component_registration.py +0 -0
  37. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/dialog_container.py +0 -0
  38. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/dialog_context.py +0 -0
  39. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/dialog_extensions.py +0 -0
  40. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/dialog_manager.py +0 -0
  41. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/dialog_manager_result.py +0 -0
  42. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/dialog_set.py +0 -0
  43. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/dialog_state.py +0 -0
  44. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/memory/__init__.py +0 -0
  45. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/memory/component_memory_scopes_base.py +0 -0
  46. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/memory/component_path_resolvers_base.py +0 -0
  47. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/memory/dialog_path.py +0 -0
  48. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/memory/dialog_state_manager.py +0 -0
  49. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/memory/dialog_state_manager_configuration.py +0 -0
  50. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/memory/path_resolver_base.py +0 -0
  51. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/memory/path_resolvers/__init__.py +0 -0
  52. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/memory/path_resolvers/alias_path_resolver.py +0 -0
  53. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/memory/path_resolvers/at_at_path_resolver.py +0 -0
  54. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/memory/path_resolvers/at_path_resolver.py +0 -0
  55. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/memory/path_resolvers/dollar_path_resolver.py +0 -0
  56. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/memory/path_resolvers/hash_path_resolver.py +0 -0
  57. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/memory/path_resolvers/percent_path_resolver.py +0 -0
  58. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/memory/scope_path.py +0 -0
  59. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/memory/scopes/__init__.py +0 -0
  60. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/memory/scopes/bot_state_memory_scope.py +0 -0
  61. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/memory/scopes/class_memory_scope.py +0 -0
  62. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/memory/scopes/conversation_memory_scope.py +0 -0
  63. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/memory/scopes/dialog_class_memory_scope.py +0 -0
  64. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/memory/scopes/dialog_context_memory_scope.py +0 -0
  65. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/memory/scopes/dialog_memory_scope.py +0 -0
  66. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/memory/scopes/memory_scope.py +0 -0
  67. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/memory/scopes/settings_memory_scope.py +0 -0
  68. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/memory/scopes/this_memory_scope.py +0 -0
  69. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/memory/scopes/turn_memory_scope.py +0 -0
  70. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/memory/scopes/user_memory_scope.py +0 -0
  71. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/models/__init__.py +0 -0
  72. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/models/dialog_event.py +0 -0
  73. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/models/dialog_events.py +0 -0
  74. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/models/dialog_instance.py +0 -0
  75. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/models/dialog_turn_result.py +0 -0
  76. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/models/dialog_turn_status.py +0 -0
  77. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/object_path.py +0 -0
  78. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/persisted_state.py +0 -0
  79. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/persisted_state_keys.py +0 -0
  80. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/prompts/__init__.py +0 -0
  81. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/prompts/datetime_prompt.py +0 -0
  82. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/prompts/datetime_resolution.py +0 -0
  83. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/prompts/number_prompt.py +0 -0
  84. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/prompts/oauth_prompt.py +0 -0
  85. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/prompts/oauth_prompt_settings.py +0 -0
  86. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/prompts/prompt.py +0 -0
  87. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/prompts/prompt_culture_models.py +0 -0
  88. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/prompts/prompt_recognizer_result.py +0 -0
  89. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/prompts/prompt_validator.py +0 -0
  90. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/prompts/prompt_validator_context.py +0 -0
  91. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents/hosting/dialogs/prompts/text_prompt.py +0 -0
  92. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents_hosting_dialogs.egg-info/SOURCES.txt +0 -0
  93. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents_hosting_dialogs.egg-info/dependency_links.txt +0 -0
  94. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/microsoft_agents_hosting_dialogs.egg-info/top_level.txt +0 -0
  95. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/pyproject.toml +0 -0
  96. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/setup.cfg +0 -0
  97. {microsoft_agents_hosting_dialogs-0.10.0.dev9 → microsoft_agents_hosting_dialogs-1.1.0.dev0}/setup.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: microsoft-agents-hosting-dialogs
3
- Version: 0.10.0.dev9
3
+ Version: 1.1.0.dev0
4
4
  Summary: Dialog system for Microsoft Agents (waterfall dialogs, prompts, choices)
5
5
  Author: Microsoft Corporation
6
6
  License-Expression: MIT
@@ -15,7 +15,7 @@ Classifier: Operating System :: OS Independent
15
15
  Requires-Python: >=3.10
16
16
  Description-Content-Type: text/markdown
17
17
  License-File: LICENSE
18
- Requires-Dist: microsoft-agents-hosting-core==0.10.0.dev9
18
+ Requires-Dist: microsoft-agents-hosting-core==1.1.0.dev0
19
19
  Requires-Dist: recognizers-text-number>=1.0.1a0
20
20
  Requires-Dist: recognizers-text-choice>=1.0.1a0
21
21
  Requires-Dist: recognizers-text-date-time>=1.0.1a0
@@ -84,4 +84,19 @@ dialogs.add(WaterfallDialog("main", [step1, step2]))
84
84
 
85
85
  ## Release Notes
86
86
 
87
- See [CHANGELOG.md](https://github.com/microsoft/Agents/blob/main/CHANGELOG.md) for release history.
87
+ <table style="width:100%">
88
+ <tr>
89
+ <th style="width:20%">Version</th>
90
+ <th style="width:20%">Date</th>
91
+ <th style="width:60%">Release Notes</th>
92
+ </tr>
93
+ <tr>
94
+ <td>1.0.0</td>
95
+ <td>2026-05-22</td>
96
+ <td>
97
+ <a href="https://github.com/microsoft/Agents-for-python/blob/main/changelog.md#microsoft-365-agents-sdk-for-python---release-notes-v100">
98
+ 1.0.0 Release Notes
99
+ </a>
100
+ </td>
101
+ </tr>
102
+ </table>
@@ -27,7 +27,7 @@ class ComponentDialog(Dialog):
27
27
 
28
28
  def __init__(self, dialog_id: str):
29
29
  """
30
- Initializes a new instance of the :class:`ComponentDialog`
30
+ Initializes a new instance of the :class:`microsoft_agents.hosting.dialogs.ComponentDialog`
31
31
 
32
32
  :param dialog_id: The ID to assign to the new dialog within the parent dialog set.
33
33
  :type dialog_id: str
@@ -124,7 +124,7 @@ class ComponentDialog(Dialog):
124
124
  .. remarks::
125
125
  Containers are typically leaf nodes on the stack but the dev is free to push other dialogs
126
126
  on top of the stack which will result in the container receiving an unexpected call to
127
- :meth:`ComponentDialog.resume_dialog()` when the pushed on dialog ends.
127
+ :meth:`microsoft_agents.hosting.dialogs.ComponentDialog.resume_dialog` when the pushed on dialog ends.
128
128
  To avoid the container prematurely ending we need to implement this method and simply
129
129
  ask our inner dialog stack to re-prompt.
130
130
 
@@ -183,11 +183,11 @@ class ComponentDialog(Dialog):
183
183
 
184
184
  def add_dialog(self, dialog: Dialog) -> object:
185
185
  """
186
- Adds a :class:`Dialog` to the component dialog and returns the updated component.
186
+ Adds a :class:`microsoft_agents.hosting.dialogs.Dialog` to the component dialog and returns the updated component.
187
187
 
188
188
  :param dialog: The dialog to add.
189
- :return: The updated :class:`ComponentDialog`.
190
- :rtype: :class:`ComponentDialog`
189
+ :return: The updated :class:`microsoft_agents.hosting.dialogs.ComponentDialog`.
190
+ :rtype: :class:`microsoft_agents.hosting.dialogs.ComponentDialog`
191
191
  """
192
192
  self._dialogs.add(dialog)
193
193
  if not self.initial_dialog_id:
@@ -7,17 +7,17 @@ class DialogReason(Enum):
7
7
  """
8
8
  Indicates in which a dialog-related method is being called.
9
9
 
10
- :var BeginCalled: A dialog is being started through a call to :meth:`DialogContext.begin()`.
10
+ :var BeginCalled: A dialog is being started through a call to :meth:`microsoft_agents.hosting.dialogs.DialogContext.begin_dialog`.
11
11
  :vartype BeginCalled: int
12
- :var ContinueCalled: A dialog is being continued through a call to :meth:`DialogContext.continue_dialog()`.
12
+ :var ContinueCalled: A dialog is being continued through a call to :meth:`microsoft_agents.hosting.dialogs.DialogContext.continue_dialog`.
13
13
  :vartype ContinueCalled: int
14
- :var EndCalled: A dialog ended normally through a call to :meth:`DialogContext.end_dialog()
14
+ :var EndCalled: A dialog ended normally through a call to :meth:`microsoft_agents.hosting.dialogs.DialogContext.end_dialog`
15
15
  :vartype EndCalled: int
16
- :var ReplaceCalled: A dialog is ending and replaced through a call to :meth:``DialogContext.replace_dialog()`.
17
- :vartype ReplacedCalled: int
18
- :var CancelCalled: A dialog was cancelled as part of a call to :meth:`DialogContext.cancel_all_dialogs()`.
16
+ :var ReplaceCalled: A dialog is ending and replaced through a call to :meth:`microsoft_agents.hosting.dialogs.DialogContext.replace_dialog`.
17
+ :vartype ReplaceCalled: int
18
+ :var CancelCalled: A dialog was cancelled as part of a call to :meth:`microsoft_agents.hosting.dialogs.DialogContext.cancel_all_dialogs`.
19
19
  :vartype CancelCalled: int
20
- :var NextCalled: A preceding step was skipped through a call to :meth:`WaterfallStepContext.next()`.
20
+ :var NextCalled: A preceding step was skipped through a call to :meth:`microsoft_agents.hosting.dialogs.WaterfallStepContext.next`.
21
21
  :vartype NextCalled: int
22
22
  """
23
23
 
@@ -44,12 +44,12 @@ class ActivityPrompt(Dialog):
44
44
  """Starts the prompt by sending the initial prompt activity.
45
45
 
46
46
  Initialises persisted state with an attempt count of 0, then calls
47
- :meth:`on_prompt`.
47
+ :meth:`microsoft_agents.hosting.dialogs.ActivityPrompt.on_prompt`.
48
48
 
49
49
  :param dialog_context: The dialog context for the current turn.
50
- :param options: Must be a :class:`PromptOptions` instance.
51
- :raises TypeError: If ``options`` is not a :class:`PromptOptions`.
52
- :return: :attr:`Dialog.end_of_turn` to wait for the user's response.
50
+ :param options: Must be a :class:`microsoft_agents.hosting.dialogs.PromptOptions` instance.
51
+ :raises TypeError: If ``options`` is not a :class:`microsoft_agents.hosting.dialogs.PromptOptions`.
52
+ :return: :attr:`microsoft_agents.hosting.dialogs.Dialog.end_of_turn` to wait for the user's response.
53
53
  """
54
54
  if not dialog_context:
55
55
  raise TypeError("ActivityPrompt.begin_dialog(): dc cannot be None.")
@@ -85,18 +85,18 @@ class ActivityPrompt(Dialog):
85
85
  """Processes the next incoming activity through the prompt.
86
86
 
87
87
  Increments the persisted attempt count **before** calling the validator,
88
- so :attr:`PromptValidatorContext.attempt_count` is at least 1 on the
88
+ so :attr:`microsoft_agents.hosting.dialogs.PromptValidatorContext.attempt_count` is at least 1 on the
89
89
  first validation call.
90
90
 
91
91
  .. note::
92
- This differs from the base :class:`Prompt` class, where
92
+ This differs from the base :class:`microsoft_agents.hosting.dialogs.Prompt` class, where
93
93
  ``attempt_count`` is never stored in state and is always 0 when the
94
94
  validator runs. Code that validates both ``ActivityPrompt`` and
95
95
  ``Prompt`` subclasses should rely on
96
- :attr:`PromptOptions.number_of_attempts` for consistent counting.
96
+ :attr:`microsoft_agents.hosting.dialogs.PromptOptions.number_of_attempts` for consistent counting.
97
97
 
98
98
  :param dialog_context: The dialog context for the current turn.
99
- :return: :attr:`Dialog.end_of_turn` while waiting for valid input, or
99
+ :return: :attr:`microsoft_agents.hosting.dialogs.Dialog.end_of_turn` while waiting for valid input, or
100
100
  a Complete result once the validator accepts the activity.
101
101
  """
102
102
  if not dialog_context:
@@ -194,7 +194,7 @@ class ActivityPrompt(Dialog):
194
194
  :param state: Persisted prompt state.
195
195
  :param options: Prompt options.
196
196
  :return: A result with ``succeeded=True`` and ``value`` set to the
197
- current :class:`Activity`.
197
+ current :class:`microsoft_agents.activity.Activity`.
198
198
  """
199
199
  result = PromptRecognizerResult()
200
200
  result.succeeded = True
@@ -71,7 +71,7 @@ class AttachmentPrompt(Prompt):
71
71
  :param state: Persisted prompt state (unused by AttachmentPrompt).
72
72
  :param options: Prompt options (unused by AttachmentPrompt).
73
73
  :return: Recognition result with ``succeeded=True`` and the list of
74
- :class:`Attachment` objects, or ``succeeded=False`` if none were found.
74
+ :class:`microsoft_agents.activity.Attachment` objects, or ``succeeded=False`` if none were found.
75
75
  """
76
76
  if not turn_context:
77
77
  raise TypeError("AttachmentPrompt.on_recognize(): context cannot be None.")
@@ -142,7 +142,7 @@ class ChoicePrompt(Prompt):
142
142
 
143
143
  :param activity: The incoming activity (provides ``locale``).
144
144
  :param opt: Optional recogniser options (provides ``locale`` fallback).
145
- :return: A locale string present in :attr:`_default_choice_options`.
145
+ :return: A locale string present in :attr:`microsoft_agents.hosting.dialogs.ChoicePrompt._default_choice_options`.
146
146
  """
147
147
  culture = (
148
148
  PromptCultureModels.map_to_nearest_language(activity.locale)
@@ -33,7 +33,7 @@ class ConfirmPrompt(Prompt):
33
33
 
34
34
  Returns ``True`` for confirmation, ``False`` for denial.
35
35
 
36
- Culture/locale detection uses :class:`PromptCultureModels`. Override
36
+ Culture/locale detection uses :class:`microsoft_agents.hosting.dialogs.PromptCultureModels`. Override
37
37
  ``default_locale`` or ``choice_defaults`` at construction time to customise
38
38
  the displayed choices and the locale used for recognition.
39
39
  """
@@ -7,7 +7,7 @@ from microsoft_agents.hosting.dialogs.choices import Choice, ListStyle
7
7
 
8
8
  class PromptOptions:
9
9
  """
10
- Contains settings to pass to a :class:`Prompt` object when the prompt is started.
10
+ Contains settings to pass to a :class:`microsoft_agents.hosting.dialogs.Prompt` object when the prompt is started.
11
11
  """
12
12
 
13
13
  def __init__(
@@ -20,13 +20,13 @@ class PromptOptions:
20
20
  number_of_attempts: int = 0,
21
21
  ):
22
22
  """
23
- Contains settings to pass to a :class:`Prompt` when the prompt is started.
23
+ Contains settings to pass to a :class:`microsoft_agents.hosting.dialogs.Prompt` when the prompt is started.
24
24
 
25
25
  :param prompt: The initial prompt activity to send to the user.
26
26
  :type prompt: :class:`microsoft_agents.activity.Activity`
27
27
  :param retry_prompt: The activity to send when the user's input fails validation.
28
28
  :type retry_prompt: :class:`microsoft_agents.activity.Activity`
29
- :param choices: The list of choices presented to the user (used by :class:`ChoicePrompt`).
29
+ :param choices: The list of choices presented to the user (used by :class:`microsoft_agents.hosting.dialogs.ChoicePrompt`).
30
30
  :type choices: list[:class:`microsoft_agents.hosting.dialogs.choices.Choice`]
31
31
  :param style: Controls how the choice list is rendered.
32
32
  :type style: :class:`microsoft_agents.hosting.dialogs.choices.ListStyle`
@@ -18,9 +18,9 @@ from .waterfall_step_context import WaterfallStepContext
18
18
  class WaterfallDialog(Dialog):
19
19
  """A dialog composed of a fixed, ordered sequence of steps (a waterfall).
20
20
 
21
- Each step receives a :class:`WaterfallStepContext` and must either:
21
+ Each step receives a :class:`microsoft_agents.hosting.dialogs.WaterfallStepContext` and must either:
22
22
 
23
- * return :attr:`Dialog.end_of_turn` to wait for user input before proceeding
23
+ * return :attr:`microsoft_agents.hosting.dialogs.Dialog.end_of_turn` to wait for user input before proceeding
24
24
  to the next step, or
25
25
  * call ``await step.next(result)`` / ``await step.begin_dialog(...)`` /
26
26
  ``await step.end_dialog(...)`` to advance the flow explicitly.
@@ -44,9 +44,9 @@ class WaterfallDialog(Dialog):
44
44
 
45
45
  :param dialog_id: Unique ID for this dialog within its parent DialogSet.
46
46
  :param steps: Optional list of async callables (step functions). Each callable
47
- must accept a single :class:`WaterfallStepContext` and return a
48
- :class:`DialogTurnResult`. Pass ``None`` or omit to start with an empty
49
- waterfall and add steps later with :meth:`add_step`.
47
+ must accept a single :class:`microsoft_agents.hosting.dialogs.WaterfallStepContext` and return a
48
+ :class:`microsoft_agents.hosting.dialogs.DialogTurnResult`. Pass ``None`` or omit to start with an empty
49
+ waterfall and add steps later with :meth:`microsoft_agents.hosting.dialogs.WaterfallDialog.add_step`.
50
50
  :raises TypeError: If ``steps`` is not a list.
51
51
  """
52
52
  super(WaterfallDialog, self).__init__(dialog_id)
@@ -80,7 +80,7 @@ class WaterfallDialog(Dialog):
80
80
 
81
81
  :param dialog_context: The dialog context for the current turn.
82
82
  :param options: Optional argument passed through to every step as
83
- :attr:`WaterfallStepContext.options`.
83
+ :attr:`microsoft_agents.hosting.dialogs.WaterfallStepContext.options`.
84
84
  :return: The result of the first step, or a Complete result if there are
85
85
  no steps.
86
86
  """
@@ -112,9 +112,9 @@ class WaterfallDialog(Dialog):
112
112
  ) -> DialogTurnResult:
113
113
  """Continues the waterfall on the next incoming activity.
114
114
 
115
- Non-message activities are ignored (returns :attr:`Dialog.end_of_turn`).
115
+ Non-message activities are ignored (returns :attr:`microsoft_agents.hosting.dialogs.Dialog.end_of_turn`).
116
116
  For message activities the user's text is forwarded as the result of the
117
- previous step via :meth:`resume_dialog`.
117
+ previous step via :meth:`microsoft_agents.hosting.dialogs.WaterfallDialog.resume_dialog`.
118
118
 
119
119
  :param dialog_context: The dialog context for the current turn.
120
120
  :return: The result of resuming the current step.
@@ -138,7 +138,7 @@ class WaterfallDialog(Dialog):
138
138
  step's output.
139
139
 
140
140
  Called automatically by the dialog system when a child dialog completes or
141
- when :meth:`WaterfallStepContext.next` is called explicitly.
141
+ when :meth:`microsoft_agents.hosting.dialogs.WaterfallStepContext.next` is called explicitly.
142
142
 
143
143
  :param dialog_context: The dialog context for the current turn.
144
144
  :param reason: Why the dialog is being resumed.
@@ -219,7 +219,7 @@ class WaterfallDialog(Dialog):
219
219
  last step.
220
220
 
221
221
  Saves the step index into persisted state, constructs a
222
- :class:`WaterfallStepContext`, and delegates to :meth:`on_step`.
222
+ :class:`microsoft_agents.hosting.dialogs.WaterfallStepContext`, and delegates to :meth:`microsoft_agents.hosting.dialogs.WaterfallDialog.on_step`.
223
223
 
224
224
  :param dialog_context: The dialog context for the current turn.
225
225
  :param index: Zero-based index of the step to run.
@@ -8,20 +8,20 @@ from .dialog_state import DialogState
8
8
 
9
9
 
10
10
  class WaterfallStepContext(DialogContext):
11
- """Context passed to each step function in a :class:`WaterfallDialog`.
11
+ """Context passed to each step function in a :class:`microsoft_agents.hosting.dialogs.WaterfallDialog`.
12
12
 
13
- Inherits from :class:`DialogContext` so step functions can call
14
- :meth:`begin_dialog`, :meth:`prompt`, :meth:`end_dialog`, etc. directly on
13
+ Inherits from :class:`microsoft_agents.hosting.dialogs.DialogContext` so step functions can call
14
+ :meth:`microsoft_agents.hosting.dialogs.DialogContext.begin_dialog`, :meth:`microsoft_agents.hosting.dialogs.DialogContext.prompt`, :meth:`microsoft_agents.hosting.dialogs.DialogContext.end_dialog`, etc. directly on
15
15
  the step context.
16
16
 
17
- In addition to the standard :class:`DialogContext` interface, a step context
17
+ In addition to the standard :class:`microsoft_agents.hosting.dialogs.DialogContext` interface, a step context
18
18
  provides read-only properties for the current step index, the options passed
19
19
  to the waterfall, the reason this step is executing, the result from the
20
20
  previous step (or child dialog), and a shared ``values`` dict that persists
21
21
  across all steps of the same waterfall instance.
22
22
 
23
- Call :meth:`next` to skip ahead to the next step without waiting for user
24
- input. Calling :meth:`next` more than once in the same step raises an
23
+ Call :meth:`microsoft_agents.hosting.dialogs.WaterfallStepContext.next` to skip ahead to the next step without waiting for user
24
+ input. Calling :meth:`microsoft_agents.hosting.dialogs.WaterfallStepContext.next` more than once in the same step raises an
25
25
  exception.
26
26
  """
27
27
 
@@ -54,7 +54,7 @@ class WaterfallStepContext(DialogContext):
54
54
 
55
55
  @property
56
56
  def options(self) -> object:
57
- """Options originally passed to :meth:`WaterfallDialog.begin_dialog`.
57
+ """Options originally passed to :meth:`microsoft_agents.hosting.dialogs.WaterfallDialog.begin_dialog`.
58
58
  Shared across all steps of the same waterfall run.
59
59
  """
60
60
  return self._options
@@ -92,7 +92,7 @@ class WaterfallStepContext(DialogContext):
92
92
  advance immediately (e.g. when data was already available).
93
93
 
94
94
  :param result: Value to pass to the next step as
95
- :attr:`WaterfallStepContext.result`.
95
+ :attr:`microsoft_agents.hosting.dialogs.WaterfallStepContext.result`.
96
96
  :raises Exception: If called more than once within the same step.
97
97
  :return: The result of running the next step.
98
98
  """
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: microsoft-agents-hosting-dialogs
3
- Version: 0.10.0.dev9
3
+ Version: 1.1.0.dev0
4
4
  Summary: Dialog system for Microsoft Agents (waterfall dialogs, prompts, choices)
5
5
  Author: Microsoft Corporation
6
6
  License-Expression: MIT
@@ -15,7 +15,7 @@ Classifier: Operating System :: OS Independent
15
15
  Requires-Python: >=3.10
16
16
  Description-Content-Type: text/markdown
17
17
  License-File: LICENSE
18
- Requires-Dist: microsoft-agents-hosting-core==0.10.0.dev9
18
+ Requires-Dist: microsoft-agents-hosting-core==1.1.0.dev0
19
19
  Requires-Dist: recognizers-text-number>=1.0.1a0
20
20
  Requires-Dist: recognizers-text-choice>=1.0.1a0
21
21
  Requires-Dist: recognizers-text-date-time>=1.0.1a0
@@ -84,4 +84,19 @@ dialogs.add(WaterfallDialog("main", [step1, step2]))
84
84
 
85
85
  ## Release Notes
86
86
 
87
- See [CHANGELOG.md](https://github.com/microsoft/Agents/blob/main/CHANGELOG.md) for release history.
87
+ <table style="width:100%">
88
+ <tr>
89
+ <th style="width:20%">Version</th>
90
+ <th style="width:20%">Date</th>
91
+ <th style="width:60%">Release Notes</th>
92
+ </tr>
93
+ <tr>
94
+ <td>1.0.0</td>
95
+ <td>2026-05-22</td>
96
+ <td>
97
+ <a href="https://github.com/microsoft/Agents-for-python/blob/main/changelog.md#microsoft-365-agents-sdk-for-python---release-notes-v100">
98
+ 1.0.0 Release Notes
99
+ </a>
100
+ </td>
101
+ </tr>
102
+ </table>
@@ -1,4 +1,4 @@
1
- microsoft-agents-hosting-core==0.10.0.dev9
1
+ microsoft-agents-hosting-core==1.1.0.dev0
2
2
  recognizers-text-number>=1.0.1a0
3
3
  recognizers-text-choice>=1.0.1a0
4
4
  recognizers-text-date-time>=1.0.1a0
@@ -58,4 +58,19 @@ dialogs.add(WaterfallDialog("main", [step1, step2]))
58
58
 
59
59
  ## Release Notes
60
60
 
61
- See [CHANGELOG.md](https://github.com/microsoft/Agents/blob/main/CHANGELOG.md) for release history.
61
+ <table style="width:100%">
62
+ <tr>
63
+ <th style="width:20%">Version</th>
64
+ <th style="width:20%">Date</th>
65
+ <th style="width:60%">Release Notes</th>
66
+ </tr>
67
+ <tr>
68
+ <td>1.0.0</td>
69
+ <td>2026-05-22</td>
70
+ <td>
71
+ <a href="https://github.com/microsoft/Agents-for-python/blob/main/changelog.md#microsoft-365-agents-sdk-for-python---release-notes-v100">
72
+ 1.0.0 Release Notes
73
+ </a>
74
+ </td>
75
+ </tr>
76
+ </table>