* Fix main-methods.py: entities is a dict, use .items() and .canonical_name * Migrate docs to use CodeSnippet components - Convert quickstart.md, retain.md, recall.md, reflect.md, memory-banks.md to .mdx - Use CodeSnippet to pull code from validated example scripts - Add missing 'name' parameter to create_bank calls - Fix main-methods.py entities iteration (dict not list) - Remove retain-new.mdx demo file * Migrate existing docs to match testing pattern with code snippet and add CLI tests to the CI * Fix doc-id issue + add main-method tests * CLI fixes * Update openAPI json * Fix rust build issues * increase sleep time for Hindsight to process the document * Added a polling sleep instead of fixed * Delete immediately fails, so create the doc a earlier in the test to get the doc ready * Add debug logs * Remove debug logs
48 lines
1.7 KiB
JavaScript
48 lines
1.7 KiB
JavaScript
#!/usr/bin/env node
|
|
/**
|
|
* Memory Banks API examples for Hindsight (Node.js)
|
|
* Run: node examples/api/memory-banks.mjs
|
|
*/
|
|
import { HindsightClient } from '@vectorize-io/hindsight-client';
|
|
|
|
const HINDSIGHT_URL = process.env.HINDSIGHT_API_URL || 'http://localhost:8888';
|
|
|
|
// =============================================================================
|
|
// Setup (not shown in docs)
|
|
// =============================================================================
|
|
const client = new HindsightClient({ baseUrl: HINDSIGHT_URL });
|
|
|
|
// =============================================================================
|
|
// Doc Examples
|
|
// =============================================================================
|
|
|
|
// [docs:create-bank]
|
|
await client.createBank('my-bank', {
|
|
name: 'Research Assistant',
|
|
background: 'I am a research assistant specializing in machine learning',
|
|
disposition: {
|
|
skepticism: 4,
|
|
literalism: 3,
|
|
empathy: 3
|
|
}
|
|
});
|
|
// [/docs:create-bank]
|
|
|
|
|
|
// [docs:bank-background]
|
|
await client.createBank('financial-advisor', {
|
|
name: 'Financial Advisor',
|
|
background: `I am a conservative financial advisor with 20 years of experience.
|
|
I prioritize capital preservation over aggressive growth.
|
|
I have seen multiple market crashes and believe in diversification.`
|
|
});
|
|
// [/docs:bank-background]
|
|
|
|
|
|
// =============================================================================
|
|
// Cleanup (not shown in docs)
|
|
// =============================================================================
|
|
await fetch(`${HINDSIGHT_URL}/v1/default/banks/my-bank`, { method: 'DELETE' });
|
|
await fetch(`${HINDSIGHT_URL}/v1/default/banks/financial-advisor`, { method: 'DELETE' });
|
|
|
|
console.log('memory-banks.mjs: All examples passed');
|