From 44ffa5fa7d902a4b2f94535c4037d23779dfec24 Mon Sep 17 00:00:00 2001 From: Stephan Fitzpatrick Date: Tue, 2 Dec 2025 16:45:17 +0000 Subject: [PATCH 1/2] docs: add community session implementations section Add a new section to the sessions documentation that lists community-built session implementations. This makes it easier for users to discover third-party session backends. Initial entry: openai-django-sessions for Django ORM-based sessions. --- docs/sessions/index.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/docs/sessions/index.md b/docs/sessions/index.md index f30f5f2d6..e0e31ddd8 100644 --- a/docs/sessions/index.md +++ b/docs/sessions/index.md @@ -427,6 +427,16 @@ result = await Runner.run( ) ``` +## Community session implementations + +The community has built session implementations for other frameworks: + +| Package | Description | Install | +|---------|-------------|---------| +| [openai-django-sessions](https://pypi.org/project/openai-django-sessions/) | Django ORM-based sessions for any Django-supported database (PostgreSQL, MySQL, SQLite) | `pip install openai-django-sessions` | + +If you've built a session implementation, consider opening a PR to add it here! + ## API Reference For detailed API documentation, see: From 9fdd3af06a557340df3ec2a2eb13e15a4096601b Mon Sep 17 00:00:00 2001 From: Kazuhiro Sera Date: Wed, 3 Dec 2025 08:43:58 +0900 Subject: [PATCH 2/2] Apply suggestions from code review --- docs/sessions/index.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/sessions/index.md b/docs/sessions/index.md index e0e31ddd8..62c512580 100644 --- a/docs/sessions/index.md +++ b/docs/sessions/index.md @@ -429,13 +429,13 @@ result = await Runner.run( ## Community session implementations -The community has built session implementations for other frameworks: +The community has developed additional session implementations: -| Package | Description | Install | -|---------|-------------|---------| -| [openai-django-sessions](https://pypi.org/project/openai-django-sessions/) | Django ORM-based sessions for any Django-supported database (PostgreSQL, MySQL, SQLite) | `pip install openai-django-sessions` | +| Package | Description | +|---------|-------------| +| [openai-django-sessions](https://pypi.org/project/openai-django-sessions/) | Django ORM-based sessions for any Django-supported database (PostgreSQL, MySQL, SQLite, and more) | -If you've built a session implementation, consider opening a PR to add it here! +If you've built a session implementation, please feel free to submit a documentation PR to add it here! ## API Reference