nickmuchi commited on
Commit
d456856
·
1 Parent(s): 67c5765

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -113,8 +113,9 @@ with block:
113
  type="password",
114
  )
115
 
116
- embeddings = gr.Radio(choices=list(model_options.keys()),value=list(model_options.keys())[0], label='Choose your Embedding Model')
117
- print(embeddings)
 
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