Update app.py
Browse files
app.py
CHANGED
|
@@ -12,7 +12,8 @@ client = OpenAI()
|
|
| 12 |
|
| 13 |
# These are the necessary components that make up the Trials
|
| 14 |
class Variables(BaseModel):
|
| 15 |
-
|
|
|
|
| 16 |
# independent: List[str] = Field(..., title="Independent Variables", description="A list of independent variables (ie treatments), which will be intentionally varied across one or more trials")
|
| 17 |
# outcome: List[str] = Field(..., title="Outcome Variables", description="A list of outcome variables (ie dependent or response variables)")
|
| 18 |
|
|
|
|
| 12 |
|
| 13 |
# These are the necessary components that make up the Trials
|
| 14 |
class Variables(BaseModel):
|
| 15 |
+
independent: List[str] = Field(..., title="Independent Variables", description="A list of independent variables (ie treatments), which will be intentionally varied across one or more trials")
|
| 16 |
+
# controlled: List[str] = Field(..., title="Controlled Variables", description="A list of controlled variables, which will be constant (controlled) across all trials")
|
| 17 |
# independent: List[str] = Field(..., title="Independent Variables", description="A list of independent variables (ie treatments), which will be intentionally varied across one or more trials")
|
| 18 |
# outcome: List[str] = Field(..., title="Outcome Variables", description="A list of outcome variables (ie dependent or response variables)")
|
| 19 |
|