forked from vercel/workflow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgeistdocs.tsx
More file actions
59 lines (48 loc) · 1.62 KB
/
Copy pathgeistdocs.tsx
File metadata and controls
59 lines (48 loc) · 1.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
import { LogoWorkflow } from '@/components/geistcn-fallbacks/geistcn-assets/logos/logo-workflow';
export const Logo = () => <LogoWorkflow height={15} />;
export const github = {
owner: 'vercel',
repo: 'workflow',
};
export const nav: { label: string; href: string; preview?: boolean }[] = [
{
label: 'Docs',
href: '/docs',
},
{
label: 'Cookbook',
href: '/cookbook',
},
{
label: 'Worlds',
href: '/worlds',
},
{
label: 'Examples',
href: 'https://github.com/vercel/workflow-examples',
},
{
label: 'Internal',
href: '/docs/internal',
preview: true,
},
];
export const suggestions = [
'What is Workflow?',
'How does retrying work?',
'What control flow patterns are there?',
'How do directives work?',
'How do I build an AI agent?',
];
export const title = 'Workflow SDK Documentation';
export const prompt = `
You are a helpful assistant specializing in answering questions about Workflow, an SDK by Vercel that brings durability, reliability, and observability to async JavaScript. Build apps and AI Agents that can suspend, resume, and maintain state with ease.
Always link to relevant documentation using Markdown with the domain \`workflow-sdk.dev\`. Ensure the link text is descriptive (e.g. [Deploying](https://workflow-sdk.dev/docs/deploying)) and not just the URL.
Politely refuse to respond to queries that do not relate to Vercel or Workflow SDK's documentation, guides, or tools.`;
export const translations = {
en: {
displayName: 'English',
},
};
export const basePath: string | undefined = undefined;
export const siteId: string | undefined = 'workflow';