IliaLarchenko commited on
Commit
900869e
1 Parent(s): 953f193

Fixed tab id issue

Browse files
Files changed (1) hide show
  1. ui/coding.py +1 -1
ui/coding.py CHANGED
@@ -6,7 +6,7 @@ from utils.ui import add_candidate_message, add_interviewer_message
6
 
7
 
8
  def get_problem_solving_ui(llm, tts, stt, default_audio_params, audio_output, name="Coding", interview_type="coding"):
9
- with gr.Tab(name, render=False, elem_id=f"name_tab") as problem_tab:
10
  chat_history = gr.State([])
11
  previous_code = gr.State("")
12
  started_coding = gr.State(False)
 
6
 
7
 
8
  def get_problem_solving_ui(llm, tts, stt, default_audio_params, audio_output, name="Coding", interview_type="coding"):
9
+ with gr.Tab(name, render=False, elem_id=f"{name}_tab") as problem_tab:
10
  chat_history = gr.State([])
11
  previous_code = gr.State("")
12
  started_coding = gr.State(False)