Spaces:
Runtime error
Runtime error
mongramosjr
commited on
Update app.py
Browse files
app.py
CHANGED
@@ -11,7 +11,7 @@ def respond(
|
|
11 |
message,
|
12 |
history: list[tuple[str, str]],
|
13 |
system_message="You are a friendly Chatbot.",
|
14 |
-
max_tokens=
|
15 |
temperature=0.7,
|
16 |
top_p=0.95,
|
17 |
):
|
@@ -42,22 +42,12 @@ def respond(
|
|
42 |
"""
|
43 |
For information on how to customize the ChatInterface, peruse the gradio docs: https://www.gradio.app/docs/chatinterface
|
44 |
"""
|
45 |
-
|
46 |
respond,
|
47 |
-
|
48 |
-
|
49 |
-
# gr.Slider(minimum=1, maximum=2048, value=512, step=1, label="Max new tokens"),
|
50 |
-
# gr.Slider(minimum=0.1, maximum=4.0, value=0.7, step=0.1, label="Temperature"),
|
51 |
-
# gr.Slider(
|
52 |
-
# minimum=0.1,
|
53 |
-
# maximum=1.0,
|
54 |
-
# value=0.95,
|
55 |
-
# step=0.05,
|
56 |
-
# label="Top-p (nucleus sampling)",
|
57 |
-
# ),
|
58 |
-
# ],
|
59 |
)
|
60 |
|
61 |
|
62 |
if __name__ == "__main__":
|
63 |
-
|
|
|
11 |
message,
|
12 |
history: list[tuple[str, str]],
|
13 |
system_message="You are a friendly Chatbot.",
|
14 |
+
max_tokens=1024,
|
15 |
temperature=0.7,
|
16 |
top_p=0.95,
|
17 |
):
|
|
|
42 |
"""
|
43 |
For information on how to customize the ChatInterface, peruse the gradio docs: https://www.gradio.app/docs/chatinterface
|
44 |
"""
|
45 |
+
chat_balangay = gr.ChatInterface(
|
46 |
respond,
|
47 |
+
title = "Philippine OmniCorpus: A Knowledge Hub for Legal, Media, Cultural, and Historical Insights",
|
48 |
+
examples = ["What are the key provisions of the Philippine Data Privacy Act?", "Please provide a summary of the coverage on the Taal Volcano eruption.","Tell me about the traditional festivals celebrated in the Philippines."],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
49 |
)
|
50 |
|
51 |
|
52 |
if __name__ == "__main__":
|
53 |
+
chat_balangay..launch()
|