Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.

from pydantic import Field

from .card_action import CardAction
from .agents_model import AgentsModel
from ._type_aliases import NonEmptyString
Expand All @@ -17,5 +19,5 @@ class SuggestedActions(AgentsModel):
:type actions: list[~microsoft_agents.activity.CardAction]
"""

to: list[NonEmptyString] = []
to: list[NonEmptyString] = Field(default_factory=list)
actions: list[CardAction]
Loading