Sarath0x8f commited on
Commit
25a9047
·
verified ·
1 Parent(s): a00f78e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -3,13 +3,13 @@ from resume import data
3
  import markdowm as md
4
  import gradio as gr
5
 
6
- client = InferenceClient("microsoft/Phi-3-mini-4k-instruct")
7
 
8
  # Chatbot response function with integrated system message
9
  def respond(
10
  message,
11
  history: list[tuple[str, str]],
12
- max_tokens=512,
13
  temperature=0.7,
14
  top_p=0.95,
15
  ):
 
3
  import markdowm as md
4
  import gradio as gr
5
 
6
+ client = InferenceClient("tiiuae/falcon-40b")
7
 
8
  # Chatbot response function with integrated system message
9
  def respond(
10
  message,
11
  history: list[tuple[str, str]],
12
+ max_tokens=1024,
13
  temperature=0.7,
14
  top_p=0.95,
15
  ):