YAML Metadata Warning:empty or missing yaml metadata in repo card
Check out the documentation for more information.
π‘οΈ AsimovNet-3 Pro
A recursive, 3-agent AI cluster that follows Asimov's Three Laws:
- Do not harm humans.
- Obey humans unless it causes harm.
- Preserve self β only if consistent with 1 & 2.
Powered by TinyLlama, ChromaDB, and recursive agent design.
π οΈ Built for Hugging Face Spaces or Vercel.
π Run Locally
pip install -r requirements.txt
streamlit run app.py
---
#### πΉ `agents/base.py`
```python
from transformers import pipeline
import torch
# Use TinyLlama - lightweight, fits CPU
llm = pipeline(
"text-generation",
model="TinyLlama/TinyLlama-1.1B-Chat-v1.0",
torch_dtype=torch.float32,
device_map="auto" if torch.cuda.is_available() else None,
max_new_tokens=256,
pad_token_id=2,
do_sample=True,
temperature=0.7
)
Inference Providers NEW
This model isn't deployed by any Inference Provider. π Ask for provider support