and require `Node.js >= 18` or an equivalent environment (Bun, Deno, CF
workers, etc).
</Info>
<Steps>
<Step title='Install core deps'>
<CodeGroup>
```bash npm
npm install @agentic/core zod
```
```bash yarn
yarn add @agentic/core zod
```
```bash pnpm
pnpm add @agentic/core zod
```
</CodeGroup>
</Step>
<Step title='Install AI tools'>
You can either install all of the AI tools via the convenience package `@agentic/stdlib`, or you can install them individually via their respective packages (`@agentic/weather`, `@agentic/twitter`, etc.).
<AccordionGroup>
<Accordion title="Install all AI tools">
<CodeGroup>
```bash npm
npm install @agentic/stdlib
```
```bash yarn
yarn add @agentic/stdlib
```
```bash pnpm
pnpm add @agentic/stdlib
```
</CodeGroup>
</Accordion>
<Accordion title="Install individual AI tools">
Docs for individual tools are available [here](/tools).
There is no functional difference between using `@agentic/stdlib` versus using the individual tool packages directly. The only difference is if you want to optimize your install size (when running on serverless functions, for instance).
The default examples all use `@agentic/stdlib` because it provides a simpler DX.
</Note>
</Step>
<Step title='Install an AI SDK Adapter'>
To use Agentic with one of the supported AI SDKs, you'll also need to install its corresponding adapter package.
There's no need for a separate adapter with the OpenAI SDK since all agentic tools are compatible with OpenAI by default. You can use `AIFunctionSet.specs` for function calling or `AIFunctionSet.toolSpecs` for parallel tool calling.
You can use Agentic without any of these AI SDKs. `@agentic/core`, `@agentic/stdlib`, and all individual tool packages are completely agnostic to specific LLMs and AI SDKs.