Satyam0077 commited on
Commit
b80a790
·
verified ·
1 Parent(s): e13ba9e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -7
app.py CHANGED
@@ -1,13 +1,7 @@
1
- # app.py
2
-
3
  import streamlit as st
4
- from ui.chat_ui import render_chat_interface
5
 
6
  def main():
7
- """
8
- Entry point for TalentScout Hiring Assistant.
9
- Renders the Streamlit chat interface.
10
- """
11
  render_chat_interface()
12
 
13
  if __name__ == "__main__":
 
 
 
1
  import streamlit as st
2
+ from chat_ui import render_chat_interface # no ui. prefix anymore
3
 
4
  def main():
 
 
 
 
5
  render_chat_interface()
6
 
7
  if __name__ == "__main__":