Update app.py
Browse files
app.py
CHANGED
@@ -86,6 +86,7 @@ with gr.Blocks() as gaia:
|
|
86 |
openai_api_key = gr.Textbox(
|
87 |
label="OpenAI API Key *",
|
88 |
type="password",
|
|
|
89 |
interactive=True
|
90 |
)
|
91 |
gemini_api_key = gr.Textbox(
|
@@ -96,6 +97,7 @@ with gr.Blocks() as gaia:
|
|
96 |
anthropic_api_key = gr.Textbox(
|
97 |
label="Anthropic API Key *",
|
98 |
type="password",
|
|
|
99 |
interactive=True
|
100 |
)
|
101 |
with gr.Row():
|
|
|
86 |
openai_api_key = gr.Textbox(
|
87 |
label="OpenAI API Key *",
|
88 |
type="password",
|
89 |
+
placeholder="sk‑...",
|
90 |
interactive=True
|
91 |
)
|
92 |
gemini_api_key = gr.Textbox(
|
|
|
97 |
anthropic_api_key = gr.Textbox(
|
98 |
label="Anthropic API Key *",
|
99 |
type="password",
|
100 |
+
placeholder="sk-ant-...",
|
101 |
interactive=True
|
102 |
)
|
103 |
with gr.Row():
|