You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
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
The text was updated successfully, but these errors were encountered: