Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
|
@@ -86,13 +86,13 @@ def display_prompt(show, prompt_type):
|
|
| 86 |
with gr.Blocks() as demo:
|
| 87 |
gr.Markdown("""<h3><center>ChatGPT + Robotics</center></h3>""")
|
| 88 |
gr.Markdown(
|
| 89 |
-
"This is a companion app to the work [ChatGPT for Robotics: Design Principles and Model Abilities](https://aka.ms/ChatGPT-Robotics)")
|
| 90 |
|
| 91 |
if not access_token:
|
| 92 |
gr.Markdown("""<h4>Login to ChatGPT</h4>""")
|
| 93 |
with gr.Row():
|
| 94 |
with gr.Group():
|
| 95 |
-
info = gr.Textbox(placeholder="Enter access token here", label="ChatGPT Login")
|
| 96 |
with gr.Row():
|
| 97 |
login = gr.Button("Login")
|
| 98 |
login.click(configure_chatgpt, inputs=[info])
|
|
|
|
| 86 |
with gr.Blocks() as demo:
|
| 87 |
gr.Markdown("""<h3><center>ChatGPT + Robotics</center></h3>""")
|
| 88 |
gr.Markdown(
|
| 89 |
+
"This is a companion app to the work [ChatGPT for Robotics: Design Principles and Model Abilities](https://aka.ms/ChatGPT-Robotics). See [README](README.md) for instructions.")
|
| 90 |
|
| 91 |
if not access_token:
|
| 92 |
gr.Markdown("""<h4>Login to ChatGPT</h4>""")
|
| 93 |
with gr.Row():
|
| 94 |
with gr.Group():
|
| 95 |
+
info = gr.Textbox(placeholder="Enter access token here (from https://chat.openai.com/api/auth/session)", label="ChatGPT Login")
|
| 96 |
with gr.Row():
|
| 97 |
login = gr.Button("Login")
|
| 98 |
login.click(configure_chatgpt, inputs=[info])
|