Examples · Research

Research

One call, one cited brief.
Python
from youdotcom import You

with You("<API_KEY>") as you:
    res = you.research.run(
        query="State of homomorphic encryption for ML inference in 2025",
        depth="deep",
    )

print(res.answer)
print("\nSources:")
for c in res.citations:
    print(f"- {c.title} — {c.url}")