Spaces:
Runtime error
Runtime error
Raghavan1988
commited on
Commit
·
586b887
1
Parent(s):
54d667e
bug fix
Browse files
app.py
CHANGED
@@ -1,5 +1,4 @@
|
|
1 |
import gradio as gr
|
2 |
-
|
3 |
def greet(query):
|
4 |
return "Hello " + query + "!!"
|
5 |
|
@@ -16,7 +15,4 @@ iface = gr.Interface(
|
|
16 |
Prototype to demonstrate the capability of LLMs to answer questions.
|
17 |
LLMs are known to hallucinate. So, please use with caution.
|
18 |
''',
|
19 |
-
examples=[
|
20 |
-
["artificial intelligence"],
|
21 |
-
],
|
22 |
)
|
|
|
1 |
import gradio as gr
|
|
|
2 |
def greet(query):
|
3 |
return "Hello " + query + "!!"
|
4 |
|
|
|
15 |
Prototype to demonstrate the capability of LLMs to answer questions.
|
16 |
LLMs are known to hallucinate. So, please use with caution.
|
17 |
''',
|
|
|
|
|
|
|
18 |
)
|