| Name | Type | Description |
|---|---|---|
name* | str | The name of the agent. |
model* | str | The model deployment name. |
description | Optional[str] | Default: NoneOptional description. |
tools | Optional[Sequence[Union[AgentServiceBaseTool, BaseTool, Callable]]] | Default: None |
instructions | Optional[Prompt] | Default: None |
temperature | Optional[float] | Default: None |
top_p | Optional[float] | Default: None |
trace | bool | Default: False |
Create a prompt-based agent node using V2.
This method creates a new agent version in Azure AI Foundry and returns a
:class:~langchain_azure_ai.agents._v2.base.ResponsesAgentNode
that references it. The node itself does not perform any creation; it
only holds a reference to the existing agent and handles request/response
building.
Tools for the agent.
System prompt instructions.
Sampling temperature.
Top-p sampling parameter.
Whether to enable tracing.