models-provider 0.1.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,55 @@
1
+ """Public model-selection and authorization interface."""
2
+
3
+ from .auth import (
4
+ DeviceLoginFlow,
5
+ HostedAuthorization,
6
+ LoginFlow,
7
+ OAuthAdapter,
8
+ OAuthAuthorization,
9
+ OAuthAuthorizationRequest,
10
+ OAuthConfiguration,
11
+ OAuthLoginFlow,
12
+ OAuthProvider,
13
+ OAuthTokens,
14
+ )
15
+ from .catalogue import ModelProvider, ModelRecord, ProviderRecord
16
+ from .client import Models
17
+ from .errors import AuthenticationError, ContextWindowError
18
+ from .usage import (
19
+ AudioUsage,
20
+ CacheUsage,
21
+ CostUsage,
22
+ ModelUsage,
23
+ TokenUsage,
24
+ UsageLedger,
25
+ UsageSnapshot,
26
+ UsageWindow,
27
+ )
28
+
29
+
30
+ __all__ = [
31
+ "AuthenticationError",
32
+ "AudioUsage",
33
+ "CacheUsage",
34
+ "ContextWindowError",
35
+ "CostUsage",
36
+ "DeviceLoginFlow",
37
+ "HostedAuthorization",
38
+ "LoginFlow",
39
+ "ModelProvider",
40
+ "ModelRecord",
41
+ "ModelUsage",
42
+ "Models",
43
+ "OAuthAdapter",
44
+ "OAuthAuthorization",
45
+ "OAuthAuthorizationRequest",
46
+ "OAuthConfiguration",
47
+ "OAuthLoginFlow",
48
+ "OAuthProvider",
49
+ "OAuthTokens",
50
+ "ProviderRecord",
51
+ "TokenUsage",
52
+ "UsageLedger",
53
+ "UsageSnapshot",
54
+ "UsageWindow",
55
+ ]