Spaces:
Running
Running
Update app.py
Browse files
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("
|
7 |
|
8 |
# Chatbot response function with integrated system message
|
9 |
def respond(
|
10 |
message,
|
11 |
history: list[tuple[str, str]],
|
12 |
-
max_tokens=
|
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 |
):
|