# Orbital-AI (TinyLLaMA 1.1B Chat v1.0)
🚀 This is a duplicated version of [TinyLLaMA-1.1B-Chat-v1.0](https://huggingface.co/cognitivecomputations/TinyLlama-1.1B-Chat-v1.0), hosted by [PlanetX95](https://huggingface.co/PlanetX95), as part of the **Best of Both Worlds AI project**.
### 🔍 Model Details
- Architecture: TinyLLaMA 1.1B
- Pretrained for: Instruction-following, chat, text generation
- Intended use: AI chatbot platforms, lightweight assistants, mobile AI apps
### 🛠️ Use This Model
```python
from transformers import AutoModelForCausalLM, AutoTokenizer
model_id = "PlanetX95/Orbital-AI"
tokenizer = AutoTokenizer.from_pretrained(model_id)
model = AutoModelForCausalLM.from_pretrained(model_id)
inputs = tokenizer("Who are you?", return_tensors="pt")
outputs = model.generate(**inputs, max_length=100)
print(tokenizer.decode(outputs[0], skip_special_tokens=True))