Skip to content

Commit 8b4cf4c

Browse files
ssbushitylerslaton
authored andcommitted
Fix server path in server.mdx
1 parent 429b8a2 commit 8b4cf4c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/quickstart/server.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ Open `apps/dojo/package.json` and add the package `@ag-ui/openai-server`:
174174
Now let's see your work in action. First, start your Python server:
175175

176176
```bash
177-
cd integrations/openai/server/python
177+
cd integrations/openai-server/server/python
178178
poetry install && poetry run dev
179179
```
180180

@@ -197,7 +197,7 @@ world!** for now.
197197
Here's what's happening with that stub server:
198198

199199
```python
200-
# integrations/openai/server/python/example_server/__init__.py
200+
# integrations/openai-server/server/python/example_server/__init__.py
201201
@app.post("/")
202202
async def agentic_chat_endpoint(input_data: RunAgentInput, request: Request):
203203
"""Agentic chat endpoint"""
@@ -268,7 +268,7 @@ OpenAI.
268268
First, we need the OpenAI SDK:
269269

270270
```bash
271-
cd integrations/openai/server/python
271+
cd integrations/openai-server/server/python
272272
poetry add openai
273273
```
274274

0 commit comments

Comments
 (0)