Update app.py
Browse files
app.py
CHANGED
@@ -113,8 +113,9 @@ with block:
|
|
113 |
type="password",
|
114 |
)
|
115 |
|
116 |
-
|
117 |
-
|
|
|
118 |
|
119 |
vectorstore = load_vectorstore(model_options[embeddings])
|
120 |
|
|
|
113 |
type="password",
|
114 |
)
|
115 |
|
116 |
+
with gr.Row():
|
117 |
+
embeddings = gr.Radio(choices=list(model_options.keys()),value=list(model_options.keys())[0], label='Choose your Embedding Model')
|
118 |
+
print(embeddings)
|
119 |
|
120 |
vectorstore = load_vectorstore(model_options[embeddings])
|
121 |
|