Skip to content

Commit 996f6dd

Browse files
committed
chore(docs): clean up whitespace and comment style in synced shell-docs
1 parent b8d9219 commit 996f6dd

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

showcase/shell-docs/src/content/docs/integrations/built-in-agent/server-tools.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ const getWeather = defineTool({
3434
const builtInAgent = new BuiltInAgent({
3535
model: "openai:gpt-5.4-mini",
3636
tools: [getWeather],
37-
maxSteps: 2 //Important for tool calls
37+
maxSteps: 2, // Important for tool calls
3838
});
3939
```
4040

@@ -76,7 +76,7 @@ const createTicket = defineTool({
7676
const builtInAgent = new BuiltInAgent({
7777
model: "openai:gpt-5.4-mini",
7878
tools: [searchDocs, createTicket], // [!code highlight]
79-
maxSteps: 2
79+
maxSteps: 2,
8080
});
8181
```
8282

showcase/shell-docs/src/content/docs/integrations/langgraph/deep-agents.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ Before you begin, you'll need the following:
9090

9191
```python title="main.py"
9292
import os
93-
from fastapi import FastAPI
93+
from fastapi import FastAPI
9494
import uvicorn
9595

9696
# [!code highlight:2]
@@ -366,4 +366,4 @@ Before you begin, you'll need the following:
366366
</Tab>
367367
</Tabs>
368368
</Step>
369-
</Steps>
369+
</Steps>

0 commit comments

Comments
 (0)