Spaces:
Running
Running
fallback
Browse files
app.py
CHANGED
@@ -782,28 +782,24 @@ with main_col:
|
|
782 |
"Project Description",
|
783 |
value="Web Task Manager Example", # Example default
|
784 |
key="proj_name_input",
|
785 |
-
height=300,
|
786 |
help="A brief, high-level description of the project's purpose."
|
787 |
)
|
788 |
proj_cat = st.text_input(
|
789 |
"Category",
|
790 |
value="Web Development", # Example default
|
791 |
key="proj_cat_input",
|
792 |
-
height=150,
|
793 |
help="Broad category (e.g., Web Development, Data Science, Game Dev, Mobile App)."
|
794 |
)
|
795 |
proj_subcat = st.text_input(
|
796 |
"Subcategory",
|
797 |
value="Productivity Tool", # Example default
|
798 |
key="proj_subcat_input",
|
799 |
-
height=150,
|
800 |
help="More specific classification (e.g., API, Library, CLI Tool, Backend Service)."
|
801 |
)
|
802 |
proj_lang = st.text_input(
|
803 |
"Coding Language",
|
804 |
value="Python", # Example default
|
805 |
key="proj_lang_input",
|
806 |
-
height=150,
|
807 |
help="The primary programming language for the project (e.g., Python, JavaScript, Java, Go)."
|
808 |
)
|
809 |
min_iter = st.number_input(
|
|
|
782 |
"Project Description",
|
783 |
value="Web Task Manager Example", # Example default
|
784 |
key="proj_name_input",
|
|
|
785 |
help="A brief, high-level description of the project's purpose."
|
786 |
)
|
787 |
proj_cat = st.text_input(
|
788 |
"Category",
|
789 |
value="Web Development", # Example default
|
790 |
key="proj_cat_input",
|
|
|
791 |
help="Broad category (e.g., Web Development, Data Science, Game Dev, Mobile App)."
|
792 |
)
|
793 |
proj_subcat = st.text_input(
|
794 |
"Subcategory",
|
795 |
value="Productivity Tool", # Example default
|
796 |
key="proj_subcat_input",
|
|
|
797 |
help="More specific classification (e.g., API, Library, CLI Tool, Backend Service)."
|
798 |
)
|
799 |
proj_lang = st.text_input(
|
800 |
"Coding Language",
|
801 |
value="Python", # Example default
|
802 |
key="proj_lang_input",
|
|
|
803 |
help="The primary programming language for the project (e.g., Python, JavaScript, Java, Go)."
|
804 |
)
|
805 |
min_iter = st.number_input(
|