Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/getting-started/complete-workflow.md
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ async def agent_card():

if __name__ == "__main__":
import uvicorn
uvicorn.run(app, host="0.0.0.0", port=3000)
uvicorn.run(app, host="127.0.0.1", port=3000)
```

```bash
Expand Down
4 changes: 2 additions & 2 deletions docs/getting-started/secure/2-sdk.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ async def handle_message(request: Request):

if __name__ == "__main__":
import uvicorn
uvicorn.run(app, host="0.0.0.0", port=8000)
uvicorn.run(app, host="127.0.0.1", port=8000)
```

Test it:
Expand Down Expand Up @@ -176,7 +176,7 @@ async def handle_message(request: Request):

if __name__ == "__main__":
import uvicorn
uvicorn.run(app, host="0.0.0.0", port=8000)
uvicorn.run(app, host="127.0.0.1", port=8000)
```

---
Expand Down
2 changes: 1 addition & 1 deletion docs/getting-started/secure/4-test.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ You should see:
INFO: Started server process
INFO: Waiting for application startup.
INFO: Application startup complete.
INFO: Uvicorn running on http://0.0.0.0:8000
INFO: Uvicorn running on http://127.0.0.1:8000
```

---
Expand Down
4 changes: 2 additions & 2 deletions docs/how-to/integrations/flask.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def handle_task():
return response

if __name__ == "__main__":
app.run(host="0.0.0.0", port=8000)
app.run(host="127.0.0.1", port=8000)
```

---
Expand Down Expand Up @@ -160,7 +160,7 @@ def agent_card():
return jsonify(json.load(f))

if __name__ == "__main__":
app.run(host="0.0.0.0", port=8000)
app.run(host="127.0.0.1", port=8000)
```

### Step 4: Run the Application
Expand Down
2 changes: 1 addition & 1 deletion docs/samples.md
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ async def handle_a2a(request: Request):

if __name__ == "__main__":
import uvicorn
uvicorn.run(app, host="0.0.0.0", port=8000)
uvicorn.run(app, host="127.0.0.1", port=8000)
```

[:material-download: Download secure_agent.py](assets/samples/secure_agent.py){ .md-button }
Expand Down
2 changes: 1 addition & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ hooks:
- hooks/version_vars.py

extra:
capiscio_version: "2.6.0"
capiscio_version: "2.7.0"
protocol_version: "0.3.0"
homepage: https://docs.capisc.io
# Analytics: Cloudflare Pages auto-injects Web Analytics at the edge
Expand Down
Loading