()
| 1 | import {MemoryI} from '@baseai/core'; |
| 2 | |
| 3 | const buildMemory = (): MemoryI => ({ |
| 4 | name: 'chat-with-docs', |
| 5 | description: 'Chat with docs', |
| 6 | git: { |
| 7 | enabled: false, |
| 8 | include: ['documents/**/*'], |
| 9 | gitignore: true, |
| 10 | deployedAt: '', |
| 11 | embeddedAt: '', |
| 12 | }, |
| 13 | }); |
| 14 | |
| 15 | export default buildMemory; |
no outgoing calls
no test coverage detected