Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1,14 +1,15 @@
|
|
1 |
import gradio as gr
|
2 |
-
|
3 |
janus.consult("knowledge_base.pl")
|
4 |
|
5 |
def yes_man(message, history):
|
|
|
6 |
# % Define the person
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
if message.endswith("?"):
|
11 |
-
return
|
12 |
else:
|
13 |
return "Ask me about `eligible_for_ssi`!"
|
14 |
|
|
|
1 |
import gradio as gr
|
2 |
+
from pyswip import Prolog
|
3 |
janus.consult("knowledge_base.pl")
|
4 |
|
5 |
def yes_man(message, history):
|
6 |
+
prolog = Prolog()
|
7 |
# % Define the person
|
8 |
+
prolog.assertz("us_citizen(john_doe)")
|
9 |
+
prolog.assertz("lawfully_residing(john_doe, 'U.S.', date(1996, 1, 1))")
|
10 |
+
prolog.assertz("condition(john_doe, 'Blind')")
|
11 |
if message.endswith("?"):
|
12 |
+
return prolog.query_once("eligible_for_ssi(john_doe)")
|
13 |
else:
|
14 |
return "Ask me about `eligible_for_ssi`!"
|
15 |
|