mirror of
https://github.com/StanGirard/quivr.git
synced 2024-11-23 21:22:35 +03:00
Catch UnicodeEncodeError exception (#64)
This commit is contained in:
parent
6d1f22a420
commit
bf26696e71
4
files.py
4
files.py
@ -178,6 +178,10 @@ def url_uploader(supabase, vector_store):
|
||||
html = get_html(url)
|
||||
if html:
|
||||
st.write(f"Getting content ... {url} ")
|
||||
try:
|
||||
file, temp_file_path = create_html_file(url, html)
|
||||
except UnicodeEncodeError as e:
|
||||
st.write(f"❌ Error encoding character: {e}")
|
||||
file, temp_file_path = create_html_file(url, html)
|
||||
ret = filter_file(file, supabase, vector_store)
|
||||
delete_tempfile(temp_file_path, url, ret)
|
||||
|
Loading…
Reference in New Issue
Block a user