Reasoner SDKPython SDK ReferenceReasoner IndexAdd Sources to an IndexCopy pageAdd URLs to an Index PythonPython (Async)1from reasoner import Reasoner23r = Reasoner(api_key=”foobar”)4index = r.indexes.get("your-index-uid")5r.indexes.add_urls(['https://reasoner.com'], index["uid"]) Add Files to an Index PythonPython (Async)1from reasoner import Reasoner23r = Reasoner(api_key=”foobar”)4index = r.indexes.get("your-index-uid")5files_or_dirs = [list of Path]6r.indexes.add_documents(files_or_dirs, index["uid"])