remove access token
Browse files
app.py
CHANGED
|
@@ -119,7 +119,6 @@ with gr.Blocks(fill_height=True) as demo:
|
|
| 119 |
chatgpt_interface = gr.load(
|
| 120 |
name=model_choice.value,
|
| 121 |
src=openai_gradio.registry,
|
| 122 |
-
accept_token=True,
|
| 123 |
fill_height=True
|
| 124 |
)
|
| 125 |
|
|
@@ -127,7 +126,6 @@ with gr.Blocks(fill_height=True) as demo:
|
|
| 127 |
return gr.load(
|
| 128 |
name=new_model,
|
| 129 |
src=openai_gradio.registry,
|
| 130 |
-
accept_token=True,
|
| 131 |
fill_height=True
|
| 132 |
)
|
| 133 |
|
|
|
|
| 119 |
chatgpt_interface = gr.load(
|
| 120 |
name=model_choice.value,
|
| 121 |
src=openai_gradio.registry,
|
|
|
|
| 122 |
fill_height=True
|
| 123 |
)
|
| 124 |
|
|
|
|
| 126 |
return gr.load(
|
| 127 |
name=new_model,
|
| 128 |
src=openai_gradio.registry,
|
|
|
|
| 129 |
fill_height=True
|
| 130 |
)
|
| 131 |
|