Spaces:
Build error
Build error
Add some descriptive text to the UI
Browse files
app.py
CHANGED
@@ -66,7 +66,12 @@ with block:
|
|
66 |
inputs=request
|
67 |
)
|
68 |
|
69 |
-
gr.HTML("
|
|
|
|
|
|
|
|
|
|
|
70 |
|
71 |
gr.HTML("<center>Powered by <a href='https://github.com/hwchase17/langchain'>LangChain 🦜️🔗</a></center>")
|
72 |
|
|
|
66 |
inputs=request
|
67 |
)
|
68 |
|
69 |
+
gr.HTML("""
|
70 |
+
This simple app demonstrates a couple of techniques for using GPT-3 to solve math problems.
|
71 |
+
The first technique is to simply ask GPT-3 to solve the problem. The second technique is to use
|
72 |
+
GPT-3 to interpret the problem and then create/run a Python program to solve it. The program is
|
73 |
+
generated using the PALChain from the <a href='https://github.com/hwchase17/langchain'>LangChain</a> library.
|
74 |
+
See <a href='https://reasonwithpal.com/'>PAL: Program-aided Language Models</a>""")
|
75 |
|
76 |
gr.HTML("<center>Powered by <a href='https://github.com/hwchase17/langchain'>LangChain 🦜️🔗</a></center>")
|
77 |
|