From d4353865bdb8a19e92a98c370aed90eb49c04076 Mon Sep 17 00:00:00 2001 From: vivganes Date: Tue, 27 Jan 2026 18:22:59 +0530 Subject: [PATCH] fix #169 --- python/copilot/types.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/copilot/types.py b/python/copilot/types.py index bb64dd98..c08138e5 100644 --- a/python/copilot/types.py +++ b/python/copilot/types.py @@ -219,7 +219,7 @@ class SessionConfig(TypedDict, total=False): """Configuration for creating a session""" session_id: str # Optional custom session ID - model: Literal["gpt-5", "claude-sonnet-4", "claude-sonnet-4.5", "claude-haiku-4.5"] + model: str tools: list[Tool] system_message: SystemMessageConfig # System message configuration # List of tool names to allow (takes precedence over excluded_tools)