lyric 마케팅 인텔리전스 optional 패티
parent
d40e2bd430
commit
b8ae598460
|
|
@ -1,12 +1,12 @@
|
||||||
from pydantic import BaseModel, Field
|
from pydantic import BaseModel, Field
|
||||||
from typing import List
|
from typing import List, Optional
|
||||||
|
|
||||||
# Input 정의
|
# Input 정의
|
||||||
class LyricPromptInput(BaseModel):
|
class LyricPromptInput(BaseModel):
|
||||||
customer_name : str = Field(..., description = "마케팅 대상 사업체 이름")
|
customer_name : str = Field(..., description = "마케팅 대상 사업체 이름")
|
||||||
region : str = Field(..., description = "마케팅 대상 지역")
|
region : str = Field(..., description = "마케팅 대상 지역")
|
||||||
detail_region_info : str = Field(..., description = "마케팅 대상 지역 상세")
|
detail_region_info : str = Field(..., description = "마케팅 대상 지역 상세")
|
||||||
marketing_intelligence_summary : str = Field(..., description = "마케팅 분석 정보 보고서")
|
marketing_intelligence_summary : Optional[str] = Field(None, description = "마케팅 분석 정보 보고서")
|
||||||
language : str= Field(..., description = "가사 언어")
|
language : str= Field(..., description = "가사 언어")
|
||||||
promotional_expression_example : str = Field(..., description = "판촉 가사 표현 예시")
|
promotional_expression_example : str = Field(..., description = "판촉 가사 표현 예시")
|
||||||
timing_rules : str = Field(..., description = "시간 제어문")
|
timing_rules : str = Field(..., description = "시간 제어문")
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue