Intelligent assistant for your Protokol ecosystem. Chat, search, execute.
5+
AI Capabilities
<500ms
Avg Response Time
SDK
Tool Registry API
Multi
Model Support
Click any capability to see demos and details.
Kortex is deeply integrated into the Protokol platform — no separate servers, no complex setup. Just SDK, your tools, and AI that uses them.
Streaming AI responses with typing indicators
SDK-based tool registration for any Protokol app
RAG-powered knowledge retrieval with source citations
Multi-agent architecture with mid-conversation switching
Role-based access control with tier management
Configurable tool risk policies and approval workflows
OCR node for document text extraction in Workflows
AI Completion node with KB and tool context in Workflows
Multi-agent orchestration and chaining in Workflows
Make Your Protokol Apps AI-Ready
Register tools via SDK. Kortex discovers and invokes them automatically. Users trigger them via chat — no extra UI work.
import { kortex } from '@ptkl/sdk'
kortex.registerTool({
name: 'get_invoice_status',
description: 'Check payment status of an invoice',
schema: {
invoiceId: { type: 'string' }
},
handler: async ({ invoiceId }) => {
const inv = await db.invoices.find(invoiceId)
return {
status: inv.status,
amount: inv.amount,
currency: inv.currency
}
}
})Integrate AI into your Protokol applications in minutes.