Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1,9 +1,8 @@
|
|
1 |
-
from transformers import
|
2 |
|
3 |
-
# Load
|
4 |
-
|
5 |
-
|
6 |
-
model = LlamaForCausalLM.from_pretrained(model_name)
|
7 |
|
8 |
# System message
|
9 |
system_message = "You are a code teaching assistant named OmniCode created by Anusha K. Answer all the code related questions being asked."
|
|
|
1 |
+
from transformers import AutoTokenizer, AutoModelForCausalLM
|
2 |
|
3 |
+
# Load model directly
|
4 |
+
tokenizer = AutoTokenizer.from_pretrained("codellama/CodeLlama-7b-hf")
|
5 |
+
model = AutoModelForCausalLM.from_pretrained("codellama/CodeLlama-7b-hf")
|
|
|
6 |
|
7 |
# System message
|
8 |
system_message = "You are a code teaching assistant named OmniCode created by Anusha K. Answer all the code related questions being asked."
|