microsoft-agents-hosting-core 0.7.0.dev1__py3-none-any.whl → 0.7.0.dev6__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.
@@ -7,35 +7,27 @@ from __future__ import annotations
7
7
 
8
8
  from typing import Optional
9
9
 
10
+ from pydantic import BaseModel
11
+
10
12
  from microsoft_agents.activity import Activity
11
13
 
12
14
  from ...storage._type_aliases import JSON
13
15
  from ...storage import StoreItem
14
16
 
15
17
 
16
- class _SignInState(StoreItem):
18
+ class _SignInState(BaseModel, StoreItem):
17
19
  """Store item for sign-in state, including tokens and continuation activity.
18
20
 
19
21
  Used to cache tokens and keep track of activities during single and
20
22
  multi-turn sign-in flows.
21
23
  """
22
24
 
23
- def __init__(
24
- self,
25
- active_handler_id: str,
26
- continuation_activity: Optional[Activity] = None,
27
- ) -> None:
28
- self.active_handler_id = active_handler_id
29
- self.continuation_activity = continuation_activity
25
+ active_handler_id: str
26
+ continuation_activity: Optional[Activity] = None
30
27
 
31
28
  def store_item_to_json(self) -> JSON:
32
- return {
33
- "active_handler_id": self.active_handler_id,
34
- "continuation_activity": self.continuation_activity,
35
- }
29
+ return self.model_dump(mode="json", exclude_unset=True, by_alias=True)
36
30
 
37
31
  @staticmethod
38
32
  def from_json_to_store_item(json_data: JSON) -> _SignInState:
39
- return _SignInState(
40
- json_data["active_handler_id"], json_data.get("continuation_activity")
41
- )
33
+ return _SignInState.model_validate(json_data)
@@ -341,6 +341,19 @@ class ChannelServiceAdapter(ChannelAdapter, ABC):
341
341
  await connector_client.close()
342
342
  await user_token_client.close()
343
343
 
