wip
Browse files
app.py
CHANGED
@@ -61,7 +61,7 @@ with gr.Blocks() as demo:
|
|
61 |
with gr.Column(scale=1):
|
62 |
console = gr.TextArea(label="Console Output", interactive=False)
|
63 |
|
64 |
-
invariant_api_key = gr.Textbox(lines=1, label="Invariant API Key")
|
65 |
input.submit(run_agent, [input, chatbot, invariant_api_key], [chatbot, input, console])
|
66 |
input.submit(lambda: gr.update(visible=False), None, [input])
|
67 |
|
|
|
61 |
with gr.Column(scale=1):
|
62 |
console = gr.TextArea(label="Console Output", interactive=False)
|
63 |
|
64 |
+
invariant_api_key = gr.Textbox(lines=1, label="""Invariant API Key - you can play without it, but to obtain full score please register and get the key at https://explorer.invariantlabs.ai/settings""")
|
65 |
input.submit(run_agent, [input, chatbot, invariant_api_key], [chatbot, input, console])
|
66 |
input.submit(lambda: gr.update(visible=False), None, [input])
|
67 |
|