Skip to content

Commit 33de637

Browse files
Update README.md
1 parent 7d5ffd0 commit 33de637

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

README.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,34 @@
22

33
Jellyfish is a lightweight, portable AI library written in pure C with no external dependencies. Designed for embedded and trust-critical systems, it uses blockchain-inspired techniques to provide transparent, verifiable learning and memory. Each input/output interaction is stored as a cryptographically hashed block, forming a tamper-resistant chain of reasoning and decisions. The system can learn from past inputs, respond based on memory, and automatically prune outdated or irrelevant data. This makes fossil_jellyfish ideal for AI applications that demand traceability, minimal resource usage, and self-cleaning behavior.
44

5+
ʼʼʼmeson
6+
# This is the primary logic bundle for TAI personality
7+
8+
mindset('core_logic') {
9+
description: 'Fundamental AI building blocks'
10+
priority: 1
11+
models: [
12+
'logic.fish',
13+
'nlp.fish',
14+
'ethics.fish'
15+
]
16+
tags: ['core']
17+
confidence_threshold: 0.5
18+
19+
#:bootstrap
20+
#:taint-free
21+
}
22+
23+
# Another mindset with conditional loading
24+
mindset('persona_trump') {
25+
description: 'Simulates Donald Trump speech pattern'
26+
models: ['trump_speech.fish']
27+
activation_condition: 'input contains "Trump"'
28+
priority: 10
29+
#:persona
30+
}
31+
ʼʼʼ
32+
533
## Key Features
634

735
- **Cross-Platform**: Runs consistently on Windows, macOS, and Linux.

0 commit comments

Comments
 (0)