Spaces:
Runtime error
Runtime error
Update Content.py
Browse files- Content.py +2 -4
Content.py
CHANGED
@@ -1,3 +1,5 @@
|
|
|
|
|
|
1 |
def starting(input):
|
2 |
if any(word in input for word in ['hello', 'hii', 'hi', 'wake up']):
|
3 |
response = ("Hii !! If you want to know about your body's constitution and wellness, "
|
@@ -109,7 +111,3 @@ def answer(response):
|
|
109 |
else:
|
110 |
prakriti = 'kapha'
|
111 |
return 'Your prakriti is Kapha. Do you wish to know more?'
|
112 |
-
|
113 |
-
# Example usage
|
114 |
-
ans = questions('hot')
|
115 |
-
print(ans)
|
|
|
1 |
+
# Content.py - Prakriti Analyzer Logic
|
2 |
+
|
3 |
def starting(input):
|
4 |
if any(word in input for word in ['hello', 'hii', 'hi', 'wake up']):
|
5 |
response = ("Hii !! If you want to know about your body's constitution and wellness, "
|
|
|
111 |
else:
|
112 |
prakriti = 'kapha'
|
113 |
return 'Your prakriti is Kapha. Do you wish to know more?'
|
|
|
|
|
|
|
|