Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -1,13 +1,7 @@
|
|
| 1 |
-
# app.py
|
| 2 |
-
|
| 3 |
import streamlit as st
|
| 4 |
-
from
|
| 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__":
|