{{subtitle}}
async def process_content(
text: str,
platform: Platform = Platform.INSTAGRAM
) -> ContentResult:
# 자연어로 콘텐츠를 분석하고 플랫폼에 맞게 변환
result = await analyze(text)
optimized = optimize_for(result, platform)
return ContentResult(
content=optimized, score=0.95
)