hra commited on
Commit
733ce32
·
1 Parent(s): e821d73

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -25,7 +25,7 @@ with open('lastradartext.txt', 'r') as file:
25
  value1,value2,value3,value4,value5,value6=data_old.split('SEPERATOR')
26
 
27
  def getstuff(openapikey):
28
- dateforfilesave=datetime.today().strftime("%d-%m-%Y")
29
  print(dateforfilesave)
30
  os.environ['OPENAI_API_KEY'] = str(openapikey)
31
 
@@ -157,7 +157,7 @@ def getstuff(openapikey):
157
  with gr.Blocks() as demo:
158
  gr.Markdown("<h1><center>ChatGPT Technology Radar</center></h1>")
159
  gr.Markdown(
160
- """What are the top technologies as of now? Let us query top consulting websites & use ChatGPT to understand. This demonstrates 'Chain of Thought' thinking using ChatGPT. It also shows how to get real time data and marry it with ChatGPT capabilities.\n LangChain & GPT-Index are both used."""
161
  )
162
 
163
  with gr.Row() as row:
 
25
  value1,value2,value3,value4,value5,value6=data_old.split('SEPERATOR')
26
 
27
  def getstuff(openapikey):
28
+ dateforfilesave=datetime.today().strftime("%d-%m-%Y %I:%M%p")
29
  print(dateforfilesave)
30
  os.environ['OPENAI_API_KEY'] = str(openapikey)
31
 
 
157
  with gr.Blocks() as demo:
158
  gr.Markdown("<h1><center>ChatGPT Technology Radar</center></h1>")
159
  gr.Markdown(
160
+ """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."""
161
  )
162
 
163
  with gr.Row() as row: