UNPKG

gaunt-sloth-assistant

Version:

[![Tests and Lint](https://github.com/Galvanized-Pukeko/gaunt-sloth-assistant/actions/workflows/unit-tests.yml/badge.svg)](https://github.com/Galvanized-Pukeko/gaunt-sloth-assistant/actions/workflows/unit-tests.yml) [![Integration Tests](https://github.co

14 lines 545 B
import { randomUUID } from 'node:crypto'; /** * Creates new runnable config. * configurable.thread_id is an important part of that because it helps to distinguish different chat sessions. * We normally do not have multiple sessions in the terminal, but I had bad stuff happening in tests * and in another prototype project where I was importing Gaunt Sloth. */ export function getNewRunnableConfig() { return { recursionLimit: 250, configurable: { thread_id: randomUUID() }, }; } //# sourceMappingURL=llmUtils.js.map