From d3d1b133f516d0d8c310b1986ca9e7dc401b5e78 Mon Sep 17 00:00:00 2001 From: MUHAMMAD SALMAN HUSSAIN <160324527+mshsheikh@users.noreply.github.com> Date: Tue, 15 Jul 2025 19:49:56 +0500 Subject: [PATCH] Fix grammatical inconsistency in session documentation (singular/plural mismatch) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit **Problem**: The documentation incorrectly used the plural form **"Sessions"** in a context requiring the singular noun **"Session"**, causing a grammatical mismatch in this line: ```markdown Sessions stores conversation history for a specific session... ``` **Changes**: - Changed **"Sessions"** → **"Session"** to align with singular subject-verb agreement: ```markdown Session stores conversation history for a specific session... ``` **Benefits**: - Ensures grammatical correctness and clarity. - Maintains consistency with the rest of the documentation, which uses **"session"** as a singular concept (e.g., "session ID", "conversation history for a specific session"). - No other spelling, grammar, or formatting issues were found in the text. This small fix improves readability and professionalism in the documentation. --- docs/sessions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/sessions.md b/docs/sessions.md index 956712438..b76dd15a3 100644 --- a/docs/sessions.md +++ b/docs/sessions.md @@ -2,7 +2,7 @@ The Agents SDK provides built-in session memory to automatically maintain conversation history across multiple agent runs, eliminating the need to manually handle `.to_input_list()` between turns. -Sessions stores conversation history for a specific session, allowing agents to maintain context without requiring explicit manual memory management. This is particularly useful for building chat applications or multi-turn conversations where you want the agent to remember previous interactions. +Session stores conversation history for a specific session, allowing agents to maintain context without requiring explicit manual memory management. This is particularly useful for building chat applications or multi-turn conversations where you want the agent to remember previous interactions. ## Quick start