mirror of
https://github.com/simstudioai/sim.git
synced 2026-04-06 03:00:16 -04:00
* feat(agent): added workflow, kb, and function as a tool for agent block * fix keyboard nav and keyboard selection in tool-inp * ack PR comments * remove custom tool changes * fixed kb tools for agent * cleanup
110 lines
3.3 KiB
TypeScript
110 lines
3.3 KiB
TypeScript
import type { KnowledgeUploadChunkResponse } from '@/tools/knowledge/types'
|
|
import type { ToolConfig } from '@/tools/types'
|
|
|
|
export const knowledgeUploadChunkTool: ToolConfig<any, KnowledgeUploadChunkResponse> = {
|
|
id: 'knowledge_upload_chunk',
|
|
name: 'Knowledge Upload Chunk',
|
|
description: 'Upload a new chunk to a document in a knowledge base',
|
|
version: '1.0.0',
|
|
|
|
params: {
|
|
knowledgeBaseId: {
|
|
type: 'string',
|
|
required: true,
|
|
visibility: 'user-or-llm',
|
|
description: 'ID of the knowledge base containing the document',
|
|
},
|
|
documentId: {
|
|
type: 'string',
|
|
required: true,
|
|
visibility: 'user-or-llm',
|
|
description: 'ID of the document to upload the chunk to',
|
|
},
|
|
content: {
|
|
type: 'string',
|
|
required: true,
|
|
visibility: 'user-or-llm',
|
|
description: 'Content of the chunk to upload',
|
|
},
|
|
},
|
|
|
|
request: {
|
|
url: (params) =>
|
|
`/api/knowledge/${params.knowledgeBaseId}/documents/${params.documentId}/chunks`,
|
|
method: 'POST',
|
|
headers: () => ({
|
|
'Content-Type': 'application/json',
|
|
}),
|
|
body: (params) => {
|
|
const workflowId = params._context?.workflowId
|
|
|
|
const requestBody = {
|
|
content: params.content,
|
|
enabled: true,
|
|
...(workflowId && { workflowId }),
|
|
}
|
|
|
|
return requestBody
|
|
},
|
|
},
|
|
|
|
transformResponse: async (response): Promise<KnowledgeUploadChunkResponse> => {
|
|
const result = await response.json()
|
|
const data = result.data || result
|
|
|
|
return {
|
|
success: true,
|
|
output: {
|
|
message: `Successfully uploaded chunk to document`,
|
|
data: {
|
|
chunkId: data.id,
|
|
chunkIndex: data.chunkIndex || 0,
|
|
content: data.content,
|
|
contentLength: data.contentLength || data.content?.length || 0,
|
|
tokenCount: data.tokenCount || 0,
|
|
enabled: data.enabled !== undefined ? data.enabled : true,
|
|
createdAt: data.createdAt,
|
|
updatedAt: data.updatedAt,
|
|
},
|
|
documentId: data.documentId,
|
|
documentName: data.documentName,
|
|
cost: data.cost,
|
|
},
|
|
}
|
|
},
|
|
|
|
outputs: {
|
|
data: {
|
|
type: 'object',
|
|
description: 'Information about the uploaded chunk',
|
|
properties: {
|
|
chunkId: { type: 'string', description: 'Chunk ID' },
|
|
chunkIndex: { type: 'number', description: 'Index of the chunk within the document' },
|
|
content: { type: 'string', description: 'Content of the chunk' },
|
|
contentLength: { type: 'number', description: 'Length of the content in characters' },
|
|
tokenCount: { type: 'number', description: 'Number of tokens in the chunk' },
|
|
enabled: { type: 'boolean', description: 'Whether the chunk is enabled' },
|
|
createdAt: { type: 'string', description: 'Creation timestamp' },
|
|
updatedAt: { type: 'string', description: 'Last update timestamp' },
|
|
},
|
|
},
|
|
message: {
|
|
type: 'string',
|
|
description: 'Success or error message describing the operation result',
|
|
},
|
|
documentId: {
|
|
type: 'string',
|
|
description: 'ID of the document the chunk was added to',
|
|
},
|
|
documentName: {
|
|
type: 'string',
|
|
description: 'Name of the document the chunk was added to',
|
|
},
|
|
cost: {
|
|
type: 'object',
|
|
description: 'Cost information for the upload operation',
|
|
optional: true,
|
|
},
|
|
},
|
|
}
|