mirror of
https://github.com/x1xhlol/system-prompts-and-models-of-ai-tools.git
synced 2026-06-17 23:09:35 +00:00
Add revenue discovery APIs/services, launch verification gates, CI quality checks, and frontend E2E/docs updates to prepare the branch for production go-live. Made-with: Cursor
16 lines
438 B
Python
16 lines
438 B
Python
"""Request bodies for Dealix Master API (shared with background runners)."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from typing import Any
|
|
|
|
from pydantic import BaseModel, Field
|
|
|
|
|
|
class EnrichExplorationBody(BaseModel):
|
|
sector: str = Field(default="تقنية المعلومات")
|
|
city: str = Field(default="الرياض")
|
|
lead: dict[str, Any] = Field(default_factory=dict)
|
|
icp_notes_ar: str = ""
|
|
icp_notes_en: str = ""
|