|
40 | 40 | from ...agents.invocation_context import InvocationContext |
41 | 41 | from ...events.event import Event |
42 | 42 | from ...flows.llm_flows.functions import REQUEST_EUC_FUNCTION_CALL_NAME |
43 | | -from ...utils.feature_decorator import working_in_progress |
| 43 | +from ...utils.feature_decorator import experimental |
44 | 44 | from .part_converter import A2A_DATA_PART_METADATA_IS_LONG_RUNNING_KEY |
45 | 45 | from .part_converter import A2A_DATA_PART_METADATA_TYPE_FUNCTION_CALL |
46 | 46 | from .part_converter import A2A_DATA_PART_METADATA_TYPE_KEY |
@@ -242,7 +242,6 @@ def _process_long_running_tool(a2a_part: A2APart, event: Event) -> None: |
242 | 242 | ] = True |
243 | 243 |
|
244 | 244 |
|
245 | | -@working_in_progress |
246 | 245 | def convert_a2a_task_to_event( |
247 | 246 | a2a_task: Task, |
248 | 247 | author: Optional[str] = None, |
@@ -298,7 +297,7 @@ def convert_a2a_task_to_event( |
298 | 297 | raise |
299 | 298 |
|
300 | 299 |
|
301 | | -@working_in_progress |
| 300 | +@experimental |
302 | 301 | def convert_a2a_message_to_event( |
303 | 302 | a2a_message: Message, |
304 | 303 | author: Optional[str] = None, |
@@ -394,7 +393,7 @@ def convert_a2a_message_to_event( |
394 | 393 | raise RuntimeError(f"Failed to convert message: {e}") from e |
395 | 394 |
|
396 | 395 |
|
397 | | -@working_in_progress |
| 396 | +@experimental |
398 | 397 | def convert_event_to_a2a_message( |
399 | 398 | event: Event, invocation_context: InvocationContext, role: Role = Role.agent |
400 | 399 | ) -> Optional[Message]: |
@@ -545,7 +544,7 @@ def _create_status_update_event( |
545 | 544 | ) |
546 | 545 |
|
547 | 546 |
|
548 | | -@working_in_progress |
| 547 | +@experimental |
549 | 548 | def convert_event_to_a2a_events( |
550 | 549 | event: Event, |
551 | 550 | invocation_context: InvocationContext, |
|
0 commit comments