curiouscurrent commited on
Commit
e1348f5
·
verified ·
1 Parent(s): eb6299e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -5
app.py CHANGED
@@ -1,9 +1,8 @@
1
- from transformers import LlamaForCausalLM, CodeLlamaTokenizer
2
 
3
- # Load pre-trained model and tokenizer
4
- model_name = "codellama/CodeLlama-7b-hf" # You can replace it with your model name
5
- tokenizer = CodeLlamaTokenizer.from_pretrained(model_name)
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."