Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -51,7 +51,7 @@ def predict(prompt):
|
|
51 |
]
|
52 |
)
|
53 |
|
54 |
-
response = chat_session.send_message(
|
55 |
return response
|
56 |
|
57 |
def get_impressum_text(search_term):
|
|
|
51 |
]
|
52 |
)
|
53 |
|
54 |
+
response = chat_session.send_message("return a json object with the contact details. leave blank if information is not available. here is the json schema:\n\n{\n \"organization\": \"\",\n \"address\": \"\",\n \"phone\": \"\",\n \"email\": \"\",\n \"website\": \"\"\n}\n\nyou can find the contact details here: \n" + prompt)
|
55 |
return response
|
56 |
|
57 |
def get_impressum_text(search_term):
|