mirror of
https://github.com/simstudioai/sim.git
synced 2026-01-09 06:58:07 -05:00
imrpovement(kb): added client-side store, shared utils, background processing, retry with exponential backoff to knowledge base (#453)
* added background processing for file upload to knowledge base, added retry with exponential backoff, individual file retry, statuses * added knowledge store * added knowledge base selector and docs for knowledge block * fixed build * fix contributors page * significantly improved error handling, typing, fault tolerance * standardize file icon size
This commit is contained in:
@@ -964,7 +964,9 @@ async function generateBlockDoc(blockPath: string, icons: Record<string, string>
|
||||
|
||||
// Skip blocks with category 'blocks' (except memory type), and skip specific blocks
|
||||
if (
|
||||
(blockConfig.category === 'blocks' && blockConfig.type !== 'memory') ||
|
||||
(blockConfig.category === 'blocks' &&
|
||||
blockConfig.type !== 'memory' &&
|
||||
blockConfig.type !== 'knowledge') ||
|
||||
blockConfig.type === 'evaluator' ||
|
||||
blockConfig.type === 'number'
|
||||
) {
|
||||
|
||||
Reference in New Issue
Block a user