Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: max_retries typing #1135

Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 22 additions & 18 deletions instructor/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@
Literal,
Any,
)
from tenacity import (
AsyncRetrying,
Retrying,
)
from collections.abc import Generator, Iterable, Awaitable, AsyncGenerator
from typing_extensions import Self
from pydantic import BaseModel
Expand Down Expand Up @@ -114,7 +118,7 @@ def create(
self: AsyncInstructor,
response_model: type[T],
messages: list[ChatCompletionMessageParam],
max_retries: int = 3,
max_retries: int | Retrying | AsyncRetrying = 3,
validation_context: dict[str, Any] | None = None,
context: dict[str, Any] | None = None, # {{ edit_1 }}
strict: bool = True,
Expand All @@ -126,7 +130,7 @@ def create(
self: Self,
response_model: type[T],
messages: list[ChatCompletionMessageParam],
max_retries: int = 3,
max_retries: int | Retrying | AsyncRetrying = 3,
validation_context: dict[str, Any] | None = None,
context: dict[str, Any] | None = None, # {{ edit_1 }}
strict: bool = True,
Expand All @@ -138,7 +142,7 @@ def create(
self: AsyncInstructor,
response_model: None,
messages: list[ChatCompletionMessageParam],
max_retries: int = 3,
max_retries: int | Retrying | AsyncRetrying = 3,
validation_context: dict[str, Any] | None = None,
context: dict[str, Any] | None = None, # {{ edit_1 }}
strict: bool = True,
Expand All @@ -150,7 +154,7 @@ def create(
self: Self,
response_model: None,
messages: list[ChatCompletionMessageParam],
max_retries: int = 3,
max_retries: int | Retrying | AsyncRetrying = 3,
validation_context: dict[str, Any] | None = None,
context: dict[str, Any] | None = None, # {{ edit_1 }}
strict: bool = True,
Expand All @@ -161,7 +165,7 @@ def create(
self,
response_model: type[T] | None,
messages: list[ChatCompletionMessageParam],
max_retries: int = 3,
max_retries: int | Retrying | AsyncRetrying = 3,
validation_context: dict[str, Any] | None = None,
context: dict[str, Any] | None = None,
strict: bool = True,
Expand All @@ -185,7 +189,7 @@ def create_partial(
self: AsyncInstructor,
response_model: type[T],
messages: list[ChatCompletionMessageParam],
max_retries: int = 3,
max_retries: int | Retrying | AsyncRetrying = 3,
validation_context: dict[str, Any] | None = None,
context: dict[str, Any] | None = None, # {{ edit_1 }}
strict: bool = True,
Expand All @@ -197,7 +201,7 @@ def create_partial(
self: Self,
response_model: type[T],
messages: list[ChatCompletionMessageParam],
max_retries: int = 3,
max_retries: int | Retrying | AsyncRetrying = 3,
validation_context: dict[str, Any] | None = None, # Deprecate in 2.0
context: dict[str, Any] | None = None,
strict: bool = True,
Expand All @@ -208,7 +212,7 @@ def create_partial(
self,
response_model: type[T],
messages: list[ChatCompletionMessageParam],
max_retries: int = 3,
max_retries: int | Retrying | AsyncRetrying = 3,
validation_context: dict[str, Any] | None = None, # Deprecate in 2.0
context: dict[str, Any] | None = None,
strict: bool = True,
Expand All @@ -235,7 +239,7 @@ def create_iterable(
self: AsyncInstructor,
messages: list[ChatCompletionMessageParam],
response_model: type[T],
max_retries: int = 3,
max_retries: int | Retrying | AsyncRetrying = 3,
validation_context: dict[str, Any] | None = None, # Deprecate in 2.0
context: dict[str, Any] | None = None,
strict: bool = True,
Expand All @@ -247,7 +251,7 @@ def create_iterable(
self: Self,
messages: list[ChatCompletionMessageParam],
response_model: type[T],
max_retries: int = 3,
max_retries: int | Retrying | AsyncRetrying = 3,
validation_context: dict[str, Any] | None = None, # Deprecate in 2.0
context: dict[str, Any] | None = None,
strict: bool = True,
Expand All @@ -258,7 +262,7 @@ def create_iterable(
self,
messages: list[ChatCompletionMessageParam],
response_model: type[T],
max_retries: int = 3,
max_retries: int | Retrying | AsyncRetrying = 3,
validation_context: dict[str, Any] | None = None, # Deprecate in 2.0
context: dict[str, Any] | None = None,
strict: bool = True,
Expand All @@ -284,7 +288,7 @@ def create_with_completion(
self: AsyncInstructor,
messages: list[ChatCompletionMessageParam],
response_model: type[T],
max_retries: int = 3,
max_retries: int | Retrying | AsyncRetrying = 3,
validation_context: dict[str, Any] | None = None, # Deprecate in 2.0
context: dict[str, Any] | None = None,
strict: bool = True,
Expand All @@ -296,7 +300,7 @@ def create_with_completion(
self: Self,
messages: list[ChatCompletionMessageParam],
response_model: type[T],
max_retries: int = 3,
max_retries: int | Retrying | AsyncRetrying = 3,
validation_context: dict[str, Any] | None = None, # Deprecate in 2.0
context: dict[str, Any] | None = None,
strict: bool = True,
Expand All @@ -307,7 +311,7 @@ def create_with_completion(
self,
messages: list[ChatCompletionMessageParam],
response_model: type[T],
max_retries: int = 3,
max_retries: int | Retrying | AsyncRetrying = 3,
validation_context: dict[str, Any] | None = None, # Deprecate in 2.0
context: dict[str, Any] | None = None,
strict: bool = True,
Expand Down Expand Up @@ -373,7 +377,7 @@ async def create(
self,
response_model: type[T] | None,
messages: list[ChatCompletionMessageParam],
max_retries: int = 3,
max_retries: int | Retrying | AsyncRetrying = 3,
validation_context: dict[str, Any] | None = None, # Deprecate in 2.0
context: dict[str, Any] | None = None,
strict: bool = True,
Expand All @@ -395,7 +399,7 @@ async def create_partial(
self,
response_model: type[T],
messages: list[ChatCompletionMessageParam],
max_retries: int = 3,
max_retries: int | Retrying | AsyncRetrying = 3,
validation_context: dict[str, Any] | None = None, # Deprecate in 2.0
context: dict[str, Any] | None = None,
strict: bool = True,
Expand All @@ -419,7 +423,7 @@ async def create_iterable(
self,
messages: list[ChatCompletionMessageParam],
response_model: type[T],
max_retries: int = 3,
max_retries: int | Retrying | AsyncRetrying = 3,
validation_context: dict[str, Any] | None = None, # Deprecate in 2.0
context: dict[str, Any] | None = None,
strict: bool = True,
Expand All @@ -443,7 +447,7 @@ async def create_with_completion(
self,
messages: list[ChatCompletionMessageParam],
response_model: type[T],
max_retries: int = 3,
max_retries: int | Retrying | AsyncRetrying = 3,
validation_context: dict[str, Any] | None = None, # Deprecate in 2.0
context: dict[str, Any] | None = None,
strict: bool = True,
Expand Down
13 changes: 9 additions & 4 deletions instructor/patch.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@
from instructor.mode import Mode
import logging

from tenacity import (
AsyncRetrying,
Retrying,
)

logger = logging.getLogger("instructor")

T_Model = TypeVar("T_Model", bound=BaseModel)
Expand All @@ -35,7 +40,7 @@ def __call__(
response_model: type[T_Model] | None = None,
validation_context: dict[str, Any] | None = None, # Deprecate in 2.0
context: dict[str, Any] | None = None,
max_retries: int = 1,
max_retries: int | Retrying | AsyncRetrying = 1,
*args: Any,
**kwargs: Any,
) -> T_Model: ...
Expand All @@ -47,7 +52,7 @@ async def __call__(
response_model: type[T_Model] | None = None,
validation_context: dict[str, Any] | None = None, # Deprecate in 2.0
context: dict[str, Any] | None = None,
max_retries: int = 1,
max_retries: int | Retrying | AsyncRetrying = 1,
*args: Any,
**kwargs: Any,
) -> T_Model: ...
Expand Down Expand Up @@ -140,7 +145,7 @@ async def new_create_async(
response_model: type[T_Model] | None = None,
validation_context: dict[str, Any] | None = None,
context: dict[str, Any] | None = None,
max_retries: int = 1,
max_retries: int | Retrying | AsyncRetrying = 1,
strict: bool = True,
hooks: Hooks | None = None,
*args: T_ParamSpec.args,
Expand Down Expand Up @@ -171,7 +176,7 @@ def new_create_sync(
response_model: type[T_Model] | None = None,
validation_context: dict[str, Any] | None = None,
context: dict[str, Any] | None = None,
max_retries: int = 1,
max_retries: int | Retrying | AsyncRetrying = 1,
strict: bool = True,
hooks: Hooks | None = None,
*args: T_ParamSpec.args,
Expand Down