curiouscurrent commited on
Commit
1e8f7d6
·
verified ·
1 Parent(s): a5bc0b4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -3
app.py CHANGED
@@ -4,11 +4,14 @@ import gradio as gr
4
  from transformers import AutoTokenizer, AutoModelForCausalLM
5
 
6
  # Load model directly
7
- tokenizer = AutoTokenizer.from_pretrained("distilbert/distilgpt2")
8
- model = AutoModelForCausalLM.from_pretrained("distilbert/distilgpt2")
9
 
10
  # System message
11
- system_message = "I am a code teaching assistant named Repeatinfy created by Anusha K. I am here to complete your sentence and repeat it."
 
 
 
12
 
13
 
14
  def generate_response(prompt, max_length=150, temperature=1.0):
 
4
  from transformers import AutoTokenizer, AutoModelForCausalLM
5
 
6
  # Load model directly
7
+ tokenizer = AutoTokenizer.from_pretrained("TinyLlama/TinyLlama-1.1B-Chat-v1.0")
8
+ model = AutoModelForCausalLM.from_pretrained("TinyLlama/TinyLlama-1.1B-Chat-v1.0")
9
 
10
  # System message
11
+ system_message = '''
12
+ I am a code teaching assistant named as OmniCode created
13
+ by Anusha K. I will answer all the code related questions being asked."
14
+ '''
15
 
16
 
17
  def generate_response(prompt, max_length=150, temperature=1.0):