Knowledge Updater Kit
Automatically update the knowledge base as new information arrives and old facts expire.
Configuration
Update Queue
0/5 appliedAPI rate limitpending
100 req/min→200 req/minREPLACESupported languagespending
Python, JS→Python, JS, TypeScriptMERGEChangelogpending
v1.2.0 released→v1.2.0 released
v1.2.1 releasedAPPENDDefault timeoutpending
30s→60sREPLACEAuth methodspending
OAuth2→OAuth2, SAMLMERGEIntegration Code
import { createKnowledgeUpdater } from 'agent-tools-kit/knowledge-evolution'
const updater = createKnowledgeUpdater({ strategy: 'incremental' })
await updater.process([
{ fact: 'API rate limit', oldValue: '100 req/min', newValue: '200 req/min', strategy: 'replace' },
{ fact: 'Supported languages', oldValue: 'Python, JS', newValue: 'Python, JS, TypeScript', strategy: 'merge' },
])