openrouter 0.0.16__py3-none-any.whl → 0.0.18__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.
- openrouter/_version.py +3 -3
- openrouter/analytics.py +2 -0
- openrouter/api_keys.py +24 -4
- openrouter/basesdk.py +6 -0
- openrouter/chat.py +212 -14
- openrouter/completions.py +2 -0
- openrouter/components/__init__.py +470 -106
- openrouter/components/_schema0.py +94 -0
- openrouter/components/_schema3.py +229 -0
- openrouter/components/chatgenerationparams.py +559 -16
- openrouter/components/chatgenerationtokenusage.py +3 -0
- openrouter/components/chatmessagecontentitem.py +2 -1
- openrouter/components/chatmessagecontentitemaudio.py +6 -25
- openrouter/components/chatmessagecontentitemcachecontrol.py +32 -0
- openrouter/components/chatmessagecontentitemtext.py +9 -2
- openrouter/components/chatmessagecontentitemvideo.py +50 -9
- openrouter/components/chatmessagetokenlogprob.py +4 -4
- openrouter/components/chatresponsechoice.py +6 -1
- openrouter/components/chatstreamingmessagechunk.py +12 -1
- openrouter/components/completionchoice.py +18 -5
- openrouter/components/completioncreateparams.py +10 -10
- openrouter/components/completionresponse.py +3 -0
- openrouter/components/datacollection.py +19 -0
- openrouter/components/message.py +10 -9
- openrouter/components/openairesponsesannotation.py +11 -4
- openrouter/components/openairesponsesreasoningeffort.py +2 -0
- openrouter/components/openresponseseasyinputmessage.py +93 -20
- openrouter/components/openresponsesinput.py +2 -2
- openrouter/components/openresponsesinputmessageitem.py +87 -14
- openrouter/components/openresponsesnonstreamingresponse.py +33 -19
- openrouter/components/openresponsesreasoning.py +2 -0
- openrouter/components/openresponsesrequest.py +246 -142
- openrouter/components/openresponsesstreamevent.py +110 -39
- openrouter/components/outputmessage.py +10 -4
- openrouter/components/parameter.py +1 -0
- openrouter/components/pdfparserengine.py +16 -0
- openrouter/components/pdfparseroptions.py +25 -0
- openrouter/components/percentilelatencycutoffs.py +71 -0
- openrouter/components/percentilestats.py +34 -0
- openrouter/components/percentilethroughputcutoffs.py +71 -0
- openrouter/components/preferredmaxlatency.py +21 -0
- openrouter/components/preferredminthroughput.py +22 -0
- openrouter/components/providername.py +11 -27
- openrouter/components/providerpreferences.py +355 -0
- openrouter/components/providersort.py +15 -0
- openrouter/components/providersortconfig.py +71 -0
- openrouter/components/providersortunion.py +23 -0
- openrouter/components/publicendpoint.py +61 -45
- openrouter/components/publicpricing.py +50 -45
- openrouter/components/responseformattextconfig.py +9 -7
- openrouter/components/responseinputvideo.py +26 -0
- openrouter/components/responseoutputtext.py +36 -1
- openrouter/components/responsesoutputitem.py +13 -11
- openrouter/components/responsesoutputitemreasoning.py +43 -3
- openrouter/components/responsesoutputmessage.py +10 -5
- openrouter/components/responsesoutputmodality.py +14 -0
- openrouter/components/websearchengine.py +15 -0
- openrouter/credits.py +4 -0
- openrouter/embeddings.py +34 -24
- openrouter/endpoints.py +4 -0
- openrouter/generations.py +2 -0
- openrouter/models/__init__.py +3 -0
- openrouter/models/internal/__init__.py +54 -0
- openrouter/models/internal/globals.py +41 -0
- openrouter/models_.py +6 -0
- openrouter/oauth.py +4 -0
- openrouter/operations/__init__.py +46 -49
- openrouter/operations/createembeddings.py +68 -264
- openrouter/operations/getcredits.py +19 -0
- openrouter/operations/getgeneration.py +6 -0
- openrouter/operations/getparameters.py +5 -77
- openrouter/operations/updatekeys.py +2 -2
- openrouter/parameters.py +4 -2
- openrouter/providers.py +2 -0
- openrouter/responses.py +188 -36
- openrouter/sdk.py +13 -0
- openrouter/sdkconfiguration.py +2 -0
- openrouter/utils/forms.py +21 -10
- openrouter/utils/queryparams.py +14 -2
- openrouter/utils/retries.py +69 -5
- {openrouter-0.0.16.dist-info → openrouter-0.0.18.dist-info}/METADATA +2 -1
- {openrouter-0.0.16.dist-info → openrouter-0.0.18.dist-info}/RECORD +85 -64
- {openrouter-0.0.16.dist-info → openrouter-0.0.18.dist-info}/WHEEL +0 -0
- {openrouter-0.0.16.dist-info → openrouter-0.0.18.dist-info}/licenses/LICENSE +0 -0
- {openrouter-0.0.16.dist-info → openrouter-0.0.18.dist-info}/top_level.txt +0 -0
|
@@ -6,6 +6,18 @@ import builtins
|
|
|
6
6
|
import sys
|
|
7
7
|
|
|
8
8
|
if TYPE_CHECKING:
|
|
9
|
+
from ._schema0 import Schema0, Schema0Enum, Schema0TypedDict
|
|
10
|
+
from ._schema3 import (
|
|
11
|
+
Schema3,
|
|
12
|
+
Schema3ReasoningEncrypted,
|
|
13
|
+
Schema3ReasoningEncryptedTypedDict,
|
|
14
|
+
Schema3ReasoningSummary,
|
|
15
|
+
Schema3ReasoningSummaryTypedDict,
|
|
16
|
+
Schema3ReasoningText,
|
|
17
|
+
Schema3ReasoningTextTypedDict,
|
|
18
|
+
Schema3TypedDict,
|
|
19
|
+
Schema5,
|
|
20
|
+
)
|
|
9
21
|
from .activityitem import ActivityItem, ActivityItemTypedDict
|
|
10
22
|
from .assistantmessage import (
|
|
11
23
|
AssistantMessage,
|
|
@@ -25,6 +37,33 @@ if TYPE_CHECKING:
|
|
|
25
37
|
from .chaterror import ChatErrorError, ChatErrorErrorTypedDict, Code, CodeTypedDict
|
|
26
38
|
from .chatgenerationparams import (
|
|
27
39
|
ChatGenerationParams,
|
|
40
|
+
ChatGenerationParamsDataCollection,
|
|
41
|
+
ChatGenerationParamsImageConfig,
|
|
42
|
+
ChatGenerationParamsImageConfigTypedDict,
|
|
43
|
+
ChatGenerationParamsMaxPrice,
|
|
44
|
+
ChatGenerationParamsMaxPriceTypedDict,
|
|
45
|
+
ChatGenerationParamsPluginAutoRouter,
|
|
46
|
+
ChatGenerationParamsPluginAutoRouterTypedDict,
|
|
47
|
+
ChatGenerationParamsPluginFileParser,
|
|
48
|
+
ChatGenerationParamsPluginFileParserTypedDict,
|
|
49
|
+
ChatGenerationParamsPluginModeration,
|
|
50
|
+
ChatGenerationParamsPluginModerationTypedDict,
|
|
51
|
+
ChatGenerationParamsPluginResponseHealing,
|
|
52
|
+
ChatGenerationParamsPluginResponseHealingTypedDict,
|
|
53
|
+
ChatGenerationParamsPluginUnion,
|
|
54
|
+
ChatGenerationParamsPluginUnionTypedDict,
|
|
55
|
+
ChatGenerationParamsPluginWeb,
|
|
56
|
+
ChatGenerationParamsPluginWebTypedDict,
|
|
57
|
+
ChatGenerationParamsPreferredMaxLatency,
|
|
58
|
+
ChatGenerationParamsPreferredMaxLatencyTypedDict,
|
|
59
|
+
ChatGenerationParamsPreferredMaxLatencyUnion,
|
|
60
|
+
ChatGenerationParamsPreferredMaxLatencyUnionTypedDict,
|
|
61
|
+
ChatGenerationParamsPreferredMinThroughput,
|
|
62
|
+
ChatGenerationParamsPreferredMinThroughputTypedDict,
|
|
63
|
+
ChatGenerationParamsPreferredMinThroughputUnion,
|
|
64
|
+
ChatGenerationParamsPreferredMinThroughputUnionTypedDict,
|
|
65
|
+
ChatGenerationParamsProvider,
|
|
66
|
+
ChatGenerationParamsProviderTypedDict,
|
|
28
67
|
ChatGenerationParamsResponseFormatJSONObject,
|
|
29
68
|
ChatGenerationParamsResponseFormatJSONObjectTypedDict,
|
|
30
69
|
ChatGenerationParamsResponseFormatPython,
|
|
@@ -36,9 +75,18 @@ if TYPE_CHECKING:
|
|
|
36
75
|
ChatGenerationParamsStop,
|
|
37
76
|
ChatGenerationParamsStopTypedDict,
|
|
38
77
|
ChatGenerationParamsTypedDict,
|
|
78
|
+
Debug,
|
|
79
|
+
DebugTypedDict,
|
|
39
80
|
Effort,
|
|
81
|
+
Engine,
|
|
82
|
+
Modality,
|
|
83
|
+
Pdf,
|
|
84
|
+
PdfEngine,
|
|
85
|
+
PdfTypedDict,
|
|
86
|
+
Quantizations,
|
|
40
87
|
Reasoning,
|
|
41
88
|
ReasoningTypedDict,
|
|
89
|
+
Route,
|
|
42
90
|
)
|
|
43
91
|
from .chatgenerationtokenusage import (
|
|
44
92
|
ChatGenerationTokenUsage,
|
|
@@ -54,11 +102,15 @@ if TYPE_CHECKING:
|
|
|
54
102
|
)
|
|
55
103
|
from .chatmessagecontentitemaudio import (
|
|
56
104
|
ChatMessageContentItemAudio,
|
|
57
|
-
ChatMessageContentItemAudioFormat,
|
|
58
105
|
ChatMessageContentItemAudioInputAudio,
|
|
59
106
|
ChatMessageContentItemAudioInputAudioTypedDict,
|
|
60
107
|
ChatMessageContentItemAudioTypedDict,
|
|
61
108
|
)
|
|
109
|
+
from .chatmessagecontentitemcachecontrol import (
|
|
110
|
+
ChatMessageContentItemCacheControl,
|
|
111
|
+
ChatMessageContentItemCacheControlTypedDict,
|
|
112
|
+
TTL,
|
|
113
|
+
)
|
|
62
114
|
from .chatmessagecontentitemimage import (
|
|
63
115
|
ChatMessageContentItemImage,
|
|
64
116
|
ChatMessageContentItemImageDetail,
|
|
@@ -72,15 +124,21 @@ if TYPE_CHECKING:
|
|
|
72
124
|
)
|
|
73
125
|
from .chatmessagecontentitemvideo import (
|
|
74
126
|
ChatMessageContentItemVideo,
|
|
127
|
+
ChatMessageContentItemVideoInputVideo,
|
|
128
|
+
ChatMessageContentItemVideoInputVideoTypedDict,
|
|
75
129
|
ChatMessageContentItemVideoTypedDict,
|
|
76
|
-
|
|
77
|
-
|
|
130
|
+
ChatMessageContentItemVideoVideoURL,
|
|
131
|
+
ChatMessageContentItemVideoVideoURLTypedDict,
|
|
132
|
+
VideoURL1,
|
|
133
|
+
VideoURL1TypedDict,
|
|
134
|
+
VideoURL2,
|
|
135
|
+
VideoURL2TypedDict,
|
|
78
136
|
)
|
|
79
137
|
from .chatmessagetokenlogprob import (
|
|
80
138
|
ChatMessageTokenLogprob,
|
|
139
|
+
ChatMessageTokenLogprobTopLogprob,
|
|
140
|
+
ChatMessageTokenLogprobTopLogprobTypedDict,
|
|
81
141
|
ChatMessageTokenLogprobTypedDict,
|
|
82
|
-
TopLogprob,
|
|
83
|
-
TopLogprobTypedDict,
|
|
84
142
|
)
|
|
85
143
|
from .chatmessagetokenlogprobs import (
|
|
86
144
|
ChatMessageTokenLogprobs,
|
|
@@ -146,6 +204,7 @@ if TYPE_CHECKING:
|
|
|
146
204
|
CreateChargeRequest,
|
|
147
205
|
CreateChargeRequestTypedDict,
|
|
148
206
|
)
|
|
207
|
+
from .datacollection import DataCollection
|
|
149
208
|
from .defaultparameters import DefaultParameters, DefaultParametersTypedDict
|
|
150
209
|
from .edgenetworktimeoutresponseerrordata import (
|
|
151
210
|
EdgeNetworkTimeoutResponseErrorData,
|
|
@@ -287,17 +346,21 @@ if TYPE_CHECKING:
|
|
|
287
346
|
from .openairesponsestruncation import OpenAIResponsesTruncation
|
|
288
347
|
from .openresponseseasyinputmessage import (
|
|
289
348
|
OpenResponsesEasyInputMessage,
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
349
|
+
OpenResponsesEasyInputMessageContentInputImage,
|
|
350
|
+
OpenResponsesEasyInputMessageContentInputImageTypedDict,
|
|
351
|
+
OpenResponsesEasyInputMessageContentType,
|
|
352
|
+
OpenResponsesEasyInputMessageContentUnion1,
|
|
353
|
+
OpenResponsesEasyInputMessageContentUnion1TypedDict,
|
|
354
|
+
OpenResponsesEasyInputMessageContentUnion2,
|
|
355
|
+
OpenResponsesEasyInputMessageContentUnion2TypedDict,
|
|
356
|
+
OpenResponsesEasyInputMessageDetail,
|
|
294
357
|
OpenResponsesEasyInputMessageRoleAssistant,
|
|
295
358
|
OpenResponsesEasyInputMessageRoleDeveloper,
|
|
296
359
|
OpenResponsesEasyInputMessageRoleSystem,
|
|
297
360
|
OpenResponsesEasyInputMessageRoleUnion,
|
|
298
361
|
OpenResponsesEasyInputMessageRoleUnionTypedDict,
|
|
299
362
|
OpenResponsesEasyInputMessageRoleUser,
|
|
300
|
-
|
|
363
|
+
OpenResponsesEasyInputMessageTypeMessage,
|
|
301
364
|
OpenResponsesEasyInputMessageTypedDict,
|
|
302
365
|
)
|
|
303
366
|
from .openresponseserrorevent import (
|
|
@@ -343,14 +406,18 @@ if TYPE_CHECKING:
|
|
|
343
406
|
)
|
|
344
407
|
from .openresponsesinputmessageitem import (
|
|
345
408
|
OpenResponsesInputMessageItem,
|
|
346
|
-
|
|
347
|
-
|
|
409
|
+
OpenResponsesInputMessageItemContentInputImage,
|
|
410
|
+
OpenResponsesInputMessageItemContentInputImageTypedDict,
|
|
411
|
+
OpenResponsesInputMessageItemContentType,
|
|
412
|
+
OpenResponsesInputMessageItemContentUnion,
|
|
413
|
+
OpenResponsesInputMessageItemContentUnionTypedDict,
|
|
414
|
+
OpenResponsesInputMessageItemDetail,
|
|
348
415
|
OpenResponsesInputMessageItemRoleDeveloper,
|
|
349
416
|
OpenResponsesInputMessageItemRoleSystem,
|
|
350
417
|
OpenResponsesInputMessageItemRoleUnion,
|
|
351
418
|
OpenResponsesInputMessageItemRoleUnionTypedDict,
|
|
352
419
|
OpenResponsesInputMessageItemRoleUser,
|
|
353
|
-
|
|
420
|
+
OpenResponsesInputMessageItemTypeMessage,
|
|
354
421
|
OpenResponsesInputMessageItemTypedDict,
|
|
355
422
|
)
|
|
356
423
|
from .openresponseslogprobs import (
|
|
@@ -408,41 +475,45 @@ if TYPE_CHECKING:
|
|
|
408
475
|
OpenResponsesReasoningSummaryTextDoneEventTypedDict,
|
|
409
476
|
)
|
|
410
477
|
from .openresponsesrequest import (
|
|
411
|
-
|
|
412
|
-
Engine,
|
|
478
|
+
IDAutoRouter,
|
|
413
479
|
IDFileParser,
|
|
414
480
|
IDModeration,
|
|
481
|
+
IDResponseHealing,
|
|
415
482
|
IDWeb,
|
|
416
|
-
Ignore,
|
|
417
|
-
IgnoreTypedDict,
|
|
418
|
-
MaxPrice,
|
|
419
|
-
MaxPriceTypedDict,
|
|
420
|
-
Only,
|
|
421
|
-
OnlyTypedDict,
|
|
422
483
|
OpenResponsesRequest,
|
|
484
|
+
OpenResponsesRequestIgnore,
|
|
485
|
+
OpenResponsesRequestIgnoreTypedDict,
|
|
486
|
+
OpenResponsesRequestImageConfig,
|
|
487
|
+
OpenResponsesRequestImageConfigTypedDict,
|
|
488
|
+
OpenResponsesRequestMaxPrice,
|
|
489
|
+
OpenResponsesRequestMaxPriceTypedDict,
|
|
490
|
+
OpenResponsesRequestOnly,
|
|
491
|
+
OpenResponsesRequestOnlyTypedDict,
|
|
492
|
+
OpenResponsesRequestOrder,
|
|
493
|
+
OpenResponsesRequestOrderTypedDict,
|
|
494
|
+
OpenResponsesRequestPluginAutoRouter,
|
|
495
|
+
OpenResponsesRequestPluginAutoRouterTypedDict,
|
|
496
|
+
OpenResponsesRequestPluginFileParser,
|
|
497
|
+
OpenResponsesRequestPluginFileParserTypedDict,
|
|
498
|
+
OpenResponsesRequestPluginModeration,
|
|
499
|
+
OpenResponsesRequestPluginModerationTypedDict,
|
|
500
|
+
OpenResponsesRequestPluginResponseHealing,
|
|
501
|
+
OpenResponsesRequestPluginResponseHealingTypedDict,
|
|
502
|
+
OpenResponsesRequestPluginUnion,
|
|
503
|
+
OpenResponsesRequestPluginUnionTypedDict,
|
|
504
|
+
OpenResponsesRequestPluginWeb,
|
|
505
|
+
OpenResponsesRequestPluginWebTypedDict,
|
|
506
|
+
OpenResponsesRequestProvider,
|
|
507
|
+
OpenResponsesRequestProviderTypedDict,
|
|
508
|
+
OpenResponsesRequestSort,
|
|
509
|
+
OpenResponsesRequestSortTypedDict,
|
|
423
510
|
OpenResponsesRequestToolFunction,
|
|
424
511
|
OpenResponsesRequestToolFunctionTypedDict,
|
|
425
512
|
OpenResponsesRequestToolUnion,
|
|
426
513
|
OpenResponsesRequestToolUnionTypedDict,
|
|
427
514
|
OpenResponsesRequestType,
|
|
428
515
|
OpenResponsesRequestTypedDict,
|
|
429
|
-
Order,
|
|
430
|
-
OrderTypedDict,
|
|
431
|
-
Pdf,
|
|
432
|
-
PdfEngine,
|
|
433
|
-
PdfTypedDict,
|
|
434
|
-
Plugin,
|
|
435
|
-
PluginFileParser,
|
|
436
|
-
PluginFileParserTypedDict,
|
|
437
|
-
PluginModeration,
|
|
438
|
-
PluginModerationTypedDict,
|
|
439
|
-
PluginTypedDict,
|
|
440
|
-
PluginWeb,
|
|
441
|
-
PluginWebTypedDict,
|
|
442
|
-
Provider,
|
|
443
|
-
ProviderTypedDict,
|
|
444
516
|
ServiceTier,
|
|
445
|
-
Sort,
|
|
446
517
|
Truncation,
|
|
447
518
|
)
|
|
448
519
|
from .openresponsesresponsetext import (
|
|
@@ -575,12 +646,57 @@ if TYPE_CHECKING:
|
|
|
575
646
|
PaymentRequiredResponseErrorData,
|
|
576
647
|
PaymentRequiredResponseErrorDataTypedDict,
|
|
577
648
|
)
|
|
649
|
+
from .pdfparserengine import PDFParserEngine
|
|
650
|
+
from .pdfparseroptions import PDFParserOptions, PDFParserOptionsTypedDict
|
|
651
|
+
from .percentilelatencycutoffs import (
|
|
652
|
+
PercentileLatencyCutoffs,
|
|
653
|
+
PercentileLatencyCutoffsTypedDict,
|
|
654
|
+
)
|
|
655
|
+
from .percentilestats import PercentileStats, PercentileStatsTypedDict
|
|
656
|
+
from .percentilethroughputcutoffs import (
|
|
657
|
+
PercentileThroughputCutoffs,
|
|
658
|
+
PercentileThroughputCutoffsTypedDict,
|
|
659
|
+
)
|
|
578
660
|
from .perrequestlimits import PerRequestLimits, PerRequestLimitsTypedDict
|
|
661
|
+
from .preferredmaxlatency import PreferredMaxLatency, PreferredMaxLatencyTypedDict
|
|
662
|
+
from .preferredminthroughput import (
|
|
663
|
+
PreferredMinThroughput,
|
|
664
|
+
PreferredMinThroughputTypedDict,
|
|
665
|
+
)
|
|
579
666
|
from .providername import ProviderName
|
|
580
667
|
from .provideroverloadedresponseerrordata import (
|
|
581
668
|
ProviderOverloadedResponseErrorData,
|
|
582
669
|
ProviderOverloadedResponseErrorDataTypedDict,
|
|
583
670
|
)
|
|
671
|
+
from .providerpreferences import (
|
|
672
|
+
ProviderPreferences,
|
|
673
|
+
ProviderPreferencesIgnore,
|
|
674
|
+
ProviderPreferencesIgnoreTypedDict,
|
|
675
|
+
ProviderPreferencesMaxPrice,
|
|
676
|
+
ProviderPreferencesMaxPriceTypedDict,
|
|
677
|
+
ProviderPreferencesOnly,
|
|
678
|
+
ProviderPreferencesOnlyTypedDict,
|
|
679
|
+
ProviderPreferencesOrder,
|
|
680
|
+
ProviderPreferencesOrderTypedDict,
|
|
681
|
+
ProviderPreferencesPartition,
|
|
682
|
+
ProviderPreferencesProviderSort,
|
|
683
|
+
ProviderPreferencesProviderSortConfig,
|
|
684
|
+
ProviderPreferencesProviderSortConfigTypedDict,
|
|
685
|
+
ProviderPreferencesSortUnion,
|
|
686
|
+
ProviderPreferencesSortUnionTypedDict,
|
|
687
|
+
ProviderPreferencesTypedDict,
|
|
688
|
+
ProviderSortConfigEnum,
|
|
689
|
+
ProviderSortConfigUnion,
|
|
690
|
+
ProviderSortConfigUnionTypedDict,
|
|
691
|
+
SortEnum,
|
|
692
|
+
)
|
|
693
|
+
from .providersort import ProviderSort
|
|
694
|
+
from .providersortconfig import (
|
|
695
|
+
Partition,
|
|
696
|
+
ProviderSortConfig,
|
|
697
|
+
ProviderSortConfigTypedDict,
|
|
698
|
+
)
|
|
699
|
+
from .providersortunion import ProviderSortUnion, ProviderSortUnionTypedDict
|
|
584
700
|
from .publicendpoint import (
|
|
585
701
|
Pricing,
|
|
586
702
|
PricingTypedDict,
|
|
@@ -641,8 +757,17 @@ if TYPE_CHECKING:
|
|
|
641
757
|
ResponseInputTextType,
|
|
642
758
|
ResponseInputTextTypedDict,
|
|
643
759
|
)
|
|
760
|
+
from .responseinputvideo import (
|
|
761
|
+
ResponseInputVideo,
|
|
762
|
+
ResponseInputVideoType,
|
|
763
|
+
ResponseInputVideoTypedDict,
|
|
764
|
+
)
|
|
644
765
|
from .responseoutputtext import (
|
|
766
|
+
Logprob,
|
|
767
|
+
LogprobTypedDict,
|
|
645
768
|
ResponseOutputText,
|
|
769
|
+
ResponseOutputTextTopLogprob,
|
|
770
|
+
ResponseOutputTextTopLogprobTypedDict,
|
|
646
771
|
ResponseOutputTextType,
|
|
647
772
|
ResponseOutputTextTypedDict,
|
|
648
773
|
)
|
|
@@ -689,6 +814,7 @@ if TYPE_CHECKING:
|
|
|
689
814
|
)
|
|
690
815
|
from .responsesoutputitemreasoning import (
|
|
691
816
|
ResponsesOutputItemReasoning,
|
|
817
|
+
ResponsesOutputItemReasoningFormat,
|
|
692
818
|
ResponsesOutputItemReasoningStatusCompleted,
|
|
693
819
|
ResponsesOutputItemReasoningStatusInProgress,
|
|
694
820
|
ResponsesOutputItemReasoningStatusIncomplete,
|
|
@@ -710,6 +836,7 @@ if TYPE_CHECKING:
|
|
|
710
836
|
ResponsesOutputMessageType,
|
|
711
837
|
ResponsesOutputMessageTypedDict,
|
|
712
838
|
)
|
|
839
|
+
from .responsesoutputmodality import ResponsesOutputModality
|
|
713
840
|
from .responsessearchcontextsize import ResponsesSearchContextSize
|
|
714
841
|
from .responseswebsearchcalloutput import (
|
|
715
842
|
ResponsesWebSearchCallOutput,
|
|
@@ -770,6 +897,7 @@ if TYPE_CHECKING:
|
|
|
770
897
|
UserMessageContentTypedDict,
|
|
771
898
|
UserMessageTypedDict,
|
|
772
899
|
)
|
|
900
|
+
from .websearchengine import WebSearchEngine
|
|
773
901
|
from .websearchpreviewtooluserlocation import (
|
|
774
902
|
WebSearchPreviewToolUserLocation,
|
|
775
903
|
WebSearchPreviewToolUserLocationType,
|
|
@@ -795,6 +923,33 @@ __all__ = [
|
|
|
795
923
|
"ChatErrorError",
|
|
796
924
|
"ChatErrorErrorTypedDict",
|
|
797
925
|
"ChatGenerationParams",
|
|
926
|
+
"ChatGenerationParamsDataCollection",
|
|
927
|
+
"ChatGenerationParamsImageConfig",
|
|
928
|
+
"ChatGenerationParamsImageConfigTypedDict",
|
|
929
|
+
"ChatGenerationParamsMaxPrice",
|
|
930
|
+
"ChatGenerationParamsMaxPriceTypedDict",
|
|
931
|
+
"ChatGenerationParamsPluginAutoRouter",
|
|
932
|
+
"ChatGenerationParamsPluginAutoRouterTypedDict",
|
|
933
|
+
"ChatGenerationParamsPluginFileParser",
|
|
934
|
+
"ChatGenerationParamsPluginFileParserTypedDict",
|
|
935
|
+
"ChatGenerationParamsPluginModeration",
|
|
936
|
+
"ChatGenerationParamsPluginModerationTypedDict",
|
|
937
|
+
"ChatGenerationParamsPluginResponseHealing",
|
|
938
|
+
"ChatGenerationParamsPluginResponseHealingTypedDict",
|
|
939
|
+
"ChatGenerationParamsPluginUnion",
|
|
940
|
+
"ChatGenerationParamsPluginUnionTypedDict",
|
|
941
|
+
"ChatGenerationParamsPluginWeb",
|
|
942
|
+
"ChatGenerationParamsPluginWebTypedDict",
|
|
943
|
+
"ChatGenerationParamsPreferredMaxLatency",
|
|
944
|
+
"ChatGenerationParamsPreferredMaxLatencyTypedDict",
|
|
945
|
+
"ChatGenerationParamsPreferredMaxLatencyUnion",
|
|
946
|
+
"ChatGenerationParamsPreferredMaxLatencyUnionTypedDict",
|
|
947
|
+
"ChatGenerationParamsPreferredMinThroughput",
|
|
948
|
+
"ChatGenerationParamsPreferredMinThroughputTypedDict",
|
|
949
|
+
"ChatGenerationParamsPreferredMinThroughputUnion",
|
|
950
|
+
"ChatGenerationParamsPreferredMinThroughputUnionTypedDict",
|
|
951
|
+
"ChatGenerationParamsProvider",
|
|
952
|
+
"ChatGenerationParamsProviderTypedDict",
|
|
798
953
|
"ChatGenerationParamsResponseFormatJSONObject",
|
|
799
954
|
"ChatGenerationParamsResponseFormatJSONObjectTypedDict",
|
|
800
955
|
"ChatGenerationParamsResponseFormatPython",
|
|
@@ -810,10 +965,11 @@ __all__ = [
|
|
|
810
965
|
"ChatGenerationTokenUsageTypedDict",
|
|
811
966
|
"ChatMessageContentItem",
|
|
812
967
|
"ChatMessageContentItemAudio",
|
|
813
|
-
"ChatMessageContentItemAudioFormat",
|
|
814
968
|
"ChatMessageContentItemAudioInputAudio",
|
|
815
969
|
"ChatMessageContentItemAudioInputAudioTypedDict",
|
|
816
970
|
"ChatMessageContentItemAudioTypedDict",
|
|
971
|
+
"ChatMessageContentItemCacheControl",
|
|
972
|
+
"ChatMessageContentItemCacheControlTypedDict",
|
|
817
973
|
"ChatMessageContentItemImage",
|
|
818
974
|
"ChatMessageContentItemImageDetail",
|
|
819
975
|
"ChatMessageContentItemImageTypedDict",
|
|
@@ -821,8 +977,14 @@ __all__ = [
|
|
|
821
977
|
"ChatMessageContentItemTextTypedDict",
|
|
822
978
|
"ChatMessageContentItemTypedDict",
|
|
823
979
|
"ChatMessageContentItemVideo",
|
|
980
|
+
"ChatMessageContentItemVideoInputVideo",
|
|
981
|
+
"ChatMessageContentItemVideoInputVideoTypedDict",
|
|
824
982
|
"ChatMessageContentItemVideoTypedDict",
|
|
983
|
+
"ChatMessageContentItemVideoVideoURL",
|
|
984
|
+
"ChatMessageContentItemVideoVideoURLTypedDict",
|
|
825
985
|
"ChatMessageTokenLogprob",
|
|
986
|
+
"ChatMessageTokenLogprobTopLogprob",
|
|
987
|
+
"ChatMessageTokenLogprobTopLogprobTypedDict",
|
|
826
988
|
"ChatMessageTokenLogprobTypedDict",
|
|
827
989
|
"ChatMessageTokenLogprobs",
|
|
828
990
|
"ChatMessageTokenLogprobsTypedDict",
|
|
@@ -882,6 +1044,8 @@ __all__ = [
|
|
|
882
1044
|
"CreateChargeRequest",
|
|
883
1045
|
"CreateChargeRequestTypedDict",
|
|
884
1046
|
"DataCollection",
|
|
1047
|
+
"Debug",
|
|
1048
|
+
"DebugTypedDict",
|
|
885
1049
|
"DefaultParameters",
|
|
886
1050
|
"DefaultParametersTypedDict",
|
|
887
1051
|
"EdgeNetworkTimeoutResponseErrorData",
|
|
@@ -897,11 +1061,11 @@ __all__ = [
|
|
|
897
1061
|
"FilePathTypedDict",
|
|
898
1062
|
"ForbiddenResponseErrorData",
|
|
899
1063
|
"ForbiddenResponseErrorDataTypedDict",
|
|
1064
|
+
"IDAutoRouter",
|
|
900
1065
|
"IDFileParser",
|
|
901
1066
|
"IDModeration",
|
|
1067
|
+
"IDResponseHealing",
|
|
902
1068
|
"IDWeb",
|
|
903
|
-
"Ignore",
|
|
904
|
-
"IgnoreTypedDict",
|
|
905
1069
|
"ImageGenerationStatus",
|
|
906
1070
|
"ImageURL",
|
|
907
1071
|
"ImageURLTypedDict",
|
|
@@ -915,14 +1079,15 @@ __all__ = [
|
|
|
915
1079
|
"JSONSchemaConfigTypedDict",
|
|
916
1080
|
"ListEndpointsResponse",
|
|
917
1081
|
"ListEndpointsResponseTypedDict",
|
|
918
|
-
"
|
|
919
|
-
"
|
|
1082
|
+
"Logprob",
|
|
1083
|
+
"LogprobTypedDict",
|
|
920
1084
|
"Message",
|
|
921
1085
|
"MessageContent",
|
|
922
1086
|
"MessageContentTypedDict",
|
|
923
1087
|
"MessageDeveloper",
|
|
924
1088
|
"MessageDeveloperTypedDict",
|
|
925
1089
|
"MessageTypedDict",
|
|
1090
|
+
"Modality",
|
|
926
1091
|
"Model",
|
|
927
1092
|
"ModelArchitecture",
|
|
928
1093
|
"ModelArchitectureInstructType",
|
|
@@ -942,8 +1107,6 @@ __all__ = [
|
|
|
942
1107
|
"NotFoundResponseErrorData",
|
|
943
1108
|
"NotFoundResponseErrorDataTypedDict",
|
|
944
1109
|
"Object",
|
|
945
|
-
"Only",
|
|
946
|
-
"OnlyTypedDict",
|
|
947
1110
|
"OpenAIResponsesAnnotation",
|
|
948
1111
|
"OpenAIResponsesAnnotationTypedDict",
|
|
949
1112
|
"OpenAIResponsesIncludable",
|
|
@@ -1006,17 +1169,21 @@ __all__ = [
|
|
|
1006
1169
|
"OpenAIResponsesToolChoiceUnionTypedDict",
|
|
1007
1170
|
"OpenAIResponsesTruncation",
|
|
1008
1171
|
"OpenResponsesEasyInputMessage",
|
|
1009
|
-
"
|
|
1010
|
-
"
|
|
1011
|
-
"
|
|
1012
|
-
"
|
|
1172
|
+
"OpenResponsesEasyInputMessageContentInputImage",
|
|
1173
|
+
"OpenResponsesEasyInputMessageContentInputImageTypedDict",
|
|
1174
|
+
"OpenResponsesEasyInputMessageContentType",
|
|
1175
|
+
"OpenResponsesEasyInputMessageContentUnion1",
|
|
1176
|
+
"OpenResponsesEasyInputMessageContentUnion1TypedDict",
|
|
1177
|
+
"OpenResponsesEasyInputMessageContentUnion2",
|
|
1178
|
+
"OpenResponsesEasyInputMessageContentUnion2TypedDict",
|
|
1179
|
+
"OpenResponsesEasyInputMessageDetail",
|
|
1013
1180
|
"OpenResponsesEasyInputMessageRoleAssistant",
|
|
1014
1181
|
"OpenResponsesEasyInputMessageRoleDeveloper",
|
|
1015
1182
|
"OpenResponsesEasyInputMessageRoleSystem",
|
|
1016
1183
|
"OpenResponsesEasyInputMessageRoleUnion",
|
|
1017
1184
|
"OpenResponsesEasyInputMessageRoleUnionTypedDict",
|
|
1018
1185
|
"OpenResponsesEasyInputMessageRoleUser",
|
|
1019
|
-
"
|
|
1186
|
+
"OpenResponsesEasyInputMessageTypeMessage",
|
|
1020
1187
|
"OpenResponsesEasyInputMessageTypedDict",
|
|
1021
1188
|
"OpenResponsesErrorEvent",
|
|
1022
1189
|
"OpenResponsesErrorEventType",
|
|
@@ -1043,14 +1210,18 @@ __all__ = [
|
|
|
1043
1210
|
"OpenResponsesInput1",
|
|
1044
1211
|
"OpenResponsesInput1TypedDict",
|
|
1045
1212
|
"OpenResponsesInputMessageItem",
|
|
1046
|
-
"
|
|
1047
|
-
"
|
|
1213
|
+
"OpenResponsesInputMessageItemContentInputImage",
|
|
1214
|
+
"OpenResponsesInputMessageItemContentInputImageTypedDict",
|
|
1215
|
+
"OpenResponsesInputMessageItemContentType",
|
|
1216
|
+
"OpenResponsesInputMessageItemContentUnion",
|
|
1217
|
+
"OpenResponsesInputMessageItemContentUnionTypedDict",
|
|
1218
|
+
"OpenResponsesInputMessageItemDetail",
|
|
1048
1219
|
"OpenResponsesInputMessageItemRoleDeveloper",
|
|
1049
1220
|
"OpenResponsesInputMessageItemRoleSystem",
|
|
1050
1221
|
"OpenResponsesInputMessageItemRoleUnion",
|
|
1051
1222
|
"OpenResponsesInputMessageItemRoleUnionTypedDict",
|
|
1052
1223
|
"OpenResponsesInputMessageItemRoleUser",
|
|
1053
|
-
"
|
|
1224
|
+
"OpenResponsesInputMessageItemTypeMessage",
|
|
1054
1225
|
"OpenResponsesInputMessageItemTypedDict",
|
|
1055
1226
|
"OpenResponsesInputTypedDict",
|
|
1056
1227
|
"OpenResponsesLogProbs",
|
|
@@ -1089,6 +1260,32 @@ __all__ = [
|
|
|
1089
1260
|
"OpenResponsesReasoningType",
|
|
1090
1261
|
"OpenResponsesReasoningTypedDict",
|
|
1091
1262
|
"OpenResponsesRequest",
|
|
1263
|
+
"OpenResponsesRequestIgnore",
|
|
1264
|
+
"OpenResponsesRequestIgnoreTypedDict",
|
|
1265
|
+
"OpenResponsesRequestImageConfig",
|
|
1266
|
+
"OpenResponsesRequestImageConfigTypedDict",
|
|
1267
|
+
"OpenResponsesRequestMaxPrice",
|
|
1268
|
+
"OpenResponsesRequestMaxPriceTypedDict",
|
|
1269
|
+
"OpenResponsesRequestOnly",
|
|
1270
|
+
"OpenResponsesRequestOnlyTypedDict",
|
|
1271
|
+
"OpenResponsesRequestOrder",
|
|
1272
|
+
"OpenResponsesRequestOrderTypedDict",
|
|
1273
|
+
"OpenResponsesRequestPluginAutoRouter",
|
|
1274
|
+
"OpenResponsesRequestPluginAutoRouterTypedDict",
|
|
1275
|
+
"OpenResponsesRequestPluginFileParser",
|
|
1276
|
+
"OpenResponsesRequestPluginFileParserTypedDict",
|
|
1277
|
+
"OpenResponsesRequestPluginModeration",
|
|
1278
|
+
"OpenResponsesRequestPluginModerationTypedDict",
|
|
1279
|
+
"OpenResponsesRequestPluginResponseHealing",
|
|
1280
|
+
"OpenResponsesRequestPluginResponseHealingTypedDict",
|
|
1281
|
+
"OpenResponsesRequestPluginUnion",
|
|
1282
|
+
"OpenResponsesRequestPluginUnionTypedDict",
|
|
1283
|
+
"OpenResponsesRequestPluginWeb",
|
|
1284
|
+
"OpenResponsesRequestPluginWebTypedDict",
|
|
1285
|
+
"OpenResponsesRequestProvider",
|
|
1286
|
+
"OpenResponsesRequestProviderTypedDict",
|
|
1287
|
+
"OpenResponsesRequestSort",
|
|
1288
|
+
"OpenResponsesRequestSortTypedDict",
|
|
1092
1289
|
"OpenResponsesRequestToolFunction",
|
|
1093
1290
|
"OpenResponsesRequestToolFunctionTypedDict",
|
|
1094
1291
|
"OpenResponsesRequestToolUnion",
|
|
@@ -1154,8 +1351,6 @@ __all__ = [
|
|
|
1154
1351
|
"OpenResponsesWebSearchToolFiltersTypedDict",
|
|
1155
1352
|
"OpenResponsesWebSearchToolType",
|
|
1156
1353
|
"OpenResponsesWebSearchToolTypedDict",
|
|
1157
|
-
"Order",
|
|
1158
|
-
"OrderTypedDict",
|
|
1159
1354
|
"OutputItemImageGenerationCall",
|
|
1160
1355
|
"OutputItemImageGenerationCallType",
|
|
1161
1356
|
"OutputItemImageGenerationCallTypedDict",
|
|
@@ -1173,11 +1368,15 @@ __all__ = [
|
|
|
1173
1368
|
"OutputModality",
|
|
1174
1369
|
"OutputTokensDetails",
|
|
1175
1370
|
"OutputTokensDetailsTypedDict",
|
|
1371
|
+
"PDFParserEngine",
|
|
1372
|
+
"PDFParserOptions",
|
|
1373
|
+
"PDFParserOptionsTypedDict",
|
|
1176
1374
|
"Parameter",
|
|
1177
1375
|
"Part1",
|
|
1178
1376
|
"Part1TypedDict",
|
|
1179
1377
|
"Part2",
|
|
1180
1378
|
"Part2TypedDict",
|
|
1379
|
+
"Partition",
|
|
1181
1380
|
"PayloadTooLargeResponseErrorData",
|
|
1182
1381
|
"PayloadTooLargeResponseErrorDataTypedDict",
|
|
1183
1382
|
"PaymentRequiredResponseErrorData",
|
|
@@ -1187,31 +1386,56 @@ __all__ = [
|
|
|
1187
1386
|
"PdfTypedDict",
|
|
1188
1387
|
"PerRequestLimits",
|
|
1189
1388
|
"PerRequestLimitsTypedDict",
|
|
1190
|
-
"
|
|
1191
|
-
"
|
|
1192
|
-
"
|
|
1193
|
-
"
|
|
1194
|
-
"
|
|
1195
|
-
"
|
|
1196
|
-
"
|
|
1197
|
-
"
|
|
1389
|
+
"PercentileLatencyCutoffs",
|
|
1390
|
+
"PercentileLatencyCutoffsTypedDict",
|
|
1391
|
+
"PercentileStats",
|
|
1392
|
+
"PercentileStatsTypedDict",
|
|
1393
|
+
"PercentileThroughputCutoffs",
|
|
1394
|
+
"PercentileThroughputCutoffsTypedDict",
|
|
1395
|
+
"PreferredMaxLatency",
|
|
1396
|
+
"PreferredMaxLatencyTypedDict",
|
|
1397
|
+
"PreferredMinThroughput",
|
|
1398
|
+
"PreferredMinThroughputTypedDict",
|
|
1198
1399
|
"Pricing",
|
|
1199
1400
|
"PricingTypedDict",
|
|
1200
1401
|
"Prompt",
|
|
1201
1402
|
"PromptTokensDetails",
|
|
1202
1403
|
"PromptTokensDetailsTypedDict",
|
|
1203
1404
|
"PromptTypedDict",
|
|
1204
|
-
"Provider",
|
|
1205
1405
|
"ProviderName",
|
|
1206
1406
|
"ProviderOverloadedResponseErrorData",
|
|
1207
1407
|
"ProviderOverloadedResponseErrorDataTypedDict",
|
|
1208
|
-
"
|
|
1408
|
+
"ProviderPreferences",
|
|
1409
|
+
"ProviderPreferencesIgnore",
|
|
1410
|
+
"ProviderPreferencesIgnoreTypedDict",
|
|
1411
|
+
"ProviderPreferencesMaxPrice",
|
|
1412
|
+
"ProviderPreferencesMaxPriceTypedDict",
|
|
1413
|
+
"ProviderPreferencesOnly",
|
|
1414
|
+
"ProviderPreferencesOnlyTypedDict",
|
|
1415
|
+
"ProviderPreferencesOrder",
|
|
1416
|
+
"ProviderPreferencesOrderTypedDict",
|
|
1417
|
+
"ProviderPreferencesPartition",
|
|
1418
|
+
"ProviderPreferencesProviderSort",
|
|
1419
|
+
"ProviderPreferencesProviderSortConfig",
|
|
1420
|
+
"ProviderPreferencesProviderSortConfigTypedDict",
|
|
1421
|
+
"ProviderPreferencesSortUnion",
|
|
1422
|
+
"ProviderPreferencesSortUnionTypedDict",
|
|
1423
|
+
"ProviderPreferencesTypedDict",
|
|
1424
|
+
"ProviderSort",
|
|
1425
|
+
"ProviderSortConfig",
|
|
1426
|
+
"ProviderSortConfigEnum",
|
|
1427
|
+
"ProviderSortConfigTypedDict",
|
|
1428
|
+
"ProviderSortConfigUnion",
|
|
1429
|
+
"ProviderSortConfigUnionTypedDict",
|
|
1430
|
+
"ProviderSortUnion",
|
|
1431
|
+
"ProviderSortUnionTypedDict",
|
|
1209
1432
|
"PublicEndpoint",
|
|
1210
1433
|
"PublicEndpointQuantization",
|
|
1211
1434
|
"PublicEndpointTypedDict",
|
|
1212
1435
|
"PublicPricing",
|
|
1213
1436
|
"PublicPricingTypedDict",
|
|
1214
1437
|
"Quantization",
|
|
1438
|
+
"Quantizations",
|
|
1215
1439
|
"Reason",
|
|
1216
1440
|
"Reasoning",
|
|
1217
1441
|
"ReasoningSummaryText",
|
|
@@ -1246,7 +1470,12 @@ __all__ = [
|
|
|
1246
1470
|
"ResponseInputText",
|
|
1247
1471
|
"ResponseInputTextType",
|
|
1248
1472
|
"ResponseInputTextTypedDict",
|
|
1473
|
+
"ResponseInputVideo",
|
|
1474
|
+
"ResponseInputVideoType",
|
|
1475
|
+
"ResponseInputVideoTypedDict",
|
|
1249
1476
|
"ResponseOutputText",
|
|
1477
|
+
"ResponseOutputTextTopLogprob",
|
|
1478
|
+
"ResponseOutputTextTopLogprobTypedDict",
|
|
1250
1479
|
"ResponseOutputTextType",
|
|
1251
1480
|
"ResponseOutputTextTypedDict",
|
|
1252
1481
|
"ResponseTextConfig",
|
|
@@ -1279,6 +1508,7 @@ __all__ = [
|
|
|
1279
1508
|
"ResponsesOutputItemFunctionCallType",
|
|
1280
1509
|
"ResponsesOutputItemFunctionCallTypedDict",
|
|
1281
1510
|
"ResponsesOutputItemReasoning",
|
|
1511
|
+
"ResponsesOutputItemReasoningFormat",
|
|
1282
1512
|
"ResponsesOutputItemReasoningStatusCompleted",
|
|
1283
1513
|
"ResponsesOutputItemReasoningStatusInProgress",
|
|
1284
1514
|
"ResponsesOutputItemReasoningStatusIncomplete",
|
|
@@ -1298,6 +1528,7 @@ __all__ = [
|
|
|
1298
1528
|
"ResponsesOutputMessageStatusUnionTypedDict",
|
|
1299
1529
|
"ResponsesOutputMessageType",
|
|
1300
1530
|
"ResponsesOutputMessageTypedDict",
|
|
1531
|
+
"ResponsesOutputModality",
|
|
1301
1532
|
"ResponsesSearchContextSize",
|
|
1302
1533
|
"ResponsesWebSearchCallOutput",
|
|
1303
1534
|
"ResponsesWebSearchCallOutputType",
|
|
@@ -1305,18 +1536,32 @@ __all__ = [
|
|
|
1305
1536
|
"ResponsesWebSearchUserLocation",
|
|
1306
1537
|
"ResponsesWebSearchUserLocationType",
|
|
1307
1538
|
"ResponsesWebSearchUserLocationTypedDict",
|
|
1539
|
+
"Route",
|
|
1540
|
+
"Schema0",
|
|
1541
|
+
"Schema0Enum",
|
|
1542
|
+
"Schema0TypedDict",
|
|
1543
|
+
"Schema3",
|
|
1544
|
+
"Schema3ReasoningEncrypted",
|
|
1545
|
+
"Schema3ReasoningEncryptedTypedDict",
|
|
1546
|
+
"Schema3ReasoningSummary",
|
|
1547
|
+
"Schema3ReasoningSummaryTypedDict",
|
|
1548
|
+
"Schema3ReasoningText",
|
|
1549
|
+
"Schema3ReasoningTextTypedDict",
|
|
1550
|
+
"Schema3TypedDict",
|
|
1551
|
+
"Schema5",
|
|
1308
1552
|
"Security",
|
|
1309
1553
|
"SecurityTypedDict",
|
|
1310
1554
|
"ServiceTier",
|
|
1311
1555
|
"ServiceUnavailableResponseErrorData",
|
|
1312
1556
|
"ServiceUnavailableResponseErrorDataTypedDict",
|
|
1313
|
-
"
|
|
1557
|
+
"SortEnum",
|
|
1314
1558
|
"StreamOptions",
|
|
1315
1559
|
"StreamOptionsTypedDict",
|
|
1316
1560
|
"SystemMessage",
|
|
1317
1561
|
"SystemMessageContent",
|
|
1318
1562
|
"SystemMessageContentTypedDict",
|
|
1319
1563
|
"SystemMessageTypedDict",
|
|
1564
|
+
"TTL",
|
|
1320
1565
|
"Tokenizer",
|
|
1321
1566
|
"TooManyRequestsResponseErrorData",
|
|
1322
1567
|
"TooManyRequestsResponseErrorDataTypedDict",
|
|
@@ -1329,8 +1574,6 @@ __all__ = [
|
|
|
1329
1574
|
"ToolResponseMessageContent",
|
|
1330
1575
|
"ToolResponseMessageContentTypedDict",
|
|
1331
1576
|
"ToolResponseMessageTypedDict",
|
|
1332
|
-
"TopLogprob",
|
|
1333
|
-
"TopLogprobTypedDict",
|
|
1334
1577
|
"TopProviderInfo",
|
|
1335
1578
|
"TopProviderInfoTypedDict",
|
|
1336
1579
|
"Truncation",
|
|
@@ -1366,8 +1609,11 @@ __all__ = [
|
|
|
1366
1609
|
"UserMessageTypedDict",
|
|
1367
1610
|
"Variables",
|
|
1368
1611
|
"VariablesTypedDict",
|
|
1369
|
-
"
|
|
1370
|
-
"
|
|
1612
|
+
"VideoURL1",
|
|
1613
|
+
"VideoURL1TypedDict",
|
|
1614
|
+
"VideoURL2",
|
|
1615
|
+
"VideoURL2TypedDict",
|
|
1616
|
+
"WebSearchEngine",
|
|
1371
1617
|
"WebSearchPreviewToolUserLocation",
|
|
1372
1618
|
"WebSearchPreviewToolUserLocationType",
|
|
1373
1619
|
"WebSearchPreviewToolUserLocationTypedDict",
|
|
@@ -1375,6 +1621,18 @@ __all__ = [
|
|
|
1375
1621
|
]
|
|
1376
1622
|
|
|
1377
1623
|
_dynamic_imports: dict[str, str] = {
|
|
1624
|
+
"Schema0": "._schema0",
|
|
1625
|
+
"Schema0Enum": "._schema0",
|
|
1626
|
+
"Schema0TypedDict": "._schema0",
|
|
1627
|
+
"Schema3": "._schema3",
|
|
1628
|
+
"Schema3ReasoningEncrypted": "._schema3",
|
|
1629
|
+
"Schema3ReasoningEncryptedTypedDict": "._schema3",
|
|
1630
|
+
"Schema3ReasoningSummary": "._schema3",
|
|
1631
|
+
"Schema3ReasoningSummaryTypedDict": "._schema3",
|
|
1632
|
+
"Schema3ReasoningText": "._schema3",
|
|
1633
|
+
"Schema3ReasoningTextTypedDict": "._schema3",
|
|
1634
|
+
"Schema3TypedDict": "._schema3",
|
|
1635
|
+
"Schema5": "._schema3",
|
|
1378
1636
|
"ActivityItem": ".activityitem",
|
|
1379
1637
|
"ActivityItemTypedDict": ".activityitem",
|
|
1380
1638
|
"AssistantMessage": ".assistantmessage",
|
|
@@ -1391,6 +1649,33 @@ _dynamic_imports: dict[str, str] = {
|
|
|
1391
1649
|
"Code": ".chaterror",
|
|
1392
1650
|
"CodeTypedDict": ".chaterror",
|
|
1393
1651
|
"ChatGenerationParams": ".chatgenerationparams",
|
|
1652
|
+
"ChatGenerationParamsDataCollection": ".chatgenerationparams",
|
|
1653
|
+
"ChatGenerationParamsImageConfig": ".chatgenerationparams",
|
|
1654
|
+
"ChatGenerationParamsImageConfigTypedDict": ".chatgenerationparams",
|
|
1655
|
+
"ChatGenerationParamsMaxPrice": ".chatgenerationparams",
|
|
1656
|
+
"ChatGenerationParamsMaxPriceTypedDict": ".chatgenerationparams",
|
|
1657
|
+
"ChatGenerationParamsPluginAutoRouter": ".chatgenerationparams",
|
|
1658
|
+
"ChatGenerationParamsPluginAutoRouterTypedDict": ".chatgenerationparams",
|
|
1659
|
+
"ChatGenerationParamsPluginFileParser": ".chatgenerationparams",
|
|
1660
|
+
"ChatGenerationParamsPluginFileParserTypedDict": ".chatgenerationparams",
|
|
1661
|
+
"ChatGenerationParamsPluginModeration": ".chatgenerationparams",
|
|
1662
|
+
"ChatGenerationParamsPluginModerationTypedDict": ".chatgenerationparams",
|
|
1663
|
+
"ChatGenerationParamsPluginResponseHealing": ".chatgenerationparams",
|
|
1664
|
+
"ChatGenerationParamsPluginResponseHealingTypedDict": ".chatgenerationparams",
|
|
1665
|
+
"ChatGenerationParamsPluginUnion": ".chatgenerationparams",
|
|
1666
|
+
"ChatGenerationParamsPluginUnionTypedDict": ".chatgenerationparams",
|
|
1667
|
+
"ChatGenerationParamsPluginWeb": ".chatgenerationparams",
|
|
1668
|
+
"ChatGenerationParamsPluginWebTypedDict": ".chatgenerationparams",
|
|
1669
|
+
"ChatGenerationParamsPreferredMaxLatency": ".chatgenerationparams",
|
|
1670
|
+
"ChatGenerationParamsPreferredMaxLatencyTypedDict": ".chatgenerationparams",
|
|
1671
|
+
"ChatGenerationParamsPreferredMaxLatencyUnion": ".chatgenerationparams",
|
|
1672
|
+
"ChatGenerationParamsPreferredMaxLatencyUnionTypedDict": ".chatgenerationparams",
|
|
1673
|
+
"ChatGenerationParamsPreferredMinThroughput": ".chatgenerationparams",
|
|
1674
|
+
"ChatGenerationParamsPreferredMinThroughputTypedDict": ".chatgenerationparams",
|
|
1675
|
+
"ChatGenerationParamsPreferredMinThroughputUnion": ".chatgenerationparams",
|
|
1676
|
+
"ChatGenerationParamsPreferredMinThroughputUnionTypedDict": ".chatgenerationparams",
|
|
1677
|
+
"ChatGenerationParamsProvider": ".chatgenerationparams",
|
|
1678
|
+
"ChatGenerationParamsProviderTypedDict": ".chatgenerationparams",
|
|
1394
1679
|
"ChatGenerationParamsResponseFormatJSONObject": ".chatgenerationparams",
|
|
1395
1680
|
"ChatGenerationParamsResponseFormatJSONObjectTypedDict": ".chatgenerationparams",
|
|
1396
1681
|
"ChatGenerationParamsResponseFormatPython": ".chatgenerationparams",
|
|
@@ -1402,9 +1687,18 @@ _dynamic_imports: dict[str, str] = {
|
|
|
1402
1687
|
"ChatGenerationParamsStop": ".chatgenerationparams",
|
|
1403
1688
|
"ChatGenerationParamsStopTypedDict": ".chatgenerationparams",
|
|
1404
1689
|
"ChatGenerationParamsTypedDict": ".chatgenerationparams",
|
|
1690
|
+
"Debug": ".chatgenerationparams",
|
|
1691
|
+
"DebugTypedDict": ".chatgenerationparams",
|
|
1405
1692
|
"Effort": ".chatgenerationparams",
|
|
1693
|
+
"Engine": ".chatgenerationparams",
|
|
1694
|
+
"Modality": ".chatgenerationparams",
|
|
1695
|
+
"Pdf": ".chatgenerationparams",
|
|
1696
|
+
"PdfEngine": ".chatgenerationparams",
|
|
1697
|
+
"PdfTypedDict": ".chatgenerationparams",
|
|
1698
|
+
"Quantizations": ".chatgenerationparams",
|
|
1406
1699
|
"Reasoning": ".chatgenerationparams",
|
|
1407
1700
|
"ReasoningTypedDict": ".chatgenerationparams",
|
|
1701
|
+
"Route": ".chatgenerationparams",
|
|
1408
1702
|
"ChatGenerationTokenUsage": ".chatgenerationtokenusage",
|
|
1409
1703
|
"ChatGenerationTokenUsageTypedDict": ".chatgenerationtokenusage",
|
|
1410
1704
|
"CompletionTokensDetails": ".chatgenerationtokenusage",
|
|
@@ -1414,10 +1708,12 @@ _dynamic_imports: dict[str, str] = {
|
|
|
1414
1708
|
"ChatMessageContentItem": ".chatmessagecontentitem",
|
|
1415
1709
|
"ChatMessageContentItemTypedDict": ".chatmessagecontentitem",
|
|
1416
1710
|
"ChatMessageContentItemAudio": ".chatmessagecontentitemaudio",
|
|
1417
|
-
"ChatMessageContentItemAudioFormat": ".chatmessagecontentitemaudio",
|
|
1418
1711
|
"ChatMessageContentItemAudioInputAudio": ".chatmessagecontentitemaudio",
|
|
1419
1712
|
"ChatMessageContentItemAudioInputAudioTypedDict": ".chatmessagecontentitemaudio",
|
|
1420
1713
|
"ChatMessageContentItemAudioTypedDict": ".chatmessagecontentitemaudio",
|
|
1714
|
+
"ChatMessageContentItemCacheControl": ".chatmessagecontentitemcachecontrol",
|
|
1715
|
+
"ChatMessageContentItemCacheControlTypedDict": ".chatmessagecontentitemcachecontrol",
|
|
1716
|
+
"TTL": ".chatmessagecontentitemcachecontrol",
|
|
1421
1717
|
"ChatMessageContentItemImage": ".chatmessagecontentitemimage",
|
|
1422
1718
|
"ChatMessageContentItemImageDetail": ".chatmessagecontentitemimage",
|
|
1423
1719
|
"ChatMessageContentItemImageTypedDict": ".chatmessagecontentitemimage",
|
|
@@ -1426,13 +1722,19 @@ _dynamic_imports: dict[str, str] = {
|
|
|
1426
1722
|
"ChatMessageContentItemText": ".chatmessagecontentitemtext",
|
|
1427
1723
|
"ChatMessageContentItemTextTypedDict": ".chatmessagecontentitemtext",
|
|
1428
1724
|
"ChatMessageContentItemVideo": ".chatmessagecontentitemvideo",
|
|
1725
|
+
"ChatMessageContentItemVideoInputVideo": ".chatmessagecontentitemvideo",
|
|
1726
|
+
"ChatMessageContentItemVideoInputVideoTypedDict": ".chatmessagecontentitemvideo",
|
|
1429
1727
|
"ChatMessageContentItemVideoTypedDict": ".chatmessagecontentitemvideo",
|
|
1430
|
-
"
|
|
1431
|
-
"
|
|
1728
|
+
"ChatMessageContentItemVideoVideoURL": ".chatmessagecontentitemvideo",
|
|
1729
|
+
"ChatMessageContentItemVideoVideoURLTypedDict": ".chatmessagecontentitemvideo",
|
|
1730
|
+
"VideoURL1": ".chatmessagecontentitemvideo",
|
|
1731
|
+
"VideoURL1TypedDict": ".chatmessagecontentitemvideo",
|
|
1732
|
+
"VideoURL2": ".chatmessagecontentitemvideo",
|
|
1733
|
+
"VideoURL2TypedDict": ".chatmessagecontentitemvideo",
|
|
1432
1734
|
"ChatMessageTokenLogprob": ".chatmessagetokenlogprob",
|
|
1735
|
+
"ChatMessageTokenLogprobTopLogprob": ".chatmessagetokenlogprob",
|
|
1736
|
+
"ChatMessageTokenLogprobTopLogprobTypedDict": ".chatmessagetokenlogprob",
|
|
1433
1737
|
"ChatMessageTokenLogprobTypedDict": ".chatmessagetokenlogprob",
|
|
1434
|
-
"TopLogprob": ".chatmessagetokenlogprob",
|
|
1435
|
-
"TopLogprobTypedDict": ".chatmessagetokenlogprob",
|
|
1436
1738
|
"ChatMessageTokenLogprobs": ".chatmessagetokenlogprobs",
|
|
1437
1739
|
"ChatMessageTokenLogprobsTypedDict": ".chatmessagetokenlogprobs",
|
|
1438
1740
|
"ChatMessageToolCall": ".chatmessagetoolcall",
|
|
@@ -1488,6 +1790,7 @@ _dynamic_imports: dict[str, str] = {
|
|
|
1488
1790
|
"ChainID": ".createchargerequest",
|
|
1489
1791
|
"CreateChargeRequest": ".createchargerequest",
|
|
1490
1792
|
"CreateChargeRequestTypedDict": ".createchargerequest",
|
|
1793
|
+
"DataCollection": ".datacollection",
|
|
1491
1794
|
"DefaultParameters": ".defaultparameters",
|
|
1492
1795
|
"DefaultParametersTypedDict": ".defaultparameters",
|
|
1493
1796
|
"EdgeNetworkTimeoutResponseErrorData": ".edgenetworktimeoutresponseerrordata",
|
|
@@ -1604,17 +1907,21 @@ _dynamic_imports: dict[str, str] = {
|
|
|
1604
1907
|
"TypeTypedDict": ".openairesponsestoolchoice_union",
|
|
1605
1908
|
"OpenAIResponsesTruncation": ".openairesponsestruncation",
|
|
1606
1909
|
"OpenResponsesEasyInputMessage": ".openresponseseasyinputmessage",
|
|
1607
|
-
"
|
|
1608
|
-
"
|
|
1609
|
-
"
|
|
1610
|
-
"
|
|
1910
|
+
"OpenResponsesEasyInputMessageContentInputImage": ".openresponseseasyinputmessage",
|
|
1911
|
+
"OpenResponsesEasyInputMessageContentInputImageTypedDict": ".openresponseseasyinputmessage",
|
|
1912
|
+
"OpenResponsesEasyInputMessageContentType": ".openresponseseasyinputmessage",
|
|
1913
|
+
"OpenResponsesEasyInputMessageContentUnion1": ".openresponseseasyinputmessage",
|
|
1914
|
+
"OpenResponsesEasyInputMessageContentUnion1TypedDict": ".openresponseseasyinputmessage",
|
|
1915
|
+
"OpenResponsesEasyInputMessageContentUnion2": ".openresponseseasyinputmessage",
|
|
1916
|
+
"OpenResponsesEasyInputMessageContentUnion2TypedDict": ".openresponseseasyinputmessage",
|
|
1917
|
+
"OpenResponsesEasyInputMessageDetail": ".openresponseseasyinputmessage",
|
|
1611
1918
|
"OpenResponsesEasyInputMessageRoleAssistant": ".openresponseseasyinputmessage",
|
|
1612
1919
|
"OpenResponsesEasyInputMessageRoleDeveloper": ".openresponseseasyinputmessage",
|
|
1613
1920
|
"OpenResponsesEasyInputMessageRoleSystem": ".openresponseseasyinputmessage",
|
|
1614
1921
|
"OpenResponsesEasyInputMessageRoleUnion": ".openresponseseasyinputmessage",
|
|
1615
1922
|
"OpenResponsesEasyInputMessageRoleUnionTypedDict": ".openresponseseasyinputmessage",
|
|
1616
1923
|
"OpenResponsesEasyInputMessageRoleUser": ".openresponseseasyinputmessage",
|
|
1617
|
-
"
|
|
1924
|
+
"OpenResponsesEasyInputMessageTypeMessage": ".openresponseseasyinputmessage",
|
|
1618
1925
|
"OpenResponsesEasyInputMessageTypedDict": ".openresponseseasyinputmessage",
|
|
1619
1926
|
"OpenResponsesErrorEvent": ".openresponseserrorevent",
|
|
1620
1927
|
"OpenResponsesErrorEventType": ".openresponseserrorevent",
|
|
@@ -1642,14 +1949,18 @@ _dynamic_imports: dict[str, str] = {
|
|
|
1642
1949
|
"OpenResponsesInput1TypedDict": ".openresponsesinput",
|
|
1643
1950
|
"OpenResponsesInputTypedDict": ".openresponsesinput",
|
|
1644
1951
|
"OpenResponsesInputMessageItem": ".openresponsesinputmessageitem",
|
|
1645
|
-
"
|
|
1646
|
-
"
|
|
1952
|
+
"OpenResponsesInputMessageItemContentInputImage": ".openresponsesinputmessageitem",
|
|
1953
|
+
"OpenResponsesInputMessageItemContentInputImageTypedDict": ".openresponsesinputmessageitem",
|
|
1954
|
+
"OpenResponsesInputMessageItemContentType": ".openresponsesinputmessageitem",
|
|
1955
|
+
"OpenResponsesInputMessageItemContentUnion": ".openresponsesinputmessageitem",
|
|
1956
|
+
"OpenResponsesInputMessageItemContentUnionTypedDict": ".openresponsesinputmessageitem",
|
|
1957
|
+
"OpenResponsesInputMessageItemDetail": ".openresponsesinputmessageitem",
|
|
1647
1958
|
"OpenResponsesInputMessageItemRoleDeveloper": ".openresponsesinputmessageitem",
|
|
1648
1959
|
"OpenResponsesInputMessageItemRoleSystem": ".openresponsesinputmessageitem",
|
|
1649
1960
|
"OpenResponsesInputMessageItemRoleUnion": ".openresponsesinputmessageitem",
|
|
1650
1961
|
"OpenResponsesInputMessageItemRoleUnionTypedDict": ".openresponsesinputmessageitem",
|
|
1651
1962
|
"OpenResponsesInputMessageItemRoleUser": ".openresponsesinputmessageitem",
|
|
1652
|
-
"
|
|
1963
|
+
"OpenResponsesInputMessageItemTypeMessage": ".openresponsesinputmessageitem",
|
|
1653
1964
|
"OpenResponsesInputMessageItemTypedDict": ".openresponsesinputmessageitem",
|
|
1654
1965
|
"OpenResponsesLogProbs": ".openresponseslogprobs",
|
|
1655
1966
|
"OpenResponsesLogProbsTypedDict": ".openresponseslogprobs",
|
|
@@ -1687,41 +1998,45 @@ _dynamic_imports: dict[str, str] = {
|
|
|
1687
1998
|
"OpenResponsesReasoningSummaryTextDoneEvent": ".openresponsesreasoningsummarytextdoneevent",
|
|
1688
1999
|
"OpenResponsesReasoningSummaryTextDoneEventType": ".openresponsesreasoningsummarytextdoneevent",
|
|
1689
2000
|
"OpenResponsesReasoningSummaryTextDoneEventTypedDict": ".openresponsesreasoningsummarytextdoneevent",
|
|
1690
|
-
"
|
|
1691
|
-
"Engine": ".openresponsesrequest",
|
|
2001
|
+
"IDAutoRouter": ".openresponsesrequest",
|
|
1692
2002
|
"IDFileParser": ".openresponsesrequest",
|
|
1693
2003
|
"IDModeration": ".openresponsesrequest",
|
|
2004
|
+
"IDResponseHealing": ".openresponsesrequest",
|
|
1694
2005
|
"IDWeb": ".openresponsesrequest",
|
|
1695
|
-
"Ignore": ".openresponsesrequest",
|
|
1696
|
-
"IgnoreTypedDict": ".openresponsesrequest",
|
|
1697
|
-
"MaxPrice": ".openresponsesrequest",
|
|
1698
|
-
"MaxPriceTypedDict": ".openresponsesrequest",
|
|
1699
|
-
"Only": ".openresponsesrequest",
|
|
1700
|
-
"OnlyTypedDict": ".openresponsesrequest",
|
|
1701
2006
|
"OpenResponsesRequest": ".openresponsesrequest",
|
|
2007
|
+
"OpenResponsesRequestIgnore": ".openresponsesrequest",
|
|
2008
|
+
"OpenResponsesRequestIgnoreTypedDict": ".openresponsesrequest",
|
|
2009
|
+
"OpenResponsesRequestImageConfig": ".openresponsesrequest",
|
|
2010
|
+
"OpenResponsesRequestImageConfigTypedDict": ".openresponsesrequest",
|
|
2011
|
+
"OpenResponsesRequestMaxPrice": ".openresponsesrequest",
|
|
2012
|
+
"OpenResponsesRequestMaxPriceTypedDict": ".openresponsesrequest",
|
|
2013
|
+
"OpenResponsesRequestOnly": ".openresponsesrequest",
|
|
2014
|
+
"OpenResponsesRequestOnlyTypedDict": ".openresponsesrequest",
|
|
2015
|
+
"OpenResponsesRequestOrder": ".openresponsesrequest",
|
|
2016
|
+
"OpenResponsesRequestOrderTypedDict": ".openresponsesrequest",
|
|
2017
|
+
"OpenResponsesRequestPluginAutoRouter": ".openresponsesrequest",
|
|
2018
|
+
"OpenResponsesRequestPluginAutoRouterTypedDict": ".openresponsesrequest",
|
|
2019
|
+
"OpenResponsesRequestPluginFileParser": ".openresponsesrequest",
|
|
2020
|
+
"OpenResponsesRequestPluginFileParserTypedDict": ".openresponsesrequest",
|
|
2021
|
+
"OpenResponsesRequestPluginModeration": ".openresponsesrequest",
|
|
2022
|
+
"OpenResponsesRequestPluginModerationTypedDict": ".openresponsesrequest",
|
|
2023
|
+
"OpenResponsesRequestPluginResponseHealing": ".openresponsesrequest",
|
|
2024
|
+
"OpenResponsesRequestPluginResponseHealingTypedDict": ".openresponsesrequest",
|
|
2025
|
+
"OpenResponsesRequestPluginUnion": ".openresponsesrequest",
|
|
2026
|
+
"OpenResponsesRequestPluginUnionTypedDict": ".openresponsesrequest",
|
|
2027
|
+
"OpenResponsesRequestPluginWeb": ".openresponsesrequest",
|
|
2028
|
+
"OpenResponsesRequestPluginWebTypedDict": ".openresponsesrequest",
|
|
2029
|
+
"OpenResponsesRequestProvider": ".openresponsesrequest",
|
|
2030
|
+
"OpenResponsesRequestProviderTypedDict": ".openresponsesrequest",
|
|
2031
|
+
"OpenResponsesRequestSort": ".openresponsesrequest",
|
|
2032
|
+
"OpenResponsesRequestSortTypedDict": ".openresponsesrequest",
|
|
1702
2033
|
"OpenResponsesRequestToolFunction": ".openresponsesrequest",
|
|
1703
2034
|
"OpenResponsesRequestToolFunctionTypedDict": ".openresponsesrequest",
|
|
1704
2035
|
"OpenResponsesRequestToolUnion": ".openresponsesrequest",
|
|
1705
2036
|
"OpenResponsesRequestToolUnionTypedDict": ".openresponsesrequest",
|
|
1706
2037
|
"OpenResponsesRequestType": ".openresponsesrequest",
|
|
1707
2038
|
"OpenResponsesRequestTypedDict": ".openresponsesrequest",
|
|
1708
|
-
"Order": ".openresponsesrequest",
|
|
1709
|
-
"OrderTypedDict": ".openresponsesrequest",
|
|
1710
|
-
"Pdf": ".openresponsesrequest",
|
|
1711
|
-
"PdfEngine": ".openresponsesrequest",
|
|
1712
|
-
"PdfTypedDict": ".openresponsesrequest",
|
|
1713
|
-
"Plugin": ".openresponsesrequest",
|
|
1714
|
-
"PluginFileParser": ".openresponsesrequest",
|
|
1715
|
-
"PluginFileParserTypedDict": ".openresponsesrequest",
|
|
1716
|
-
"PluginModeration": ".openresponsesrequest",
|
|
1717
|
-
"PluginModerationTypedDict": ".openresponsesrequest",
|
|
1718
|
-
"PluginTypedDict": ".openresponsesrequest",
|
|
1719
|
-
"PluginWeb": ".openresponsesrequest",
|
|
1720
|
-
"PluginWebTypedDict": ".openresponsesrequest",
|
|
1721
|
-
"Provider": ".openresponsesrequest",
|
|
1722
|
-
"ProviderTypedDict": ".openresponsesrequest",
|
|
1723
2039
|
"ServiceTier": ".openresponsesrequest",
|
|
1724
|
-
"Sort": ".openresponsesrequest",
|
|
1725
2040
|
"Truncation": ".openresponsesrequest",
|
|
1726
2041
|
"OpenResponsesResponseText": ".openresponsesresponsetext",
|
|
1727
2042
|
"OpenResponsesResponseTextTypedDict": ".openresponsesresponsetext",
|
|
@@ -1829,11 +2144,50 @@ _dynamic_imports: dict[str, str] = {
|
|
|
1829
2144
|
"PayloadTooLargeResponseErrorDataTypedDict": ".payloadtoolargeresponseerrordata",
|
|
1830
2145
|
"PaymentRequiredResponseErrorData": ".paymentrequiredresponseerrordata",
|
|
1831
2146
|
"PaymentRequiredResponseErrorDataTypedDict": ".paymentrequiredresponseerrordata",
|
|
2147
|
+
"PDFParserEngine": ".pdfparserengine",
|
|
2148
|
+
"PDFParserOptions": ".pdfparseroptions",
|
|
2149
|
+
"PDFParserOptionsTypedDict": ".pdfparseroptions",
|
|
2150
|
+
"PercentileLatencyCutoffs": ".percentilelatencycutoffs",
|
|
2151
|
+
"PercentileLatencyCutoffsTypedDict": ".percentilelatencycutoffs",
|
|
2152
|
+
"PercentileStats": ".percentilestats",
|
|
2153
|
+
"PercentileStatsTypedDict": ".percentilestats",
|
|
2154
|
+
"PercentileThroughputCutoffs": ".percentilethroughputcutoffs",
|
|
2155
|
+
"PercentileThroughputCutoffsTypedDict": ".percentilethroughputcutoffs",
|
|
1832
2156
|
"PerRequestLimits": ".perrequestlimits",
|
|
1833
2157
|
"PerRequestLimitsTypedDict": ".perrequestlimits",
|
|
2158
|
+
"PreferredMaxLatency": ".preferredmaxlatency",
|
|
2159
|
+
"PreferredMaxLatencyTypedDict": ".preferredmaxlatency",
|
|
2160
|
+
"PreferredMinThroughput": ".preferredminthroughput",
|
|
2161
|
+
"PreferredMinThroughputTypedDict": ".preferredminthroughput",
|
|
1834
2162
|
"ProviderName": ".providername",
|
|
1835
2163
|
"ProviderOverloadedResponseErrorData": ".provideroverloadedresponseerrordata",
|
|
1836
2164
|
"ProviderOverloadedResponseErrorDataTypedDict": ".provideroverloadedresponseerrordata",
|
|
2165
|
+
"ProviderPreferences": ".providerpreferences",
|
|
2166
|
+
"ProviderPreferencesIgnore": ".providerpreferences",
|
|
2167
|
+
"ProviderPreferencesIgnoreTypedDict": ".providerpreferences",
|
|
2168
|
+
"ProviderPreferencesMaxPrice": ".providerpreferences",
|
|
2169
|
+
"ProviderPreferencesMaxPriceTypedDict": ".providerpreferences",
|
|
2170
|
+
"ProviderPreferencesOnly": ".providerpreferences",
|
|
2171
|
+
"ProviderPreferencesOnlyTypedDict": ".providerpreferences",
|
|
2172
|
+
"ProviderPreferencesOrder": ".providerpreferences",
|
|
2173
|
+
"ProviderPreferencesOrderTypedDict": ".providerpreferences",
|
|
2174
|
+
"ProviderPreferencesPartition": ".providerpreferences",
|
|
2175
|
+
"ProviderPreferencesProviderSort": ".providerpreferences",
|
|
2176
|
+
"ProviderPreferencesProviderSortConfig": ".providerpreferences",
|
|
2177
|
+
"ProviderPreferencesProviderSortConfigTypedDict": ".providerpreferences",
|
|
2178
|
+
"ProviderPreferencesSortUnion": ".providerpreferences",
|
|
2179
|
+
"ProviderPreferencesSortUnionTypedDict": ".providerpreferences",
|
|
2180
|
+
"ProviderPreferencesTypedDict": ".providerpreferences",
|
|
2181
|
+
"ProviderSortConfigEnum": ".providerpreferences",
|
|
2182
|
+
"ProviderSortConfigUnion": ".providerpreferences",
|
|
2183
|
+
"ProviderSortConfigUnionTypedDict": ".providerpreferences",
|
|
2184
|
+
"SortEnum": ".providerpreferences",
|
|
2185
|
+
"ProviderSort": ".providersort",
|
|
2186
|
+
"Partition": ".providersortconfig",
|
|
2187
|
+
"ProviderSortConfig": ".providersortconfig",
|
|
2188
|
+
"ProviderSortConfigTypedDict": ".providersortconfig",
|
|
2189
|
+
"ProviderSortUnion": ".providersortunion",
|
|
2190
|
+
"ProviderSortUnionTypedDict": ".providersortunion",
|
|
1837
2191
|
"Pricing": ".publicendpoint",
|
|
1838
2192
|
"PricingTypedDict": ".publicendpoint",
|
|
1839
2193
|
"PublicEndpoint": ".publicendpoint",
|
|
@@ -1873,7 +2227,14 @@ _dynamic_imports: dict[str, str] = {
|
|
|
1873
2227
|
"ResponseInputText": ".responseinputtext",
|
|
1874
2228
|
"ResponseInputTextType": ".responseinputtext",
|
|
1875
2229
|
"ResponseInputTextTypedDict": ".responseinputtext",
|
|
2230
|
+
"ResponseInputVideo": ".responseinputvideo",
|
|
2231
|
+
"ResponseInputVideoType": ".responseinputvideo",
|
|
2232
|
+
"ResponseInputVideoTypedDict": ".responseinputvideo",
|
|
2233
|
+
"Logprob": ".responseoutputtext",
|
|
2234
|
+
"LogprobTypedDict": ".responseoutputtext",
|
|
1876
2235
|
"ResponseOutputText": ".responseoutputtext",
|
|
2236
|
+
"ResponseOutputTextTopLogprob": ".responseoutputtext",
|
|
2237
|
+
"ResponseOutputTextTopLogprobTypedDict": ".responseoutputtext",
|
|
1877
2238
|
"ResponseOutputTextType": ".responseoutputtext",
|
|
1878
2239
|
"ResponseOutputTextTypedDict": ".responseoutputtext",
|
|
1879
2240
|
"CodeEnum": ".responseserrorfield",
|
|
@@ -1905,6 +2266,7 @@ _dynamic_imports: dict[str, str] = {
|
|
|
1905
2266
|
"ResponsesOutputItemFunctionCallType": ".responsesoutputitemfunctioncall",
|
|
1906
2267
|
"ResponsesOutputItemFunctionCallTypedDict": ".responsesoutputitemfunctioncall",
|
|
1907
2268
|
"ResponsesOutputItemReasoning": ".responsesoutputitemreasoning",
|
|
2269
|
+
"ResponsesOutputItemReasoningFormat": ".responsesoutputitemreasoning",
|
|
1908
2270
|
"ResponsesOutputItemReasoningStatusCompleted": ".responsesoutputitemreasoning",
|
|
1909
2271
|
"ResponsesOutputItemReasoningStatusInProgress": ".responsesoutputitemreasoning",
|
|
1910
2272
|
"ResponsesOutputItemReasoningStatusIncomplete": ".responsesoutputitemreasoning",
|
|
@@ -1923,6 +2285,7 @@ _dynamic_imports: dict[str, str] = {
|
|
|
1923
2285
|
"ResponsesOutputMessageStatusUnionTypedDict": ".responsesoutputmessage",
|
|
1924
2286
|
"ResponsesOutputMessageType": ".responsesoutputmessage",
|
|
1925
2287
|
"ResponsesOutputMessageTypedDict": ".responsesoutputmessage",
|
|
2288
|
+
"ResponsesOutputModality": ".responsesoutputmodality",
|
|
1926
2289
|
"ResponsesSearchContextSize": ".responsessearchcontextsize",
|
|
1927
2290
|
"ResponsesWebSearchCallOutput": ".responseswebsearchcalloutput",
|
|
1928
2291
|
"ResponsesWebSearchCallOutputType": ".responseswebsearchcalloutput",
|
|
@@ -1965,6 +2328,7 @@ _dynamic_imports: dict[str, str] = {
|
|
|
1965
2328
|
"UserMessageContent": ".usermessage",
|
|
1966
2329
|
"UserMessageContentTypedDict": ".usermessage",
|
|
1967
2330
|
"UserMessageTypedDict": ".usermessage",
|
|
2331
|
+
"WebSearchEngine": ".websearchengine",
|
|
1968
2332
|
"WebSearchPreviewToolUserLocation": ".websearchpreviewtooluserlocation",
|
|
1969
2333
|
"WebSearchPreviewToolUserLocationType": ".websearchpreviewtooluserlocation",
|
|
1970
2334
|
"WebSearchPreviewToolUserLocationTypedDict": ".websearchpreviewtooluserlocation",
|