Características

Agentes

Los agentes permiten que NovaAI realice tareas de múltiples pasos al combinar modelos de lenguaje con herramientas externas, APIs y flujos de trabajo. Pueden razonar sobre problemas complejos, tomar decisiones y ejecutar acciones para lograr un objetivo.

Overview

Unlike standard chat models that only generate text, Agents can plan, use tools, retrieve information, and interact with external systems before returning a final response. This makes them ideal for building autonomous assistants and workflow automation.

Note: Agents can use multiple tools during a single request, depending on the task and available permissions.

Note: Agents can use multiple tools during a single request, depending on the task and available permissions.

How Agents Work

Rendering diagram…

Create an Agent

const agent = await client.agents.create({
model: "nova-agent-1",
instructions: "You are a helpful travel assistant.",
tools: ["web_search", "calculator"]
});
 
console.log(agent.id);e

Agent Properties

model

string

requerido

Agent model identifier.

instructions

string

requerido

Defines the agent's behavior.

tools

array

opcional

Tools available to the agent.

memory

boolean

opcional

Enables conversation memory.

Common Use Cases

  • Customer support assistants

  • Research and web search

  • Workflow automation

  • Travel and booking assistants

  • Data analysis

  • Internal knowledge assistants

Tip: Give your agent clear instructions and only enable the tools it actually needs. Simpler agents are generally faster, easier to manage, and more predictable.

Tip: Give your agent clear instructions and only enable the tools it actually needs. Simpler agents are generally faster, easier to manage, and more predictable.

Next Step

Continue to Streaming to learn how NovaAI delivers responses in real time as they're generated.

Documentación relacionada

¿Te resultó útil?

¿Te resultó útil?

Create a free website with Framer, the website builder loved by startups, designers and agencies.