Skip to content

Releases: youdotcom-oss/youdotcom-python-sdk

v2.3.0

04 Mar 03:20
03f5e8a

Choose a tag to compare

What's New in 2.3.0

Research API

New standalone Research endpoint for in-depth, multi-step research queries with citations and sources. Supports four effort levels: lite, standard, deep, and exhaustive.

res = you.research(
    input="Compare global approaches to AI regulation",
    research_effort=ResearchEffort.DEEP,
)
print(res.output.content)       # markdown with inline citations
print(res.output.sources)       # list of Source objects

Breaking Changes

  • Python >= 3.10 now required (was >= 3.9.2)
  • Search API: count now defaults to 10 (was None)
  • Contents API: crawl_timeout type changed from float to int

See MIGRATION.md for upgrade instructions.

Other Changes

  • Added CI test workflow (Python 3.10 + 3.12) with mock server
  • Removed pre-compiled mock server binary from git
  • Fixed missing imports in README streaming example
  • Fixed run_time_ms unit label in README ("seconds" -> "ms")

Full Changelog: https://github.com/youdotcom-oss/youdotcom-python-sdk/blob/main/CHANGELOG.md

v2.2.0

29 Jan 23:05
b4bcce7

Choose a tag to compare

What's Changed

Full Changelog: v2.1.0...v2.2.0

v2.1.0

27 Jan 18:39

Choose a tag to compare

See https://github.com/youdotcom-oss/youdotcom-python-sdk/blob/main/CHANGELOG.md#200---2026-01-09

What's Changed

Full Changelog: v1.4.1...v2.1.0

v1.4.1

11 Dec 00:21
b7d04ea

Choose a tag to compare

  • Adds support for contents in v1/search web results (see docs) when livecrawl is enabled

v1.4.0

09 Dec 22:36
7d63b4d

Choose a tag to compare

v1.3.0

19 Nov 18:45

Choose a tag to compare

Bumping version code to 1.3.0 for PyPi compatibility

v1.0.0

19 Nov 02:51

Choose a tag to compare

Initial release version of the You.com Python SDK