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:

  1. Do not harm humans.
  2. Obey humans unless it causes harm.
  3. 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
)
Downloads last month

-

Downloads are not tracked for this model. How to track
Inference Providers NEW
This model isn't deployed by any Inference Provider. πŸ™‹ Ask for provider support