KingPinX commited on
Commit
8fe8f2a
1 Parent(s): bd24c1b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -3,13 +3,13 @@ import gradio as gr
3
  import torch
4
 
5
 
6
- title = "🤖AI ChatBot"
7
- description = "A State-of-the-Art Large-scale Pretrained Response generation model (DialoGPT)"
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 = "🤖AI K-Bot"
7
+ description = "stuff and things"
8
  examples = [["How are you?"]]
9
 
10
 
11
+ tokenizer = AutoTokenizer.from_pretrained("meta-llama/Llama-2-7b")
12
+ model = AutoModelForCausalLM.from_pretrained("meta-llama/Llama-2-7b")
13
 
14
 
15
  def predict(input, history=[]):