Created
November 9, 2025 12:53
-
-
Save samirsaci/a44f42664aef4438c45e8a2976502c05 to your computer and use it in GitHub Desktop.
AI Agent Budget Planning - Models
This file contains hidden or 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
| from pydantic import BaseModel | |
| from typing import Optional | |
| class LaunchParamsBudget(BaseModel): | |
| budget_year1: int = 1250000 | |
| budget_year2: int = 1500000 | |
| budget_year3: int = 1750000 | |
| set_min_budget: bool = False | |
| min_budget_objective: Optional[str] = 'Sustainability' | |
| min_budget_perc: float = 20 | |
| class EmailRequest(BaseModel): | |
| email_text: str |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment