Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -901,6 +901,13 @@ with gr.Blocks(css=css) as demo:
|
|
901 |
btn_submit = gr.Button("Submit")
|
902 |
#total_tokens_str = gr.Markdown(elem_id="total_tokens_str")
|
903 |
btn_clear_conversation = gr.Button("Start New Conversation")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
904 |
"""
|
905 |
with gr.Column():
|
906 |
prompt_template = gr.Dropdown(label="Choose an Expert:", choices=list(prompt_templates.keys()))
|
|
|
901 |
btn_submit = gr.Button("Submit")
|
902 |
#total_tokens_str = gr.Markdown(elem_id="total_tokens_str")
|
903 |
btn_clear_conversation = gr.Button("Start New Conversation")
|
904 |
+
|
905 |
+
#temp variable until add more context files
|
906 |
+
prompt_template = ""
|
907 |
+
temperature = ""
|
908 |
+
max_tokens = ""
|
909 |
+
context_length == ""
|
910 |
+
|
911 |
"""
|
912 |
with gr.Column():
|
913 |
prompt_template = gr.Dropdown(label="Choose an Expert:", choices=list(prompt_templates.keys()))
|