Skip to content

Instantly share code, notes, and snippets.

@samirsaci
Created November 9, 2025 12:53
Show Gist options
  • Select an option

  • Save samirsaci/a44f42664aef4438c45e8a2976502c05 to your computer and use it in GitHub Desktop.

Select an option

Save samirsaci/a44f42664aef4438c45e8a2976502c05 to your computer and use it in GitHub Desktop.
AI Agent Budget Planning - Models
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