Skip to content

Commit aa0ae2d

Browse files
vfanellebdemersValerie Fanellegithub-actions[bot]
authored
Add docs for arcade-java and Spring AI guide (#903)
* Add docs for arcade-java and Spring AI guide * 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 * 🤖 Regenerate LLMs.txt --------- Co-authored-by: Brian Demers <Brian.Demers@gmail.com> Co-authored-by: Valerie Fanelle <valeriefanelle@mac.local.meter> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 53fa3fb commit aa0ae2d

File tree

9 files changed

+1206
-22
lines changed

9 files changed

+1206
-22
lines changed

app/_components/agent-framework-tabs.tsx

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,10 @@ import { PlatformCard } from "@/app/_components/platform-card";
33

44
export function AgentFrameworkTabs() {
55
return (
6-
<Tabs items={["Python", "JavaScript"]} storageKey="preferredLanguage">
6+
<Tabs
7+
items={["Python", "JavaScript", "Java"]}
8+
storageKey="preferredLanguage"
9+
>
710
<Tabs.Tab>
811
<div className="mt-6 grid gap-3 sm:grid-cols-2 sm:gap-4 md:gap-5 lg:grid-cols-3">
912
<PlatformCard
@@ -83,6 +86,16 @@ export function AgentFrameworkTabs() {
8386
/>
8487
</div>
8588
</Tabs.Tab>
89+
<Tabs.Tab>
90+
<div className="mt-6 grid gap-3 sm:grid-cols-2 sm:gap-4 md:gap-5 lg:grid-cols-3">
91+
<PlatformCard
92+
icon="/images/icons/spring-ai.svg"
93+
link="/en/get-started/agent-frameworks/springai"
94+
name="Spring AI"
95+
type="Agent Framework"
96+
/>
97+
</div>
98+
</Tabs.Tab>
8699
</Tabs>
87100
);
88101
}

app/en/get-started/agent-frameworks/_meta.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,9 @@ export const meta: MetaRecord = {
3131
vercelai: {
3232
title: "Vercel AI SDK",
3333
},
34+
springai: {
35+
title: "Spring AI SDK",
36+
},
3437
};
3538

3639
export default meta;

0 commit comments

Comments
 (0)