erpsarang commited on
Commit
be13d3c
1 Parent(s): aa3d2b2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -3,13 +3,13 @@ import gradio as gr
3
  import torch
4
 
5
 
6
- title = "erpsarang's AI ChatBot"
7
  description = "bigdata GPT"
8
  examples = [["How are you?"]]
9
 
10
 
11
- tokenizer = AutoTokenizer.from_pretrained("microsoft/DialoGPT-large")
12
- model = AutoModelForCausalLM.from_pretrained("microsoft/DialoGPT-large")
13
 
14
 
15
  def predict(input, history=[]):
 
3
  import torch
4
 
5
 
6
+ title = "erpsarang's bigdata AI ChatBot"
7
  description = "bigdata GPT"
8
  examples = [["How are you?"]]
9
 
10
 
11
+ tokenizer = AutoTokenizer.from_pretrained("erpsarang/Llama-3-Open-Ko-8B-Instruct-erpsarang")
12
+ model = AutoModelForCausalLM.from_pretrained("erpsarang/Llama-3-Open-Ko-8B-Instruct-erpsarang")
13
 
14
 
15
  def predict(input, history=[]):