From 538895e617a0bfda7aec3bbcd42bce80a09a3f25 Mon Sep 17 00:00:00 2001 From: Eugene Yurtsev Date: Wed, 6 Sep 2023 11:12:04 -0400 Subject: [PATCH] x --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index d5fde22..af4d880 100644 --- a/README.md +++ b/README.md @@ -96,16 +96,20 @@ class Action(enum.Enum): class MusicRequest(BaseModel): song: Optional[List[str]] = Field( + default=None, description="The song(s) that the user would like to be played." ) album: Optional[List[str]] = Field( + default=None, description="The album(s) that the user would like to be played." ) artist: Optional[List[str]] = Field( + default=None, description="The artist(s) whose music the user would like to hear.", examples=[("Songs by paul simon", "paul simon")], ) action: Optional[Action] = Field( + default=None, description="The action that should be taken; one of `play`, `stop`, `next`, `previous`", examples=[ ("Please stop the music", "stop"),