from _arango import ArangoDB arango = ArangoDB() initiatives = [i for i in arango.db.collection("eu_initiatives").all()] ordered_by_headline = sorted(initiatives, key=lambda x: x["headline"]) import env_manager import os from ollama import Client import httpx ollama = Client( os.getenv("https://lasseedfast.se/api/chat/"), auth=httpx.BasicAuth(username="lasse", password="p239q8wimerxr2m389"), ) ollama.generate( "What is the European Green Deal?" ) # This will generate a response from the LLM model