JLW commited on
Commit
4605466
β€’
1 Parent(s): 9902a91

Add some descriptive text to the UI

Browse files
Files changed (1) hide show
  1. app.py +6 -1
app.py CHANGED
@@ -66,7 +66,12 @@ with block:
66
  inputs=request
67
  )
68
 
69
- gr.HTML("See <a href='https://reasonwithpal.com/'>PAL: Program-aided Language Models</a>")
 
 
 
 
 
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