hra commited on
Commit
a5a4d55
·
1 Parent(s): ffcdd2f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -49,7 +49,7 @@ def getlastimage():
49
  data_old = file.read()
50
  #print(data_old)
51
  value1,value2,value3,value4,value5,value6=str(data_old.decode()).split('SEPERATOR')
52
- return 'lasttechradar1.png',value1,value2,value3,value4,value5,value6
53
 
54
 
55
  def getstuff(openapikey):
@@ -204,7 +204,7 @@ def getstuff(openapikey):
204
  with gr.Blocks() as demo:
205
  gr.Markdown("<h1><center>ChatGPT Technology Radar</center></h1>")
206
  gr.Markdown(
207
- """What are the top technologies as of now? Let us query top consulting websites & use ChatGPT to understand. \n\nChatGPT integrated with real data: It also shows how to get real-time data and marry it with ChatGPT capabilities. This demonstrates 'Chain of Thought' thinking using ChatGPT. \n LangChain & GPT-Index are both used."""
208
  )
209
 
210
  with gr.Row() as row:
 
49
  data_old = file.read()
50
  #print(data_old)
51
  value1,value2,value3,value4,value5,value6=str(data_old.decode()).split('SEPERATOR')
52
+ return 'lasttechradar1.png',value1.strip(),value2.strip(),value3.strip(),value4.strip(),value5.strip(),value6.strip()
53
 
54
 
55
  def getstuff(openapikey):
 
204
  with gr.Blocks() as demo:
205
  gr.Markdown("<h1><center>ChatGPT Technology Radar</center></h1>")
206
  gr.Markdown(
207
+ """What are the top technologies as of now? Let us query top consulting company websites & use ChatGPT to understand. \n\nShowcases ChatGPT integrated with real data. It shows how to get real-time data and marry it with ChatGPT capabilities. This demonstrates 'Chain of Thought' thinking using ChatGPT.\nLangChain & GPT-Index are both used."""
208
  )
209
 
210
  with gr.Row() as row: