diff --git a/src/strands/models/openai.py b/src/strands/models/openai.py index f76ae0189..6e32c5bdd 100644 --- a/src/strands/models/openai.py +++ b/src/strands/models/openai.py @@ -17,7 +17,10 @@ class Client(Protocol): """Protocol defining the OpenAI-compatible interface for the underlying provider client.""" - chat: Any + @property + def chat(self) -> Any: + """Chat completions interface.""" + ... class OpenAIModel(SAOpenAIModel):