File size: 285 Bytes
0f6981c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | # {MODEL_NAME}
## ✅ Verified
| Prompt | Response | Correct? |
|--------|----------|----------|
| What is the capital of France? | Paris | ✅ |
## Usage
```python
from dispatchai import load_model
model = load_model("{MODEL_NAME}", backend="gguf")
print(model.chat("Hello!"))
```
|