Akshayram1 commited on
Commit
2968d9c
·
verified ·
1 Parent(s): 3051707

Create requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +8 -0
requirements.txt ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
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="deepseek-ai/DeepSeek-R1-Distill-Qwen-1.5B")
8
+ pipe(messages)