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
@@ -23,6 +24,16 @@ import { BlockInfoCard } from "@/components/ui/block-info-card"
23
24
</svg>`}
24
25
/>
25
26
27
+
<divclassName="flex justify-center">
28
+
<Image
29
+
src="/static/blocks/webhook.png"
30
+
alt="Webhook Block Configuration"
31
+
width={500}
32
+
height={400}
33
+
className="my-6"
34
+
/>
35
+
</div>
36
+
26
37
## Übersicht
27
38
28
39
Der Generic Webhook-Block ermöglicht es Ihnen, Webhooks von jedem externen Dienst zu empfangen. Dies ist ein flexibler Auslöser, der jede JSON-Nutzlast verarbeiten kann und sich daher ideal für die Integration mit Diensten eignet, die keinen dedizierten Sim-Block haben.
Webhooks ermöglichen externen Diensten die Ausführung von Workflows durch das Senden von HTTP-Anfragen an Ihren Workflow. Sim unterstützt zwei Ansätze für webhook-basierte Auslöser.
@@ -12,8 +13,14 @@ Webhooks ermöglichen externen Diensten die Ausführung von Workflows durch das
12
13
13
14
Der generische Webhook-Block erstellt einen flexiblen Endpunkt, der beliebige Payloads empfangen und Ihren Workflow auslösen kann:
The Agent block serves as the interface between your workflow and Large Language Models (LLMs). It executes inference requests against various AI providers, processes natural language inputs according to defined instructions, and generates structured or unstructured outputs for downstream consumption.
9
+
The Agent block connects your workflow to Large Language Models (LLMs). It processes natural language inputs, calls external tools, and generates structured or unstructured outputs.
12
10
13
11
<divclassName="flex justify-center">
14
12
<Image
@@ -18,26 +16,7 @@ The Agent block serves as the interface between your workflow and Large Language
18
16
height={400}
19
17
className="my-6"
20
18
/>
21
-
</div>
22
-
23
-
## Overview
24
-
25
-
The Agent block enables you to:
26
-
27
-
<Steps>
28
-
<Step>
29
-
<strong>Process natural language</strong>: Analyze user input and generate contextual responses
30
-
</Step>
31
-
<Step>
32
-
<strong>Execute AI-powered tasks</strong>: Perform content analysis, generation, and decision-making
33
-
</Step>
34
-
<Step>
35
-
<strong>Call external tools</strong>: Access APIs, databases, and services during processing
36
-
</Step>
37
-
<Step>
38
-
<strong>Generate structured output</strong>: Return JSON data that matches your schema requirements
39
-
</Step>
40
-
</Steps>
19
+
</div>
41
20
42
21
## Configuration Options
43
22
@@ -63,71 +42,39 @@ The user prompt represents the primary input data for inference processing. This
63
42
64
43
The Agent block supports multiple LLM providers through a unified inference interface. Available models include:
The temperature range (0-1 or 0-2) varies depending on the selected model.
97
-
</div>
53
+
Controls response randomness and creativity:
54
+
55
+
-**Low (0-0.3)**: Deterministic and focused. Best for factual tasks and accuracy.
56
+
-**Medium (0.3-0.7)**: Balanced creativity and focus. Good for general use.
57
+
-**High (0.7-2.0)**: Creative and varied. Ideal for brainstorming and content generation.
98
58
99
59
### API Key
100
60
101
61
Your API key for the selected LLM provider. This is securely stored and used for authentication.
102
62
103
63
### Tools
104
64
105
-
Tools extend the agent's capabilities through external API integrations and service connections. The tool system enables function calling, allowing the agent to execute operations beyond text generation.
106
-
107
-
**Tool Integration Process**:
108
-
1. Access the Tools configuration section within the Agent block
109
-
2. Select from 60+ pre-built integrations or define custom functions
110
-
3. Configure authentication parameters and operational constraints
0 commit comments