Spaces:
Sleeping
Sleeping
Update llm.py
Browse files
llm.py
CHANGED
@@ -11,6 +11,6 @@ def llm(img):
|
|
11 |
# generate text
|
12 |
prompt = "take this peace of information and give all the information in point wise better format also give some recomendation related to them' " + text
|
13 |
# print(prompt)
|
14 |
-
response =
|
15 |
|
16 |
return response.text
|
|
|
11 |
# generate text
|
12 |
prompt = "take this peace of information and give all the information in point wise better format also give some recomendation related to them' " + text
|
13 |
# print(prompt)
|
14 |
+
response = geminiModel.generate_content(prompt)
|
15 |
|
16 |
return response.text
|