2023年5月7日Index subset of CORD-19 data data = list(workflow([“input.csv”])) embeddings.index(data) for result in embeddings.search(“select title, abstract, authors, doi from txtai where similar(‘insulin’)”): print(json.dumps(result, default=str, indent=2)) ...