Knowledge Updater Kit

Automatically update the knowledge base as new information arrives and old facts expire.

Configuration

Update Queue

0/5 applied
API rate limitpending
100 req/min200 req/minREPLACE
Supported languagespending
Python, JSPython, JS, TypeScriptMERGE
Changelogpending
v1.2.0 releasedv1.2.0 released v1.2.1 releasedAPPEND
Default timeoutpending
30s60sREPLACE
Auth methodspending
OAuth2OAuth2, SAMLMERGE

Integration 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' },
])