Skip to content

Commit 8d439e2

Browse files
committed
πŸ‘Œ IMPROVE: lingo
1 parent 8ff4838 commit 8d439e2

File tree

3 files changed

+35
-10
lines changed

3 files changed

+35
-10
lines changed

β€Žapps/baseai.dev/content/docs/docs/index.mdx

Lines changed: 18 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,25 @@ modified: 2024-09-24
99
---
1010

1111
<a href="https://baseai.dev/docs" className="hidden lg:flex h-full w-full items-center justify-center mb-4">
12-
<BaseAILogo className="w-full" />
12+
<img className="w-full" src="https://raw.githubusercontent.com/LangbaseInc/docs-images/refs/heads/main/baseai/baseai-cover.png" alt="BaseAI.dev" />
1313
</a>
1414

1515
<h1 className="flex flex lg:hidden">BaseAI Docs</h1>
1616

17-
BaseAI helps developers locally build AI agents, memory (RAG), and then deploy them to a highly scalable API. It is the first AI framework for Web. It's composable by design and offers a simple API to build and deploy any AI agents (AI features).
17+
BaseAI is the first web AI framework built for web developers.
1818

19-
1. Start by building local AI agents [Pipes](/docs/pipe/quickstart)
20-
2. Then create a local managed semantic [memory (RAG)](/docs/memory/quickstart) so your AI can talk to your data
19+
- **OPEN**: BaseAI is **free and open-source**,
20+
- **LOCAL**: offers a world-class **local developer experience**,
21+
- **CLEAN**: unlike existing frameworks bloatware, BaseAI **removes the boilerplate code**,
22+
- **COMPOSABLE**: build composable AI **pipes** (agents), **tools** (self-healing), and **memory** (RAG),
23+
- **SERVERLESS**: prod-ready as it [**deploys to serverless AI cloud**][lb] with `npx baseai deploy` command
24+
25+
26+
Developers use BaseAI to develop high-quality AI agents with memory (RAG) using TypeScript and then deploy serverless as a highly scalable API using [⌘ Langbase][lb] (creators of BaseAI).
27+
28+
29+
1. Start by building local AI agents we call [Pipes](/docs/pipe/quickstart)
30+
2. Then create a local semantic [memory (RAG)](/docs/memory/quickstart) so your AI agents can chat with your data
2131

2232

2333
<CTAButtons
@@ -33,7 +43,7 @@ BaseAI helps developers locally build AI agents, memory (RAG), and then deploy t
3343
BaseAI is web-first with TypeScript support and a familiar RESTful API. Integrate AI into your web stack as easily as adding a React component or API routeβ€”whether you're using Next.js, Vue, or vanilla Node.js. With most AI use cases on the web, BaseAI helps you ship AI features faster.
3444
</SpoilerAdvanced>
3545

36-
<SpoilerAdvanced title="Local-First Development" sub="Zero-cost local development, version-control, and complete observability logs">
46+
<SpoilerAdvanced title="Local developer experience" sub="Zero-cost local development, version-control, and complete observability logs">
3747
Develop AI features on your machine with zero cloud costs. Git integrates out of the box, so you can branch and merge AI models like code. Complete observability logs let you debug AI like JavaScriptβ€”trace decisions, data points, and outputs. It's like Chrome DevTools for your AI.
3848
</SpoilerAdvanced>
3949

@@ -68,3 +78,6 @@ BaseAI introduces composable AI with agentic pipes, tools, and memory. Think of
6878
<Guides />
6979

7080
---
81+
82+
[lb]: https://langbase.com
83+
[bai]: https://baseai.dev

β€Žapps/baseai.dev/src/components/baseai-logo.tsx

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
1-
import { cn } from "@/lib/utils";
1+
import { cn } from '@/lib/utils';
22

3-
export default function BaseAILogo({width = '30%', className}: {width?: string, className?: string}) {
3+
export default function BaseAILogo({
4+
width = '30%',
5+
className
6+
}: {
7+
width?: string;
8+
className?: string;
9+
}) {
410
return (
511
<>
612
<img
@@ -12,7 +18,10 @@ export default function BaseAILogo({width = '30%', className}: {width?: string,
1218
height: 'auto',
1319
color: 'transparent'
1420
}}
15-
className={cn("block max-w-full object-cover dark:hidden", className)}
21+
className={cn(
22+
'block max-w-full object-cover dark:hidden',
23+
className
24+
)}
1625
/>
1726
<img
1827
alt="BaseAI"
@@ -23,7 +32,10 @@ export default function BaseAILogo({width = '30%', className}: {width?: string,
2332
height: 'auto',
2433
color: 'transparent'
2534
}}
26-
className={cn("hidden max-w-full object-cover dark:block", className)}
35+
className={cn(
36+
'hidden max-w-full object-cover dark:block',
37+
className
38+
)}
2739
/>
2840
</>
2941
);

β€Žapps/baseai.dev/src/components/table-products.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ interface TableRowProps {
2929
const TableRow: React.FC<TableRowProps> = ({ product, description, href }) => (
3030
<tr>
3131
<td className="w-[180px] p-2 align-top">
32-
<Link href={href}>⌘ {product.main}</Link>
32+
<Link href={href}>{product.main}</Link>
3333
{product.sub && (
3434
<div className="xtext-muted-foreground/50 mt-1 text-sm text-[#7f7db0]/50">
3535
({product.sub})

0 commit comments

Comments
Β (0)