vinay-pepakayala's picture
Upload folder using huggingface_hub
2c1a290 verified
raw
history blame contribute delete
213 Bytes
from google.adk.agents import LlmAgent
from . import prompt
MODEL = "gemini-2.0-flash"
SecurityAgent = LlmAgent(
model=MODEL,
name="SecurityAgent",
instruction=prompt.SECURITY_REVIEW_AGENT_PROMPT,
)