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
Sim Studio's Knowledge Base is a powerful native feature that enables you to create, manage, and query custom knowledge bases directly within the platform. Using advanced AI embeddings and vector search technology, the Knowledge Base block allows you to build intelligent search capabilities into your workflows, making it easy to find and utilize relevant information across your organization.
35
+
36
+
The Knowledge Base system provides a comprehensive solution for managing organizational knowledge through its flexible and scalable architecture. With its built-in vector search capabilities, teams can perform semantic searches that understand meaning and context, going beyond traditional keyword matching.
37
+
38
+
Key features of the Knowledge Base include:
39
+
40
+
- Semantic Search: Advanced AI-powered search that understands meaning and context, not just keywords
41
+
- Vector Embeddings: Automatic conversion of text into high-dimensional vectors for intelligent similarity matching
42
+
- Custom Knowledge Bases: Create and manage multiple knowledge bases for different purposes or departments
43
+
- Flexible Content Types: Support for various document formats and content types
44
+
- Real-time Updates: Immediate indexing of new content for instant searchability
45
+
46
+
In Sim Studio, the Knowledge Base block enables your agents to perform intelligent semantic searches across your custom knowledge bases. This creates opportunities for automated information retrieval, content recommendations, and knowledge discovery as part of your AI workflows. The integration allows agents to search and retrieve relevant information programmatically, facilitating automated knowledge management tasks and ensuring that important information is easily accessible. By leveraging the Knowledge Base block, you can build intelligent agents that enhance information discovery while automating routine knowledge management tasks, improving team efficiency and ensuring consistent access to organizational knowledge.
47
+
{/* MANUAL-CONTENT-END */}
48
+
49
+
## Usage Instructions
50
+
51
+
Perform semantic vector search across your knowledge base to find the most relevant content. Uses advanced AI embeddings to understand meaning and context, returning the most similar documents to your search query.
52
+
53
+
54
+
55
+
## Tools
56
+
57
+
### `knowledge_search`
58
+
59
+
Search for similar content in a knowledge base using vector similarity
60
+
61
+
#### Input
62
+
63
+
| Parameter | Type | Required | Description |
64
+
| --------- | ---- | -------- | ----------- |
65
+
|`knowledgeBaseId`| string | Yes | ID of the knowledge base to search in |
66
+
|`query`| string | Yes | Search query text |
67
+
|`topK`| number | No | Number of most similar results to return \(1-100\)|
68
+
69
+
#### Output
70
+
71
+
| Parameter | Type |
72
+
| --------- | ---- |
73
+
|`results`| string |
74
+
|`query`| string |
75
+
|`knowledgeBaseId`| string |
76
+
|`topK`| string |
77
+
|`totalResults`| string |
78
+
|`message`| string |
79
+
80
+
81
+
82
+
## Block Configuration
83
+
84
+
### Input
85
+
86
+
| Parameter | Type | Required | Description |
87
+
| --------- | ---- | -------- | ----------- |
88
+
|`knowledgeBaseId`| string | Yes | Knowledge Base - Select knowledge base |
89
+
90
+
91
+
92
+
### Outputs
93
+
94
+
| Output | Type | Description |
95
+
| ------ | ---- | ----------- |
96
+
|`response`| object | Output from response |
97
+
| ↳ `results`| json | results of the response |
98
+
| ↳ `query`| string | query of the response |
99
+
| ↳ `knowledgeBaseId`| string | knowledgeBaseId of the response |
100
+
| ↳ `topK`| number | topK of the response |
101
+
| ↳ `totalResults`| number | totalResults of the response |
@@ -56,23 +56,24 @@ In Sim Studio, the Slack integration enables your agents to programmatically sen
56
56
57
57
## Usage Instructions
58
58
59
-
Send messages to any Slack channel using OAuth authentication. Integrate automated notifications and alerts into your workflow to keep your team informed.
59
+
Comprehensive Slack integration with OAuth authentication. Send formatted messages using Slack
60
60
61
61
62
62
63
63
## Tools
64
64
65
65
### `slack_message`
66
66
67
-
Send messages to Slack channels or users through the Slack API. Enables direct communication and notifications with timestamp tracking and channel confirmation.
67
+
Send messages to Slack channels or users through the Slack API. Supports Slack mrkdwn formatting.
68
68
69
69
#### Input
70
70
71
71
| Parameter | Type | Required | Description |
72
72
| --------- | ---- | -------- | ----------- |
73
-
|`apiKey`| string | Yes | Your Slack API token |
73
+
|`botToken`| string | No | Bot token for Custom Bot |
74
+
|`accessToken`| string | No | OAuth access token or bot token for Slack API |
0 commit comments