raoufjat commited on
Commit
c34f4d5
·
verified ·
1 Parent(s): d671719

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -8
app.py CHANGED
@@ -1,8 +1,3 @@
1
- # Use a pipeline as a high-level helper
2
- from transformers import pipeline
3
-
4
- messages = [
5
- {"role": "user", "content": "Who are you?"},
6
- ]
7
- pipe = pipeline("text-generation", model="Qwen/Qwen3-0.6B")
8
- pipe(messages)
 
1
+ # Load model directly
2
+ from transformers import AutoModel
3
+ model = AutoModel.from_pretrained("Tesslate/Synthia-S1-27b-Q4_K_M-GGUF")