Skip to content

Commit

Permalink
Merge branch 'AGE-1343/-implement-home-view-onboarding' of github.com…
Browse files Browse the repository at this point in the history
…:agenta-ai/agenta into AGE-1343/-implement-home-view-onboarding
  • Loading branch information
bekossy committed Dec 5, 2024
2 parents 14dd924 + b29471b commit 09d2def
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ const GetStartedSection = ({
<div className="flex items-center justify-between">
<Text>Create New Prompt</Text>

<Tooltip title="Create New Prompt.">
<Tooltip title="Create new prompt and edit it in the playground">
<Info size={16} />
</Tooltip>
</div>
Expand All @@ -98,7 +98,7 @@ const GetStartedSection = ({
<div className="flex items-center justify-between">
<Text>Set Up Tracing</Text>

<Tooltip title="Set Up Tracing.">
<Tooltip title="Start instrumenting your LLM application">
<Info size={16} />
</Tooltip>
</div>
Expand All @@ -112,7 +112,7 @@ const GetStartedSection = ({
<div className="flex items-center justify-between">
<Text>Create Custom Workflow</Text>

<Tooltip title="Create Custom Workflow.">
<Tooltip title="Create a playground for your custom workflows (RAG, agents..)">
<Info size={16} />
</Tooltip>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,13 @@ const HelpAndSupportSection = () => {
</Space>

<div className="flex items-center w-full gap-4">
<Link href="https://docs.agenta.ai/" target="_blank" className={classes.helperCard}>
<Link
href="https://docs.agenta.ai/prompt-management/quick-start"
target="_blank"
className={classes.helperCard}
>
<Code size={24} />
<Text>Learn how to create a prompt</Text>
<Text>Learn how to manage prompts</Text>
<ArrowRight size={18} />
</Link>
<Link className={classes.helperCard} href="https://docs.agenta.ai/" target="_blank">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,10 @@ print(response["choices"][0]["message"]["content"])`,
icon={<CloseOutlined />}
/>
<Text>Set up tracing</Text>
<Button>
<Button
target="_blank"
href="https://docs.agenta.ai/observability/observability-sdk"
>
<Play />
Tutorial
</Button>
Expand Down

0 comments on commit 09d2def

Please sign in to comment.