reshav1 commited on
Commit
0c33b7e
·
verified ·
1 Parent(s): 360e70e

Update main.py

Browse files
Files changed (1) hide show
  1. main.py +2 -2
main.py CHANGED
@@ -5,6 +5,6 @@ model_id = "mistralai/Mixtral-8x7B-Instruct-v0.1"
5
  model = AutoModelForCausalLM.from_pretrained(model_id)
6
 
7
  text = "Hello"
8
- inputs = (text)
9
- outputs = model.generate(**inputs)
10
  print(outputs)
 
5
  model = AutoModelForCausalLM.from_pretrained(model_id)
6
 
7
  text = "Hello"
8
+
9
+ outputs = model.generate(text)
10
  print(outputs)