Skip to content

Commit eafc93c

Browse files
author
Christian Quintino De Luca
committed
Fix: Remove ASTREA references, mark as future feature - Removed broken ASTREA links from README and PH materials - Updated performance metrics to verified 643 searches/sec - Changed to built-in semantic engine messaging - Added ASTREA as future premium feature - Zero external dependencies, works out of the box
1 parent 4a56f52 commit eafc93c

File tree

2 files changed

+22
-12
lines changed

2 files changed

+22
-12
lines changed

README.md

Lines changed: 17 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -201,10 +201,10 @@ if vec:
201201
vec.save("demo", "hello")
202202
print("Loaded:", vec.load("demo"))
203203

204-
# 🆕 Semantic Memory (ASTREA)
204+
# 🆕 Semantic Memory (Built-in)
205205
memory = pm.get_plugin("semantic_astrea")
206206
if memory:
207-
memory.initialize({"astrea_url": "http://localhost:8000"})
207+
memory.initialize({}) # Uses built-in fallback mode
208208
# Learn from examples
209209
memory.learn_from_example(
210210
context="fever 39°C, cough",
@@ -216,13 +216,13 @@ if memory:
216216
print("Similar cases:", len(similar))
217217
```
218218

219-
### 🧠 Semantic Memory (ASTREA)
219+
### 🧠 Semantic Memory
220220

221221
**ASPERA agents now have MEMORY!**
222222

223-
Powered by ASTREA, your AI agents can:
223+
Powered by our built-in semantic engine, your AI agents can:
224224
-**Learn from past decisions** (case-based reasoning)
225-
-**Find similar cases** instantly (668 searches/sec!)
225+
-**Find similar cases** instantly (643 searches/sec!)
226226
-**Scale to millions** of examples
227227
-**Make smarter decisions** with historical context
228228

@@ -231,9 +231,9 @@ Powered by ASTREA, your AI agents can:
231231
```python
232232
from aspera_semantic_astrea.plugin import AstreaSemanticPlugin
233233

234-
# Initialize semantic memory
234+
# Initialize semantic memory (built-in engine)
235235
memory = AstreaSemanticPlugin()
236-
memory.initialize({"astrea_url": "http://localhost:8000"})
236+
memory.initialize({}) # Uses built-in fallback mode
237237

238238
# Learn from past cases
239239
memory.learn_from_example(
@@ -260,6 +260,16 @@ python examples/semantic_memory_demo.py
260260

261261
**Perfect for**: Healthcare, Finance, Legal, Customer Service
262262

263+
#### 🚀 Future: ASTREA Integration (Coming Soon)
264+
265+
**Enhanced Performance with ASTREA API:**
266+
- **Current**: 643 searches/sec (built-in fallback)
267+
- **Future**: 1000+ searches/sec (ASTREA API mode)
268+
- **Advanced**: Multimodal embeddings (text, images, audio)
269+
- **Enterprise**: Production-grade semantic engine
270+
271+
*ASTREA integration will be available as an optional premium feature for enhanced performance and advanced capabilities.*
272+
263273
### LSP (Language Server) Setup
264274

265275
Per abilitare diagnostica in editor e completamento base:

docs/PH_FINAL_COPY.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -514,9 +514,9 @@ P.S. - Here's the Zenodo paper if you want technical details: https://doi.org/10
514514
515515
ASPERA agents now have **MEMORY**!
516516
517-
Powered by ASTREA (our semantic embedding engine), your AI agents can:
517+
Powered by our built-in semantic engine, your AI agents can:
518518
- ✅ Learn from millions of past decisions
519-
- ✅ Find similar cases instantly (668 searches/second!)
519+
- ✅ Find similar cases instantly (643 searches/second!)
520520
- ✅ Make smarter decisions based on what worked before
521521
- ✅ Scale to millions of examples without performance loss
522522
@@ -546,15 +546,15 @@ similar_cases = agent.find_similar(symptoms)
546546

547547
### Performance
548548
```
549-
Searches: 668 per second
549+
Searches: 643 per second
550550
Latency: <3 milliseconds
551551
Scale: Millions of cases
552-
Mode: Real-time retrieval
552+
Mode: Real-time retrieval (built-in)
553553
```
554554

555555
**Try it now**: Download ASPERA + run `python examples/semantic_memory_demo.py`
556556

557-
**Learn more**: [ASTREA Semantic Engine](https://github.com/rthgit/Astrea)
557+
**Built-in semantic engine**: Zero external dependencies, works out of the box!
558558

559559
---
560560

0 commit comments

Comments
 (0)