You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
773 B
31 lines
773 B
import streamlit as st |
|
#from identify_person import find_person |
|
# from _arango import arango |
|
|
|
|
|
# db = arango.db |
|
# persons = list(db.collection('persons').all()) |
|
|
|
# q = 'for doc in persons filter doc.other == true return doc' |
|
# other_persons = [i for i in db.aql.execute(q)] |
|
|
|
print('Start') |
|
st.write('Start') |
|
# start_button = st.button('Start') |
|
# if start_button: |
|
# st.write('Started') |
|
# for person in other_persons: |
|
# answer = find_person(person) |
|
# if not answer: |
|
# continue |
|
|
|
# for i in answer: |
|
# answer, person_in_arango, text = i |
|
|
|
# st.write(f"Answer: {answer}") |
|
# st.write(f"Person in Arango: {person_in_arango}") |
|
# st.write(f"Interrogation: {text}") |
|
|
|
# st.stop() |
|
|
|
|
|
|