-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
abstract audiocast inteface definitions
- Loading branch information
1 parent
96d454d
commit 46fbe15
Showing
3 changed files
with
31 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
from typing import TypedDict | ||
|
||
from pydantic import BaseModel | ||
|
||
from utils_pkg.chat_utils import ContentCategory | ||
|
||
|
||
class GenerateAudioCastRequest(BaseModel): | ||
sessionId: str | ||
summary: str | ||
category: ContentCategory | ||
|
||
|
||
class GenerateAudioCastResponse(BaseModel): | ||
url: str | ||
script: str | ||
source_content: str | ||
created_at: str | None | ||
|
||
|
||
class GenerateAudiocastDict(TypedDict): | ||
url: str | ||
script: str | ||
source_content: str | ||
created_at: str | None |