17 lines
389 B
TypeScript
17 lines
389 B
TypeScript
// Default plugin settings
|
|
|
|
export const DEFAULT_SETTINGS = {
|
|
ollamaUrl: 'http://localhost:11434',
|
|
model: 'llama3',
|
|
vaultSearchLimit: 3,
|
|
maxMessageHistory: 50,
|
|
lastIndexTime: 0,
|
|
cacheConfig: {
|
|
enabled: false,
|
|
similarityThreshold: 0.85,
|
|
collectionName: 'ollama_semantic_cache',
|
|
embeddingModel: 'nomic-embed-text',
|
|
chromaURL: 'http://localhost:8000',
|
|
},
|
|
};
|