An AI agent.
| KEY | TYPE | Description |
|---|---|---|
| name | str | The user-friendly name for the agent. |
| agentId | str | The unique identifier of the agent. |
| createdAt | str | Date and time at which the agent was created. |
| projectId | str | The project this agent belongs to. |
| notebookId | str | The notebook associated with the agent. |
| predictFunctionName | str | Name of the function found in the source code that will be executed run predictions through agent. It is not executed when this function is run. |
| sourceCode | str | Python code used to make the agent. |
| agentConfig | dict | The config options used to create this agent. |
| memory | Int | Memory in GB specified for the deployment resources for the agent. |
| trainingRequired | bool | Whether training is required to deploy the latest agent code. |
| agentExecutionConfig | dict | The config for arguments used to execute the agent. |
| latestAgentVersion | AgentVersion | The latest agent version. |
| codeSource | CodeSource | If a python model, information on the source code |
| draftWorkflowGraph | WorkflowGraph | The saved draft state of the workflow graph for the agent. |
| workflowGraph | WorkflowGraph | The workflow graph for the agent. |