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.

11 lines
285 B

from _arango import arango
from _llm import LLM
llm = LLM(keep_alive=6000, chat=False)
q = 'for doc in interrogations filter doc.reason != null return doc'
docs = [i for i in arango.db.aql.execute(q)]
for doc in docs:
print("\033[92m", doc['person'], "\033[0m", doc['reason'])