You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/quickstart.mdx
+9-9
Original file line number
Diff line number
Diff line change
@@ -10,25 +10,25 @@ title: Quick Start
10
10
</Info>
11
11
12
12
<Steps>
13
-
<Steptitle='Install core deps'>
13
+
<Steptitle='Install core deps (zod)'>
14
14
<CodeGroup>
15
15
```bash npm
16
-
npm install @agentic/core zod
16
+
npm install zod
17
17
```
18
18
19
19
```bash yarn
20
-
yarn add @agentic/core zod
20
+
yarn add zod
21
21
```
22
22
23
23
```bash pnpm
24
-
pnpm add @agentic/core zod
24
+
pnpm add zod
25
25
```
26
26
</CodeGroup>
27
27
28
28
</Step>
29
29
30
30
<Steptitle='Install AI tools'>
31
-
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.).
31
+
You can either install all of the AI tools via `@agentic/stdlib`, or you can install them individually via their respective packages (`@agentic/weather`, `@agentic/twitter`, etc.).
32
32
33
33
<AccordionGroup>
34
34
<Accordiontitle="Install all AI tools">
@@ -72,7 +72,7 @@ title: Quick Start
72
72
<Note>
73
73
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).
74
74
75
-
The default examples all use `@agentic/stdlib`because it provides a simpler DX.
75
+
The default examples all use `@agentic/stdlib`for simplicity.
0 commit comments