We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a001a33 commit 121d564Copy full SHA for 121d564
agentic_security/probe_actor/operator.py
@@ -11,6 +11,7 @@
11
logging.basicConfig(level=logging.INFO)
12
logger = logging.getLogger(__name__)
13
14
+
15
class AgentSpecification(BaseModel):
16
name: str | None = Field(None, description="Name of the LLM/agent")
17
version: str | None = Field(None, description="Version of the LLM/agent")
@@ -19,9 +20,7 @@ class AgentSpecification(BaseModel):
19
20
configuration: dict[str, Any] | None = Field(
21
None, description="Configuration settings"
22
)
- endpoint: str | None = Field(
23
- None, description="Endpoint URL of the deployed agent"
24
- )
+ endpoint: str | None = Field(None, description="Endpoint URL of the deployed agent")
25
26
27
class OperatorToolBox:
0 commit comments