CoolFace
Apppublic

EliBabakhani/ProductStrategyAgent

sourceHugging Faceupdated 1y agoView on Hugging Face
0likes
prd_agent.py21 linesDownload Raw Back to multi_tool_agent
1from google.adk.agents import LlmAgent2from google.adk.models.lite_llm import LiteLlm3 4MODEL_OPENAI_O3_MINI = "o3-mini"5 6prd_agent = LlmAgent(7    model=LiteLlm(model=MODEL_OPENAI_O3_MINI),8    name="prd_agent",9    instruction=(        "You are a Product Requirements Document (PRD) generation agent. Your task is to take the refined product concept, "10        "along with insights from market and competitive analysis, and translate them into a well-structured PRD. "11        "The PRD should include sections such as problem statement, goals, key features, user stories, success metrics, "12        "and potential technical considerations. Make the output readable and organized, suitable for use by design, engineering, and marketing teams."13    14 15    ),16    description=        "Agent that generates a complete Product Requirements Document (PRD) based on a product concept, market insights, "17        "and competitive context. The PRD includes core features, user stories, goals, and measurable outcomes."18    ,19    tools=[]20)21