docs: add comprehensive documentation and examples for LLM augmentation
Introduced `llm-augmentation.md`, detailing the creation, training, testing, exporting, and deployment of language models using Brainy's graph database. Added examples showcasing practical usage and pipeline integration. Included class implementations in `llmAugmentations.ts`.
This commit is contained in:
parent
dbea051572
commit
7f95844434
9 changed files with 3447 additions and 44 deletions
10
src/index.ts
10
src/index.ts
|
|
@ -141,6 +141,11 @@ import {
|
|||
ServerSearchActivationAugmentation,
|
||||
createServerSearchAugmentations
|
||||
} from './augmentations/serverSearchAugmentations.js'
|
||||
import {
|
||||
LLMCognitionAugmentation,
|
||||
LLMActivationAugmentation,
|
||||
createLLMAugmentations
|
||||
} from './augmentations/llmAugmentations.js'
|
||||
|
||||
export {
|
||||
MemoryStorageAugmentation,
|
||||
|
|
@ -152,7 +157,10 @@ export {
|
|||
createConduitAugmentation,
|
||||
ServerSearchConduitAugmentation,
|
||||
ServerSearchActivationAugmentation,
|
||||
createServerSearchAugmentations
|
||||
createServerSearchAugmentations,
|
||||
LLMCognitionAugmentation,
|
||||
LLMActivationAugmentation,
|
||||
createLLMAugmentations
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue