mirror of
https://github.com/Ladebeze66/llm_ticket3.git
synced 2026-02-04 13:50:21 +01:00
16 lines
355 B
Python
16 lines
355 B
Python
from typing import Optional
|
|
|
|
from .client import MIGRATION_MESSAGE
|
|
|
|
|
|
class MistralAsyncClient:
|
|
def __init__(
|
|
self,
|
|
api_key: Optional[str] = None,
|
|
endpoint: str = "",
|
|
max_retries: int = 5,
|
|
timeout: int = 120,
|
|
max_concurrent_requests: int = 64,
|
|
):
|
|
raise NotImplementedError(MIGRATION_MESSAGE)
|