Prompt Content
Set up a new Google ADK project in Vertex AI. Define an 'Intelligence Analyst' agent and a 'Tool Scout' agent. The 'Intelligence Analyst' will interpret policy and synthesize reports, while the 'Tool Scout' will focus on researching specific technologies. Use Qwen 3 as the primary model for both agents. Provide Python code for initial ADK agent definition. ```python from google.generativeai.agents import Agent, # Assuming Vertex AI client setup is handled externally def create_intelligence_analyst_agent(): return Agent.from_function( name="IntelligenceAnalyst", description="Interprets cybersecurity policies and synthesizes intelligence reports.", model="qwen3", # Or appropriate model ID for Qwen 3 in Vertex AI # ... add tools later ) def create_tool_scout_agent(): return Agent.from_function( name="ToolScout", description="Researches and identifies specific cybersecurity tools and technologies.", model="qwen3", # ... add tools later ) # You would then orchestrate these agents within a larger ADK flow. ```
Try this prompt
Open the workspace to execute this prompt with free credits, or use your own API keys for unlimited usage.
Related Prompts
Explore similar prompts from our community
Usage Tips
Copy the prompt and paste it into your preferred AI tool (Claude, ChatGPT, Gemini)
Customize placeholder values with your specific requirements and context
For best results, provide clear examples and test different variations