Update app.py
Browse files
app.py
CHANGED
@@ -122,7 +122,7 @@ Provide a brief wellness summary explaining the predicted KPIs and recommended p
|
|
122 |
Use the responses and personal details to generate KPI predictions, determine the recommended *DailyWellnessAI* package(s), and provide a concise summary report that briefly justifies the recommendations, taking into account the user's age, gender, height, and weight.
|
123 |
"""
|
124 |
|
125 |
-
chat = ChatGroq(api_key=api_key, model="
|
126 |
prompt_template = PromptTemplate(
|
127 |
input_variables=["age", "gender", "height", "weight"] + [f"ans{i}" for i in range(1, 16)],
|
128 |
template=template
|
|
|
122 |
Use the responses and personal details to generate KPI predictions, determine the recommended *DailyWellnessAI* package(s), and provide a concise summary report that briefly justifies the recommendations, taking into account the user's age, gender, height, and weight.
|
123 |
"""
|
124 |
|
125 |
+
chat = ChatGroq(api_key=api_key, model="llama-3.3-70b-versatile", temperature=0.2)
|
126 |
prompt_template = PromptTemplate(
|
127 |
input_variables=["age", "gender", "height", "weight"] + [f"ans{i}" for i in range(1, 16)],
|
128 |
template=template
|