You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/components/marketing/faq.tsx
+56-4Lines changed: 56 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -7,8 +7,16 @@ import {
7
7
AccordionTrigger,
8
8
}from'@/components/ui/accordion';
9
9
importposthogfrom'posthog-js';
10
+
import{ReactNode}from'react';
10
11
11
-
constfaqData=[
12
+
typeFaqItem={
13
+
value: string;
14
+
trigger: string;
15
+
content: ReactNode;
16
+
jsonLdContent?: string;
17
+
};
18
+
19
+
constfaqData: FaqItem[]=[
12
20
{
13
21
value: 'prompt-cms',
14
22
trigger: 'What is a Prompt CMS?',
@@ -19,7 +27,38 @@ const faqData = [
19
27
value: 'improve-ai-development',
20
28
trigger: 'How does Agentsmith improve my AI agent development process?',
21
29
content:
22
-
'Agentsmith streamlines AI agent development with intuitive prompt authoring for all skill levels, robust testing capabilities, seamless Git integration for version control, and typesafe SDKs (TypeScript & Python). This means you can build, refine, and deploy more reliable AI agents, faster.',
30
+
'Agentsmith streamlines AI agent development by providing a centralized platform for managing prompts, testing, and versioning. It allows you to refine your prompts and then safely hand them off to your engineering team to integrate into the codebase.',
31
+
},
32
+
{
33
+
value: 'byok-llm-provider',
34
+
trigger: 'Can I bring my own LLM provider keys?',
35
+
content: (
36
+
<>
37
+
Yes you can! OpenRouter supports BYOK, read more here:{' '}
'Yes you can! OpenRouter supports BYOK, read more here: https://openrouter.ai/docs/use-cases/byok',
50
+
},
51
+
{
52
+
value: 'execute-prompts',
53
+
trigger: 'Do I have to use Agentsmith to execute my prompts?',
54
+
content:
55
+
'Nope! You can use Agentsmith to just organize and compile your prompts. Once the prompts are compiled you have just a string or a messages array to pass along to whatever setup you have.',
56
+
},
57
+
{
58
+
value: 'use-openrouter',
59
+
trigger: 'Do I have to use OpenRouter?',
60
+
content:
61
+
'OpenRouter is required to use the Agentsmith Studio as it executes prompts for testing and evaluating. You do not have to use OpenRouter in your codebase, you can use Agentsmith to only compile your prompts and then you can decide what to do.',
. All users, including those on the Community plan, can access community support through our
106
+
GitHub repository and participate in discussions.
107
+
</>
108
+
),
109
+
jsonLdContent:
58
110
'Send an email to support@agentsmith.dev. All users, including those on the Community plan, can access community support through our GitHub repository and participate in discussions.',
0 commit comments