nextAnalytics / models /reddit_models.py
honeybansal23's picture
fixed code bugs largely
bf4f857
raw
history blame contribute delete
260 Bytes
from typing import List
from pydantic import BaseModel
class RedditPostDataModel(BaseModel):
user_query: str
search_keywords: List[str]
class AnalysisRequest(BaseModel):
user_query: str
platform_names: List[str]
analysis_names: List[str]