Skip to content

Commit 72776f4

Browse files
authored
improvement(docs): added docs content (#2105)
1 parent 6114c21 commit 72776f4

File tree

14 files changed

+63
-1
lines changed

14 files changed

+63
-1
lines changed

apps/docs/content/docs/en/blocks/human-in-the-loop.mdx

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ title: Human in the Loop
55
import { Callout } from 'fumadocs-ui/components/callout'
66
import { Tab, Tabs } from 'fumadocs-ui/components/tabs'
77
import { Image } from '@/components/ui/image'
8+
import { Video } from '@/components/ui/video'
89

910
The Human in the Loop block pauses workflow execution and waits for human intervention before continuing. Use it to add approval gates, collect feedback, or gather additional input at critical decision points.
1011

@@ -76,7 +77,7 @@ Defines the fields approvers fill in when responding. This data becomes availabl
7677
}
7778
```
7879

79-
Access resume data in downstream blocks using `<blockId.resumeInput.fieldName>`.
80+
Access resume data in downstream blocks using `<blockId.resumeInput.fieldName>`.
8081

8182
## Approval Methods
8283

@@ -164,6 +165,11 @@ Access using `<blockId.resumeInput.fieldName>`.
164165
// Condition block
165166
<approval1.resumeInput.approved> === true
166167
```
168+
The example below shows an approval portal as seen by an approver after the workflow is paused. Approvers can review the data and provide inputs as a part of the workflow resumption. The approval portal can be accessed directly via the unique URL, `<blockId.url>`.
169+
170+
<div className="mx-auto w-full overflow-hidden rounded-lg my-6">
171+
<Video src="hitl-resume.mp4" width={700} height={450} />
172+
</div>
167173

168174
## Related Blocks
169175

apps/docs/content/docs/en/connections/basics.mdx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ title: Basics
44

55
import { Callout } from 'fumadocs-ui/components/callout'
66
import { Step, Steps } from 'fumadocs-ui/components/steps'
7+
import { Video } from '@/components/ui/video'
78

89
## How Connections Work
910

@@ -29,6 +30,10 @@ Connections are the pathways that allow data to flow between blocks in your work
2930
</Step>
3031
</Steps>
3132

33+
<div className="mx-auto w-full overflow-hidden rounded-lg my-6">
34+
<Video src="connections-build.mp4" width={700} height={450} />
35+
</div>
36+
3237
### Connection Flow
3338

3439
The flow of data through connections follows these principles:

apps/docs/content/docs/en/copilot/index.mdx

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,16 @@ This contextual information helps Copilot provide more accurate and relevant ass
7171
</Card>
7272
</Cards>
7373

74+
<div className="flex justify-center">
75+
<Image
76+
src="/static/copilot/copilot-mode.png"
77+
alt="Copilot mode selection interface"
78+
width={600}
79+
height={400}
80+
className="my-6"
81+
/>
82+
</div>
83+
7484
## Depth Levels
7585

7686
<Cards>

apps/docs/content/docs/en/introduction/index.mdx

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ title: Introduction
55
import { Card, Cards } from 'fumadocs-ui/components/card'
66
import { Callout } from 'fumadocs-ui/components/callout'
77
import { Image } from '@/components/ui/image'
8+
import { Video } from '@/components/ui/video'
89

910
Sim is an open-source visual workflow builder for building and deploying AI agent workflows. Design intelligent automation systems using a no-code interface—connect AI models, databases, APIs, and business tools through an intuitive drag-and-drop canvas. Whether you're building chatbots, automating business processes, or orchestrating complex data pipelines, Sim provides the tools to bring your AI workflows to life.
1011

@@ -32,6 +33,10 @@ Transform raw data into actionable insights. Extract information from documents,
3233
**API Integration Workflows**
3334
Orchestrate complex multi-service interactions. Create unified API endpoints, implement sophisticated business logic, and build event-driven automation systems.
3435

36+
<div className="mx-auto w-full overflow-hidden rounded-lg my-6">
37+
<Video src="introduction/chat-workflow.mp4" width={700} height={450} />
38+
</div>
39+
3540
## How It Works
3641

3742
**Visual Workflow Editor**
@@ -46,6 +51,10 @@ Launch workflows through multiple channels including chat interfaces, REST APIs,
4651
**Real-time Collaboration**
4752
Enable your team to build together. Multiple users can edit workflows simultaneously with live updates and granular permission controls.
4853

54+
<div className="mx-auto w-full overflow-hidden rounded-lg my-6">
55+
<Video src="introduction/build-workflow.mp4" width={700} height={450} />
56+
</div>
57+
4958
## Integrations
5059

5160
Sim provides native integrations with 80+ services across multiple categories:
@@ -59,6 +68,27 @@ Sim provides native integrations with 80+ services across multiple categories:
5968

6069
For custom integrations, leverage our [MCP (Model Context Protocol) support](/mcp) to connect any external service or tool.
6170

71+
<div className="mx-auto w-full overflow-hidden rounded-lg my-6">
72+
<Video src="introduction/integrations-sidebar.mp4" width={700} height={450} />
73+
</div>
74+
75+
## AI-Powered Copilot
76+
77+
**Ask Questions & Get Guidance**
78+
Copilot answers questions about Sim, explains your workflows, and provides suggestions for improvements. Use the `@` symbol to reference workflows, blocks, documentation, knowledge, and logs for contextual assistance.
79+
80+
**Build & Edit Workflows**
81+
Switch to Agent mode to let Copilot propose and apply changes directly to your canvas. Add blocks, configure settings, wire variables, and restructure workflows with natural language commands.
82+
83+
**Adaptive Reasoning Levels**
84+
Choose from Fast, Auto, Advanced, or Behemoth modes depending on task complexity. Start with Fast for simple questions, scale up to Behemoth for complex architectural changes and deep debugging.
85+
86+
Learn more about [Copilot capabilities](/copilot) and how to maximize productivity with AI assistance.
87+
88+
<div className="mx-auto w-full overflow-hidden rounded-lg my-6">
89+
<Video src="introduction/copilot-workflow.mp4" width={700} height={450} />
90+
</div>
91+
6292
## Deployment Options
6393

6494
**Cloud-Hosted**

apps/docs/content/docs/en/triggers/index.mdx

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,17 @@ description: Triggers are the core ways to start Sim workflows
44
---
55

66
import { Card, Cards } from 'fumadocs-ui/components/card'
7+
import { Image } from '@/components/ui/image'
8+
9+
<div className="flex justify-center">
10+
<Image
11+
src="/static/blocks/triggers.png"
12+
alt="Triggers Overview"
13+
width={500}
14+
height={350}
15+
className="my-6"
16+
/>
17+
</div>
718

819
## Core Triggers
920

42.1 KB
Loading
112 KB
Loading
83.5 KB
Loading

apps/docs/public/static/execution/deployment-versions-light.png renamed to apps/docs/public/static/execution/deployment-versions.png

File renamed without changes.
-12.6 KB
Loading

0 commit comments

Comments
 (0)