update_agent_model_rule
Modify an existing agent model rule to permit or restrict LLM model access. Define allowed and denied model patterns for specific agents.
Instructions
Create a new agent model access rule. Controls which LLM models an agent can use through the VibOps LLM proxy.
Examples:
Allow pricing agents only Llama models: pattern="pricing-", allowed=["llama-"]
Block all agents from GPT-4o: pattern="", denied=["gpt-4o"]
Args: agent_id_pattern: Glob pattern matching agent IDs (e.g. "pricing-", ""). allowed_models: List of model glob patterns the agent MAY use. Empty = all allowed. denied_models: List of model glob patterns the agent MUST NOT use. Deny overrides allow.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| denied_models | No | ||
| allowed_models | No | ||
| agent_id_pattern | Yes |