Added memory system
This commit is contained in:
@@ -1,9 +1,11 @@
|
||||
import * as os from 'node:os';
|
||||
import {LLM, AnthropicConfig, OllamaConfig, OpenAiConfig, LLMRequest} from './llm';
|
||||
import LLM, {AnthropicConfig, OllamaConfig, OpenAiConfig, LLMRequest} from './llm';
|
||||
import { Audio } from './audio.ts';
|
||||
import {Vision} from './vision.ts';
|
||||
|
||||
export type AbortablePromise<T> = Promise<T> & {abort: () => any};
|
||||
export type AbortablePromise<T> = Promise<T> & {
|
||||
abort: () => any
|
||||
};
|
||||
|
||||
export type AiOptions = {
|
||||
/** Path to models */
|
||||
|
||||
Reference in New Issue
Block a user