Spaces:
Sleeping
Sleeping
Update src/streamlit_app.py
Browse files- src/streamlit_app.py +3 -3
src/streamlit_app.py
CHANGED
|
@@ -5,8 +5,8 @@ from agency_swarm import Agent, Agency, set_openai_key, basetool
|
|
| 5 |
|
| 6 |
|
| 7 |
class AnalyzeProjectRequirement(BaseTool):
|
| 8 |
-
project_name: str= Field(...
|
| 9 |
-
project_description: str= Field(...
|
| 10 |
project_type: Literal ["Web Application", "Mobile App", "API Developement", "Data Analytics", "AI/ML Solution", "Other"] = Field(....., description= "Type of project")
|
| 11 |
budget_range: Literal["$10k-$25k", "$25k-$50k", "$100k+"] = Field(......, description= "Budget Range of the project")
|
| 12 |
|
|
@@ -35,7 +35,7 @@ class AnalyzeProjectRequirement(BaseTool):
|
|
| 35 |
|
| 36 |
|
| 37 |
class CreateTechnicalSPecification(BaseTool):
|
| 38 |
-
core_technologies: str = Field(.., description= "Comma-separated list of main technologies")
|
| 39 |
architecture_type: Literal["monolithic", "microservice", "serverless", "hybrid"] = Field(...., description= "Proposed Architecture")
|
| 40 |
scalability_requirement: Literal("high","medium", "low") = Field(...., description= "Scalability Needs")
|
| 41 |
|
|
|
|
| 5 |
|
| 6 |
|
| 7 |
class AnalyzeProjectRequirement(BaseTool):
|
| 8 |
+
project_name: str= Field(..., description = " Name of Project")
|
| 9 |
+
project_description: str= Field(..., description= "Project and Goals")
|
| 10 |
project_type: Literal ["Web Application", "Mobile App", "API Developement", "Data Analytics", "AI/ML Solution", "Other"] = Field(....., description= "Type of project")
|
| 11 |
budget_range: Literal["$10k-$25k", "$25k-$50k", "$100k+"] = Field(......, description= "Budget Range of the project")
|
| 12 |
|
|
|
|
| 35 |
|
| 36 |
|
| 37 |
class CreateTechnicalSPecification(BaseTool):
|
| 38 |
+
core_technologies: str = Field(..., description= "Comma-separated list of main technologies")
|
| 39 |
architecture_type: Literal["monolithic", "microservice", "serverless", "hybrid"] = Field(...., description= "Proposed Architecture")
|
| 40 |
scalability_requirement: Literal("high","medium", "low") = Field(...., description= "Scalability Needs")
|
| 41 |
|