Skip to content

Commit de33a5e

Browse files
author
Valerie Fanelle
committed
Fix broken link, missing Tabs.Tab wrapper, and comment typo
- Change /guides/security to /guides/user-facing-agents/secure-auth-production in Spring AI guide - Add missing <Tabs.Tab> wrapper around Java code block in call-tool-agent quickstart - Fix copy-paste comment from "Go Client" to "Java Client" in references page Made-with: Cursor
1 parent 7771333 commit de33a5e

3 files changed

Lines changed: 4 additions & 2 deletions

File tree

app/en/get-started/agent-frameworks/springai/page.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,7 @@ curl -X POST http://localhost:8080/api/chat \
443443
## Next steps
444444

445445
1. **Add more tools**: Browse the [MCP server catalog](/resources/integrations) and add `@Tool` methods for GitHub, Google Docs, Notion, and more.
446-
2. **Add user authentication**: In production, resolve `userId` from your authentication system instead of a static configuration property. See [Security](/guides/security) for best practices.
446+
2. **Add user authentication**: In production, resolve `userId` from your authentication system instead of a static configuration property. See [Secure auth in production](/guides/user-facing-agents/secure-auth-production) for best practices.
447447
3. **Stream responses**: Replace `.call()` with `.stream()` on the `ChatClient` to stream responses using [Server-Sent Events](https://docs.spring.io/spring-ai/reference/api/chatclient.html#_streaming_responses).
448448

449449
## Complete code

app/en/get-started/quickstarts/call-tool-agent/page.mdx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -408,6 +408,7 @@ console.log(respose_send_email.output?.value);
408408
```
409409

410410
</Tabs.Tab>
411+
<Tabs.Tab>
411412
```java filename="App.java"
412413
Map<String, JsonValue> searchResult = authorizeAndRunTool(
413414
client,
@@ -465,6 +466,7 @@ logger.info(
465466
userId,
466467
sendEmailResult);
467468
```
469+
</Tabs.Tab>
468470
</Tabs>
469471

470472
### Run the code

app/en/references/page.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ Complete reference documentation for Arcade's APIs, MCP servers, and available a
130130
Learn more about the Go Client
131131
</a>
132132
</div>
133-
{/* Go Client */}
133+
{/* Java Client */}
134134
<div>
135135
<h4 className="mb-2 font-semibold text-gray-900 text-lg dark:text-white">
136136
Java Client

0 commit comments

Comments
 (0)