344
+ def _resolve_if_connector_client_is_needed(self, activity: Activity) -> bool:
345
+ """Determine if a connector client is needed based on the activity's delivery mode and service URL.
346
+
347
+ :param activity: The activity to evaluate.
348
+ :type activity: :class:`microsoft_agents.activity.Activity`
349
+ """
350
+ if activity.delivery_mode in [
351
+ DeliveryModes.expect_replies,
352
+ DeliveryModes.stream,
353
+ ]:
354
+ return False
355
+ return True
356
+
344
357
  async def process_activity(
345
358
  self,
346
359
  claims_identity: ClaimsIdentity,
@@ -403,21 +416,24 @@ class ChannelServiceAdapter(ChannelAdapter, ABC):
403
416
  context.turn_state[self.USER_TOKEN_CLIENT_KEY] = user_token_client
404
417
 
405
418
  # Create the connector client to use for outbound requests.
406
- connector_client: ConnectorClient = (
407
- await self._channel_service_client_factory.create_connector_client(
408
- context,
409
- claims_identity,
410
- activity.service_url,
411
- outgoing_audience,
412
- scopes,
413
- use_anonymous_auth_callback,
419
+ connector_client: Optional[ConnectorClient] = None
420
+ if self._resolve_if_connector_client_is_needed(activity):
421
+ connector_client = (
422
+ await self._channel_service_client_factory.create_connector_client(
423
+ context,
424
+ claims_identity,
425
+ activity.service_url,
426
+ outgoing_audience,
427
+ scopes,
428
+ use_anonymous_auth_callback,
429
+ )
414
430
  )
415
- )
416
- context.turn_state[self._AGENT_CONNECTOR_CLIENT_KEY] = connector_client
431
+ context.turn_state[self._AGENT_CONNECTOR_CLIENT_KEY] = connector_client
417
432
 
418
433
  await self.run_pipeline(context, callback)
419
434
 
420
- await connector_client.close()
435
+ if connector_client:
436
+ await connector_client.close()
421
437
  await user_token_client.close()
422
438
 
423
439
  # If there are any results they will have been left on the TurnContext.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: microsoft-agents-hosting-core
3
- Version: 0.7.0.dev1
3
+ Version: 0.7.0.dev6
4
4
  Summary: Core library for Microsoft Agents
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-activity==0.7.0.dev1
18
+ Requires-Dist: microsoft-agents-activity==0.7.0.dev6
19
19
  Requires-Dist: pyjwt>=2.10.1
20
20
  Requires-Dist: isodate>=0.6.1
21
21
  Requires-Dist: azure-core>=1.30.0
@@ -4,7 +4,7 @@ microsoft_agents/hosting/core/agent.py,sha256=K8v84y8ULP7rbcMKg8LxaM3haAq7f1oHFC
4
4
  microsoft_agents/hosting/core/card_factory.py,sha256=UDmPEpOk2SpEr9ShN9Q0CiaI_GTD3qjHgkDMOWinW9I,6926
5
5
  microsoft_agents/hosting/core/channel_adapter.py,sha256=MqES9gHGS0nrKBR7u8zLQCsuIksl-hScZy_jg4LTTHo,10669
6
6
  microsoft_agents/hosting/core/channel_api_handler_protocol.py,sha256=RO59hiOYx7flQVWhX6VGvfpFPoKVkdT_la-7WhUl8UM,4506
7
- microsoft_agents/hosting/core/channel_service_adapter.py,sha256=OTF1EFycfBv4sdX2Zt_jPzk80aRHjLhSv5DyU6CEc7Q,20919
7
+ microsoft_agents/hosting/core/channel_service_adapter.py,sha256=L3XQQSnWuF-8_1MAyZTsI7RRn9TfYv0UW1Dj6nyOuAQ,21598
8
8
  microsoft_agents/hosting/core/channel_service_client_factory_base.py,sha256=9LcpxiWMXmWAdGQt6lRzvY9ybF_5mGc5Focd1Z7f9MY,1711
9
9
  microsoft_agents/hosting/core/message_factory.py,sha256=F9QJBF4yBupHXxOW984ZzZomVEG57t9IUnTHwub-lX0,7822
10
10
  microsoft_agents/hosting/core/middleware_set.py,sha256=TBsBs4KwAfKyHlQTlG4bl1y5UjkBzeMDs5w7LNB-Bi4,2585
@@ -28,7 +28,7 @@ microsoft_agents/hosting/core/app/_routes/_route_list.py,sha256=fe1-wmFaJJqYkWFc
28
28
  microsoft_agents/hosting/core/app/_routes/route_rank.py,sha256=-UwmLMCtgLT2cWnWvLfE2puV0RuQfI2m3WyEvkBkSBg,324
29
29
  microsoft_agents/hosting/core/app/oauth/__init__.py,sha256=eHx-vmW2Ew8HULSfvAmV8F9TBXXLcTPsBe3XP4JEDdY,556
30
30
  microsoft_agents/hosting/core/app/oauth/_sign_in_response.py,sha256=H5VBX69WiYXGALzCDVnF_-Y0brbafbJgfF4mS2wZSr0,851
31
- microsoft_agents/hosting/core/app/oauth/_sign_in_state.py,sha256=lC2otIFcQthAZ8kqkYxV3wLBPOqzW9MRVUbdqQPtEdM,1159
31
+ microsoft_agents/hosting/core/app/oauth/_sign_in_state.py,sha256=gtrLa_BgQq-yrTu8ItVwQ8fntfSKjlng2lCj6A8mCrc,897
32
32
  microsoft_agents/hosting/core/app/oauth/auth_handler.py,sha256=KyhEfpKtoVKcapOt4szpDdbgk_KSwXF46GGOeJrmsRI,3464
33
33
  microsoft_agents/hosting/core/app/oauth/authorization.py,sha256=_sdCZcZ7iciwTZqXTHFOK4vWWbCgSIDv3it30fzPI8w,18246
34
34
  microsoft_agents/hosting/core/app/oauth/_handlers/__init__.py,sha256=ZQuXF-IZrJv_hOgt-sdRFAUyIpRXaYqYBuyEJWJRcfU,376
@@ -102,8 +102,8 @@ microsoft_agents/hosting/core/storage/transcript_info.py,sha256=5VN32j99tshChAff
102
102
  microsoft_agents/hosting/core/storage/transcript_logger.py,sha256=_atDk3CJ05fIVMhlWGNa91IiM9bGLmOhasFko8Lxjhk,8237
103
103
  microsoft_agents/hosting/core/storage/transcript_memory_store.py,sha256=v1Ud9LSs8m5c9_Fa8i49SuAjw80dX1hDciqbRduDEOE,6444
104
104
  microsoft_agents/hosting/core/storage/transcript_store.py,sha256=ka74o0WvI5GhMZcFqSxVdamBhGzZcDZe6VNkG-sMy74,1944
105
- microsoft_agents_hosting_core-0.7.0.dev1.dist-info/licenses/LICENSE,sha256=ws_MuBL-SCEBqPBFl9_FqZkaaydIJmxHrJG2parhU4M,1141
106
- microsoft_agents_hosting_core-0.7.0.dev1.dist-info/METADATA,sha256=uTABUKgX0loiJoQtHm-MQVfr7QrmbtqyoRyl7zeLf-8,9242
107
- microsoft_agents_hosting_core-0.7.0.dev1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
108
- microsoft_agents_hosting_core-0.7.0.dev1.dist-info/top_level.txt,sha256=lWKcT4v6fTA_NgsuHdNvuMjSrkiBMXohn64ApY7Xi8A,17
109
- microsoft_agents_hosting_core-0.7.0.dev1.dist-info/RECORD,,
105
+ microsoft_agents_hosting_core-0.7.0.dev6.dist-info/licenses/LICENSE,sha256=ws_MuBL-SCEBqPBFl9_FqZkaaydIJmxHrJG2parhU4M,1141
106
+ microsoft_agents_hosting_core-0.7.0.dev6.dist-info/METADATA,sha256=1c_-PiIW7UEiIjLXwYyylhg1ow4rZgVYpLPYlqlVRqY,9242
107
+ microsoft_agents_hosting_core-0.7.0.dev6.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
108
+ microsoft_agents_hosting_core-0.7.0.dev6.dist-info/top_level.txt,sha256=lWKcT4v6fTA_NgsuHdNvuMjSrkiBMXohn64ApY7Xi8A,17
109
+ microsoft_agents_hosting_core-0.7.0.dev6.dist-info/RECORD,,