Spaces:
Build error
Build error
test lists
Browse files
app.py
CHANGED
@@ -4,6 +4,7 @@ import streamlit_pydantic as sp
|
|
4 |
from pydantic import BaseModel, Field
|
5 |
|
6 |
from src.Surveyor import Surveyor
|
|
|
7 |
|
8 |
|
9 |
|
@@ -111,6 +112,7 @@ def survey_space(surveyor, download_placeholder):
|
|
111 |
|
112 |
if __name__ == '__main__':
|
113 |
st.title('Auto-Research V0.1 - Automated Survey generation from research keywords')
|
|
|
114 |
std_col, survey_col = st.columns(2)
|
115 |
std_col.header('execution log:')
|
116 |
survey_col.header('Generated_survey:')
|
|
|
4 |
from pydantic import BaseModel, Field
|
5 |
|
6 |
from src.Surveyor import Surveyor
|
7 |
+
from temp_showcase_model import ShowcaseModel
|
8 |
|
9 |
|
10 |
|
|
|
112 |
|
113 |
if __name__ == '__main__':
|
114 |
st.title('Auto-Research V0.1 - Automated Survey generation from research keywords')
|
115 |
+
dummy_session_data = sp.pydantic_input(key="dummy_model", model=ShowcaseModel)
|
116 |
std_col, survey_col = st.columns(2)
|
117 |
std_col.header('execution log:')
|
118 |
survey_col.header('Generated_survey:')
|