omi icon indicating copy to clipboard operation
omi copied to clipboard

Move to relevant file

Open aaravgarg opened this issue 8 months ago • 0 comments

def generate_description(app_name: str, description: str) -> str: prompt = f""" You are an AI assistant specializing in crafting detailed and engaging descriptions for apps. You will be provided with the app's name and a brief description which might not be that good. Your task is to expand on the given information, creating a captivating and detailed app description that highlights the app's features, functionality, and benefits. The description should be concise, professional, and not more than 40 words, ensuring clarity and appeal. Respond with only the description, tailored to the app's concept and purpose. App Name: {app_name} Description: {description} """ prompt = prompt.replace(' ', '').strip() return llm_mini.invoke(prompt).content

move above function to relevant file from persona.py

aaravgarg avatar May 21 '25 03:05 aaravgarg