Create responses.py
Browse files- configs/responses.py +4 -0
configs/responses.py
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from pydantic import BaseModel
|
| 2 |
+
|
| 3 |
+
class SummaryResponses(BaseModel):
|
| 4 |
+
summary: str
|