-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Expand file tree
/
Copy path__init__.py
More file actions
1501 lines (1302 loc) · 62 KB
/
__init__.py
File metadata and controls
1501 lines (1302 loc) · 62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
"""Logic related to making requests to an LLM.
The aim here is to make a common interface for different LLMs, so that the rest of the code can be agnostic to the
specific LLM being used.
"""
from __future__ import annotations as _annotations
import base64
import warnings
from abc import ABC, abstractmethod
from collections.abc import AsyncIterator, Callable, Iterator, Sequence
from contextlib import asynccontextmanager, contextmanager
from dataclasses import dataclass, field, replace
from datetime import datetime
from functools import cache, cached_property
from typing import Any, Generic, Literal, TypeVar, get_args, overload
import httpx
from typing_extensions import TypeAliasType, TypedDict
from .. import _utils
from .._json_schema import JsonSchemaTransformer
from .._output import OutputObjectDefinition, StructuredTextOutputSchema
from .._parts_manager import ModelResponsePartsManager
from .._run_context import RunContext
from ..builtin_tools import AbstractBuiltinTool
from ..exceptions import UserError
from ..messages import (
BaseToolCallPart,
BinaryImage,
FilePart,
FileUrl,
FinalResultEvent,
FinishReason,
ModelMessage,
ModelRequest,
ModelResponse,
ModelResponsePart,
ModelResponseStreamEvent,
PartEndEvent,
PartStartEvent,
TextPart,
ThinkingPart,
ToolCallPart,
VideoUrl,
)
from ..output import OutputMode
from ..profiles import DEFAULT_PROFILE, ModelProfile, ModelProfileSpec
from ..providers import Provider, infer_provider, infer_provider_class
from ..settings import ModelSettings, ThinkingLevel, merge_model_settings
from ..tools import ToolDefinition
from ..usage import RequestUsage
DEFAULT_HTTP_TIMEOUT: int = 600
"""Default HTTP timeout in seconds for API requests.
This matches the default timeout used by OpenAI's Python client.
See https://github.com/openai/openai-python/blob/v1.54.4/src/openai/_constants.py#L9
"""
KnownModelName = TypeAliasType(
'KnownModelName',
Literal[
'anthropic:claude-3-5-haiku-20241022',
'anthropic:claude-3-5-haiku-latest',
'anthropic:claude-3-7-sonnet-20250219',
'anthropic:claude-3-7-sonnet-latest',
'anthropic:claude-3-haiku-20240307',
'anthropic:claude-3-opus-20240229',
'anthropic:claude-3-opus-latest',
'anthropic:claude-4-opus-20250514',
'anthropic:claude-4-sonnet-20250514',
'anthropic:claude-haiku-4-5-20251001',
'anthropic:claude-haiku-4-5',
'anthropic:claude-opus-4-0',
'anthropic:claude-opus-4-1-20250805',
'anthropic:claude-opus-4-20250514',
'anthropic:claude-opus-4-5-20251101',
'anthropic:claude-opus-4-5',
'anthropic:claude-opus-4-6',
'anthropic:claude-sonnet-4-0',
'anthropic:claude-sonnet-4-20250514',
'anthropic:claude-sonnet-4-5-20250929',
'anthropic:claude-sonnet-4-5',
'anthropic:claude-sonnet-4-6',
'bedrock:amazon.titan-text-express-v1',
'bedrock:amazon.titan-text-lite-v1',
'bedrock:amazon.titan-tg1-large',
'bedrock:anthropic.claude-3-5-haiku-20241022-v1:0',
'bedrock:anthropic.claude-3-5-sonnet-20240620-v1:0',
'bedrock:anthropic.claude-3-5-sonnet-20241022-v2:0',
'bedrock:anthropic.claude-3-7-sonnet-20250219-v1:0',
'bedrock:anthropic.claude-3-haiku-20240307-v1:0',
'bedrock:anthropic.claude-3-opus-20240229-v1:0',
'bedrock:anthropic.claude-3-sonnet-20240229-v1:0',
'bedrock:anthropic.claude-haiku-4-5-20251001-v1:0',
'bedrock:anthropic.claude-instant-v1',
'bedrock:anthropic.claude-opus-4-20250514-v1:0',
'bedrock:anthropic.claude-sonnet-4-20250514-v1:0',
'bedrock:anthropic.claude-sonnet-4-5-20250929-v1:0',
'bedrock:anthropic.claude-sonnet-4-6',
'bedrock:anthropic.claude-v2:1',
'bedrock:anthropic.claude-v2',
'bedrock:cohere.command-light-text-v14',
'bedrock:cohere.command-r-plus-v1:0',
'bedrock:cohere.command-r-v1:0',
'bedrock:cohere.command-text-v14',
'bedrock:eu.anthropic.claude-haiku-4-5-20251001-v1:0',
'bedrock:eu.anthropic.claude-sonnet-4-20250514-v1:0',
'bedrock:eu.anthropic.claude-sonnet-4-5-20250929-v1:0',
'bedrock:eu.anthropic.claude-sonnet-4-6',
'bedrock:global.anthropic.claude-opus-4-5-20251101-v1:0',
'bedrock:meta.llama3-1-405b-instruct-v1:0',
'bedrock:meta.llama3-1-70b-instruct-v1:0',
'bedrock:meta.llama3-1-8b-instruct-v1:0',
'bedrock:meta.llama3-70b-instruct-v1:0',
'bedrock:meta.llama3-8b-instruct-v1:0',
'bedrock:mistral.mistral-7b-instruct-v0:2',
'bedrock:mistral.mistral-large-2402-v1:0',
'bedrock:mistral.mistral-large-2407-v1:0',
'bedrock:mistral.mixtral-8x7b-instruct-v0:1',
'bedrock:us.amazon.nova-2-lite-v1:0',
'bedrock:us.amazon.nova-lite-v1:0',
'bedrock:us.amazon.nova-micro-v1:0',
'bedrock:us.amazon.nova-pro-v1:0',
'bedrock:us.anthropic.claude-3-5-haiku-20241022-v1:0',
'bedrock:us.anthropic.claude-3-5-sonnet-20240620-v1:0',
'bedrock:us.anthropic.claude-3-5-sonnet-20241022-v2:0',
'bedrock:us.anthropic.claude-3-7-sonnet-20250219-v1:0',
'bedrock:us.anthropic.claude-3-haiku-20240307-v1:0',
'bedrock:us.anthropic.claude-3-opus-20240229-v1:0',
'bedrock:us.anthropic.claude-3-sonnet-20240229-v1:0',
'bedrock:us.anthropic.claude-haiku-4-5-20251001-v1:0',
'bedrock:us.anthropic.claude-opus-4-20250514-v1:0',
'bedrock:us.anthropic.claude-sonnet-4-20250514-v1:0',
'bedrock:us.anthropic.claude-sonnet-4-5-20250929-v1:0',
'bedrock:us.anthropic.claude-sonnet-4-6',
'bedrock:us.meta.llama3-1-70b-instruct-v1:0',
'bedrock:us.meta.llama3-1-8b-instruct-v1:0',
'bedrock:us.meta.llama3-2-11b-instruct-v1:0',
'bedrock:us.meta.llama3-2-1b-instruct-v1:0',
'bedrock:us.meta.llama3-2-3b-instruct-v1:0',
'bedrock:us.meta.llama3-2-90b-instruct-v1:0',
'bedrock:us.meta.llama3-3-70b-instruct-v1:0',
'cerebras:gpt-oss-120b',
'cerebras:llama-3.3-70b',
'cerebras:llama3.1-8b',
'cerebras:qwen-3-235b-a22b-instruct-2507',
'cerebras:qwen-3-32b',
'cerebras:qwen-3-coder-480b',
'cerebras:zai-glm-4.6',
'cerebras:zai-glm-4.7',
'cohere:c4ai-aya-expanse-32b',
'cohere:c4ai-aya-expanse-8b',
'cohere:command-nightly',
'cohere:command-r-08-2024',
'cohere:command-r-plus-08-2024',
'cohere:command-r7b-12-2024',
'deepseek:deepseek-chat',
'deepseek:deepseek-reasoner',
'gateway/anthropic:claude-3-5-haiku-20241022',
'gateway/anthropic:claude-3-5-haiku-latest',
'gateway/anthropic:claude-3-7-sonnet-20250219',
'gateway/anthropic:claude-3-7-sonnet-latest',
'gateway/anthropic:claude-3-haiku-20240307',
'gateway/anthropic:claude-3-opus-20240229',
'gateway/anthropic:claude-3-opus-latest',
'gateway/anthropic:claude-4-opus-20250514',
'gateway/anthropic:claude-4-sonnet-20250514',
'gateway/anthropic:claude-haiku-4-5-20251001',
'gateway/anthropic:claude-haiku-4-5',
'gateway/anthropic:claude-opus-4-0',
'gateway/anthropic:claude-opus-4-1-20250805',
'gateway/anthropic:claude-opus-4-20250514',
'gateway/anthropic:claude-opus-4-5-20251101',
'gateway/anthropic:claude-opus-4-5',
'gateway/anthropic:claude-opus-4-6',
'gateway/anthropic:claude-sonnet-4-0',
'gateway/anthropic:claude-sonnet-4-20250514',
'gateway/anthropic:claude-sonnet-4-5-20250929',
'gateway/anthropic:claude-sonnet-4-5',
'gateway/anthropic:claude-sonnet-4-6',
'gateway/bedrock:amazon.titan-text-express-v1',
'gateway/bedrock:amazon.titan-text-lite-v1',
'gateway/bedrock:amazon.titan-tg1-large',
'gateway/bedrock:anthropic.claude-3-5-haiku-20241022-v1:0',
'gateway/bedrock:anthropic.claude-3-5-sonnet-20240620-v1:0',
'gateway/bedrock:anthropic.claude-3-5-sonnet-20241022-v2:0',
'gateway/bedrock:anthropic.claude-3-7-sonnet-20250219-v1:0',
'gateway/bedrock:anthropic.claude-3-haiku-20240307-v1:0',
'gateway/bedrock:anthropic.claude-3-opus-20240229-v1:0',
'gateway/bedrock:anthropic.claude-3-sonnet-20240229-v1:0',
'gateway/bedrock:anthropic.claude-haiku-4-5-20251001-v1:0',
'gateway/bedrock:anthropic.claude-instant-v1',
'gateway/bedrock:anthropic.claude-opus-4-20250514-v1:0',
'gateway/bedrock:anthropic.claude-sonnet-4-20250514-v1:0',
'gateway/bedrock:anthropic.claude-sonnet-4-5-20250929-v1:0',
'gateway/bedrock:anthropic.claude-sonnet-4-6',
'gateway/bedrock:anthropic.claude-v2:1',
'gateway/bedrock:anthropic.claude-v2',
'gateway/bedrock:cohere.command-light-text-v14',
'gateway/bedrock:cohere.command-r-plus-v1:0',
'gateway/bedrock:cohere.command-r-v1:0',
'gateway/bedrock:cohere.command-text-v14',
'gateway/bedrock:eu.anthropic.claude-haiku-4-5-20251001-v1:0',
'gateway/bedrock:eu.anthropic.claude-sonnet-4-20250514-v1:0',
'gateway/bedrock:eu.anthropic.claude-sonnet-4-5-20250929-v1:0',
'gateway/bedrock:eu.anthropic.claude-sonnet-4-6',
'gateway/bedrock:global.anthropic.claude-opus-4-5-20251101-v1:0',
'gateway/bedrock:meta.llama3-1-405b-instruct-v1:0',
'gateway/bedrock:meta.llama3-1-70b-instruct-v1:0',
'gateway/bedrock:meta.llama3-1-8b-instruct-v1:0',
'gateway/bedrock:meta.llama3-70b-instruct-v1:0',
'gateway/bedrock:meta.llama3-8b-instruct-v1:0',
'gateway/bedrock:mistral.mistral-7b-instruct-v0:2',
'gateway/bedrock:mistral.mistral-large-2402-v1:0',
'gateway/bedrock:mistral.mistral-large-2407-v1:0',
'gateway/bedrock:mistral.mixtral-8x7b-instruct-v0:1',
'gateway/bedrock:us.amazon.nova-2-lite-v1:0',
'gateway/bedrock:us.amazon.nova-lite-v1:0',
'gateway/bedrock:us.amazon.nova-micro-v1:0',
'gateway/bedrock:us.amazon.nova-pro-v1:0',
'gateway/bedrock:us.anthropic.claude-3-5-haiku-20241022-v1:0',
'gateway/bedrock:us.anthropic.claude-3-5-sonnet-20240620-v1:0',
'gateway/bedrock:us.anthropic.claude-3-5-sonnet-20241022-v2:0',
'gateway/bedrock:us.anthropic.claude-3-7-sonnet-20250219-v1:0',
'gateway/bedrock:us.anthropic.claude-3-haiku-20240307-v1:0',
'gateway/bedrock:us.anthropic.claude-3-opus-20240229-v1:0',
'gateway/bedrock:us.anthropic.claude-3-sonnet-20240229-v1:0',
'gateway/bedrock:us.anthropic.claude-haiku-4-5-20251001-v1:0',
'gateway/bedrock:us.anthropic.claude-opus-4-20250514-v1:0',
'gateway/bedrock:us.anthropic.claude-sonnet-4-20250514-v1:0',
'gateway/bedrock:us.anthropic.claude-sonnet-4-5-20250929-v1:0',
'gateway/bedrock:us.anthropic.claude-sonnet-4-6',
'gateway/bedrock:us.meta.llama3-1-70b-instruct-v1:0',
'gateway/bedrock:us.meta.llama3-1-8b-instruct-v1:0',
'gateway/bedrock:us.meta.llama3-2-11b-instruct-v1:0',
'gateway/bedrock:us.meta.llama3-2-1b-instruct-v1:0',
'gateway/bedrock:us.meta.llama3-2-3b-instruct-v1:0',
'gateway/bedrock:us.meta.llama3-2-90b-instruct-v1:0',
'gateway/bedrock:us.meta.llama3-3-70b-instruct-v1:0',
'gateway/google-vertex:gemini-2.0-flash-lite',
'gateway/google-vertex:gemini-2.0-flash',
'gateway/google-vertex:gemini-2.5-flash-image',
'gateway/google-vertex:gemini-2.5-flash-lite-preview-09-2025',
'gateway/google-vertex:gemini-2.5-flash-lite',
'gateway/google-vertex:gemini-2.5-flash-preview-09-2025',
'gateway/google-vertex:gemini-2.5-flash',
'gateway/google-vertex:gemini-2.5-pro',
'gateway/google-vertex:gemini-3-flash-preview',
'gateway/google-vertex:gemini-3-pro-image-preview',
'gateway/google-vertex:gemini-3-pro-preview',
'gateway/google-vertex:gemini-3.1-flash-image-preview',
'gateway/google-vertex:gemini-3.1-flash-lite-preview',
'gateway/google-vertex:gemini-3.1-pro-preview',
'gateway/google-vertex:gemini-flash-latest',
'gateway/google-vertex:gemini-flash-lite-latest',
'gateway/groq:llama-3.1-8b-instant',
'gateway/groq:llama-3.3-70b-versatile',
'gateway/groq:meta-llama/llama-guard-4-12b',
'gateway/groq:openai/gpt-oss-120b',
'gateway/groq:openai/gpt-oss-20b',
'gateway/groq:whisper-large-v3',
'gateway/groq:whisper-large-v3-turbo',
'gateway/groq:meta-llama/llama-4-maverick-17b-128e-instruct',
'gateway/groq:meta-llama/llama-4-scout-17b-16e-instruct',
'gateway/groq:meta-llama/llama-prompt-guard-2-22m',
'gateway/groq:meta-llama/llama-prompt-guard-2-86m',
'gateway/groq:moonshotai/kimi-k2-instruct-0905',
'gateway/groq:openai/gpt-oss-safeguard-20b',
'gateway/groq:playai-tts',
'gateway/groq:playai-tts-arabic',
'gateway/groq:qwen/qwen-3-32b',
'gateway/openai:computer-use-preview-2025-03-11',
'gateway/openai:computer-use-preview',
'gateway/openai:gpt-3.5-turbo-0125',
'gateway/openai:gpt-3.5-turbo-0301',
'gateway/openai:gpt-3.5-turbo-0613',
'gateway/openai:gpt-3.5-turbo-1106',
'gateway/openai:gpt-3.5-turbo-16k-0613',
'gateway/openai:gpt-3.5-turbo-16k',
'gateway/openai:gpt-3.5-turbo',
'gateway/openai:gpt-4-0314',
'gateway/openai:gpt-4-0613',
'gateway/openai:gpt-4-turbo-2024-04-09',
'gateway/openai:gpt-4-turbo',
'gateway/openai:gpt-4-vision-preview',
'gateway/openai:gpt-4.1-2025-04-14',
'gateway/openai:gpt-4.1-mini-2025-04-14',
'gateway/openai:gpt-4.1-mini',
'gateway/openai:gpt-4.1-nano-2025-04-14',
'gateway/openai:gpt-4.1-nano',
'gateway/openai:gpt-4.1',
'gateway/openai:gpt-4',
'gateway/openai:gpt-4o-2024-05-13',
'gateway/openai:gpt-4o-2024-08-06',
'gateway/openai:gpt-4o-2024-11-20',
'gateway/openai:gpt-4o-audio-preview-2024-12-17',
'gateway/openai:gpt-4o-audio-preview-2025-06-03',
'gateway/openai:gpt-4o-audio-preview',
'gateway/openai:gpt-4o-mini-2024-07-18',
'gateway/openai:gpt-4o-mini-audio-preview-2024-12-17',
'gateway/openai:gpt-4o-mini-audio-preview',
'gateway/openai:gpt-4o-mini-search-preview-2025-03-11',
'gateway/openai:gpt-4o-mini-search-preview',
'gateway/openai:gpt-4o-mini',
'gateway/openai:gpt-4o-search-preview-2025-03-11',
'gateway/openai:gpt-4o-search-preview',
'gateway/openai:gpt-4o',
'gateway/openai:gpt-5-2025-08-07',
'gateway/openai:gpt-5-chat-latest',
'gateway/openai:gpt-5-codex',
'gateway/openai:gpt-5-mini-2025-08-07',
'gateway/openai:gpt-5-mini',
'gateway/openai:gpt-5-nano-2025-08-07',
'gateway/openai:gpt-5-nano',
'gateway/openai:gpt-5-pro-2025-10-06',
'gateway/openai:gpt-5-pro',
'gateway/openai:gpt-5.1-2025-11-13',
'gateway/openai:gpt-5.1-chat-latest',
'gateway/openai:gpt-5.1-codex-max',
'gateway/openai:gpt-5.1-codex',
'gateway/openai:gpt-5.1',
'gateway/openai:gpt-5.2-2025-12-11',
'gateway/openai:gpt-5.2-chat-latest',
'gateway/openai:gpt-5.2-pro-2025-12-11',
'gateway/openai:gpt-5.2-pro',
'gateway/openai:gpt-5.2',
'gateway/openai:gpt-5.3-chat-latest',
'gateway/openai:gpt-5.4-mini-2026-03-17',
'gateway/openai:gpt-5.4-mini',
'gateway/openai:gpt-5.4-nano-2026-03-17',
'gateway/openai:gpt-5.4-nano',
'gateway/openai:gpt-5.4',
'gateway/openai:gpt-5',
'gateway/openai:o1-2024-12-17',
'gateway/openai:o1-mini',
'gateway/openai:o1-pro-2025-03-19',
'gateway/openai:o1-pro',
'gateway/openai:o1',
'gateway/openai:o3-2025-04-16',
'gateway/openai:o3-deep-research-2025-06-26',
'gateway/openai:o3-deep-research',
'gateway/openai:o3-mini-2025-01-31',
'gateway/openai:o3-mini',
'gateway/openai:o3-pro-2025-06-10',
'gateway/openai:o3-pro',
'gateway/openai:o3',
'gateway/openai:o4-mini-2025-04-16',
'gateway/openai:o4-mini-deep-research-2025-06-26',
'gateway/openai:o4-mini-deep-research',
'gateway/openai:o4-mini',
'google-gla:gemini-2.0-flash-lite',
'google-gla:gemini-2.0-flash',
'google-gla:gemini-2.5-flash-image',
'google-gla:gemini-2.5-flash-lite-preview-09-2025',
'google-gla:gemini-2.5-flash-lite',
'google-gla:gemini-2.5-flash-preview-09-2025',
'google-gla:gemini-2.5-flash',
'google-gla:gemini-2.5-pro',
'google-gla:gemini-3-flash-preview',
'google-gla:gemini-3-pro-image-preview',
'google-gla:gemini-3-pro-preview',
'google-gla:gemini-3.1-flash-image-preview',
'google-gla:gemini-3.1-flash-lite-preview',
'google-gla:gemini-3.1-pro-preview',
'google-gla:gemini-flash-latest',
'google-gla:gemini-flash-lite-latest',
'google-vertex:gemini-2.0-flash-lite',
'google-vertex:gemini-2.0-flash',
'google-vertex:gemini-2.5-flash-image',
'google-vertex:gemini-2.5-flash-lite-preview-09-2025',
'google-vertex:gemini-2.5-flash-lite',
'google-vertex:gemini-2.5-flash-preview-09-2025',
'google-vertex:gemini-2.5-flash',
'google-vertex:gemini-2.5-pro',
'google-vertex:gemini-3-flash-preview',
'google-vertex:gemini-3-pro-image-preview',
'google-vertex:gemini-3-pro-preview',
'google-vertex:gemini-3.1-flash-image-preview',
'google-vertex:gemini-3.1-flash-lite-preview',
'google-vertex:gemini-3.1-pro-preview',
'google-vertex:gemini-flash-latest',
'google-vertex:gemini-flash-lite-latest',
'grok:grok-2-image-1212',
'grok:grok-2-vision-1212',
'grok:grok-3-fast',
'grok:grok-3-mini-fast',
'grok:grok-3-mini',
'grok:grok-3',
'grok:grok-4-0709',
'grok:grok-4-latest',
'grok:grok-4-1-fast-non-reasoning',
'grok:grok-4-1-fast-reasoning',
'grok:grok-4-1-fast',
'grok:grok-4-fast-non-reasoning',
'grok:grok-4-fast-reasoning',
'grok:grok-4-fast',
'grok:grok-4',
'grok:grok-code-fast-1',
'xai:grok-3',
'xai:grok-3-fast',
'xai:grok-3-fast-latest',
'xai:grok-3-latest',
'xai:grok-3-mini',
'xai:grok-3-mini-fast',
'xai:grok-3-mini-fast-latest',
'xai:grok-4',
'xai:grok-4-0709',
'xai:grok-4-1-fast',
'xai:grok-4-1-fast-non-reasoning',
'xai:grok-4-1-fast-non-reasoning-latest',
'xai:grok-4-1-fast-reasoning',
'xai:grok-4-1-fast-reasoning-latest',
'xai:grok-4-fast',
'xai:grok-4-fast-non-reasoning',
'xai:grok-4-fast-non-reasoning-latest',
'xai:grok-4-fast-reasoning',
'xai:grok-4-fast-reasoning-latest',
'xai:grok-4-latest',
'xai:grok-code-fast-1',
'groq:llama-3.1-8b-instant',
'groq:llama-3.3-70b-versatile',
'groq:meta-llama/llama-guard-4-12b',
'groq:openai/gpt-oss-120b',
'groq:openai/gpt-oss-20b',
'groq:whisper-large-v3',
'groq:whisper-large-v3-turbo',
'groq:meta-llama/llama-4-maverick-17b-128e-instruct',
'groq:meta-llama/llama-4-scout-17b-16e-instruct',
'groq:meta-llama/llama-prompt-guard-2-22m',
'groq:meta-llama/llama-prompt-guard-2-86m',
'groq:moonshotai/kimi-k2-instruct-0905',
'groq:openai/gpt-oss-safeguard-20b',
'groq:playai-tts',
'groq:playai-tts-arabic',
'groq:qwen/qwen-3-32b',
'heroku:claude-3-5-haiku',
'heroku:claude-3-5-sonnet-latest',
'heroku:claude-3-7-sonnet',
'heroku:claude-3-haiku',
'heroku:claude-4-5-haiku',
'heroku:claude-4-5-sonnet',
'heroku:claude-4-sonnet',
'heroku:claude-opus-4-5',
'heroku:gpt-oss-120b',
'heroku:kimi-k2-thinking',
'heroku:minimax-m2',
'heroku:qwen3-235b',
'heroku:qwen3-coder-480b',
'heroku:nova-2-lite',
'heroku:nova-lite',
'heroku:nova-pro',
'huggingface:deepseek-ai/DeepSeek-R1',
'huggingface:meta-llama/Llama-3.3-70B-Instruct',
'huggingface:meta-llama/Llama-4-Maverick-17B-128E-Instruct',
'huggingface:meta-llama/Llama-4-Scout-17B-16E-Instruct',
'huggingface:Qwen/Qwen2.5-72B-Instruct',
'huggingface:Qwen/Qwen3-235B-A22B',
'huggingface:Qwen/Qwen3-32B',
'huggingface:Qwen/QwQ-32B',
'mistral:codestral-latest',
'mistral:mistral-large-latest',
'mistral:mistral-moderation-latest',
'mistral:mistral-small-latest',
'moonshotai:kimi-k2-0711-preview',
'moonshotai:kimi-latest',
'moonshotai:kimi-thinking-preview',
'moonshotai:moonshot-v1-128k-vision-preview',
'moonshotai:moonshot-v1-128k',
'moonshotai:moonshot-v1-32k-vision-preview',
'moonshotai:moonshot-v1-32k',
'moonshotai:moonshot-v1-8k-vision-preview',
'moonshotai:moonshot-v1-8k',
'openai:computer-use-preview-2025-03-11',
'openai:computer-use-preview',
'openai:gpt-3.5-turbo-0125',
'openai:gpt-3.5-turbo-0301',
'openai:gpt-3.5-turbo-0613',
'openai:gpt-3.5-turbo-1106',
'openai:gpt-3.5-turbo-16k-0613',
'openai:gpt-3.5-turbo-16k',
'openai:gpt-3.5-turbo',
'openai:gpt-4-0314',
'openai:gpt-4-0613',
'openai:gpt-4-turbo-2024-04-09',
'openai:gpt-4-turbo',
'openai:gpt-4-vision-preview',
'openai:gpt-4.1-2025-04-14',
'openai:gpt-4.1-mini-2025-04-14',
'openai:gpt-4.1-mini',
'openai:gpt-4.1-nano-2025-04-14',
'openai:gpt-4.1-nano',
'openai:gpt-4.1',
'openai:gpt-4',
'openai:gpt-4o-2024-05-13',
'openai:gpt-4o-2024-08-06',
'openai:gpt-4o-2024-11-20',
'openai:gpt-4o-audio-preview-2024-12-17',
'openai:gpt-4o-audio-preview-2025-06-03',
'openai:gpt-4o-audio-preview',
'openai:gpt-4o-mini-2024-07-18',
'openai:gpt-4o-mini-audio-preview-2024-12-17',
'openai:gpt-4o-mini-audio-preview',
'openai:gpt-4o-mini-search-preview-2025-03-11',
'openai:gpt-4o-mini-search-preview',
'openai:gpt-4o-mini',
'openai:gpt-4o-search-preview-2025-03-11',
'openai:gpt-4o-search-preview',
'openai:gpt-4o',
'openai:gpt-5-2025-08-07',
'openai:gpt-5-chat-latest',
'openai:gpt-5-codex',
'openai:gpt-5-mini-2025-08-07',
'openai:gpt-5-mini',
'openai:gpt-5-nano-2025-08-07',
'openai:gpt-5-nano',
'openai:gpt-5-pro-2025-10-06',
'openai:gpt-5-pro',
'openai:gpt-5.1-2025-11-13',
'openai:gpt-5.1-chat-latest',
'openai:gpt-5.1-codex-max',
'openai:gpt-5.1-codex',
'openai:gpt-5.1',
'openai:gpt-5.2-2025-12-11',
'openai:gpt-5.2-chat-latest',
'openai:gpt-5.2-pro-2025-12-11',
'openai:gpt-5.2-pro',
'openai:gpt-5.2',
'openai:gpt-5.3-chat-latest',
'openai:gpt-5.4-mini-2026-03-17',
'openai:gpt-5.4-mini',
'openai:gpt-5.4-nano-2026-03-17',
'openai:gpt-5.4-nano',
'openai:gpt-5.4',
'openai:gpt-5',
'openai:o1-2024-12-17',
'openai:o1-pro-2025-03-19',
'openai:o1-pro',
'openai:o1',
'openai:o3-2025-04-16',
'openai:o3-deep-research-2025-06-26',
'openai:o3-deep-research',
'openai:o3-mini-2025-01-31',
'openai:o3-mini',
'openai:o3-pro-2025-06-10',
'openai:o3-pro',
'openai:o3',
'openai:o4-mini-2025-04-16',
'openai:o4-mini-deep-research-2025-06-26',
'openai:o4-mini-deep-research',
'openai:o4-mini',
'test',
],
)
"""Known model names that can be used with the `model` parameter of [`Agent`][pydantic_ai.Agent].
`KnownModelName` is provided as a concise way to specify a model.
"""
OpenAIChatCompatibleProvider = TypeAliasType(
'OpenAIChatCompatibleProvider',
Literal[
'alibaba',
'azure',
'cerebras',
'deepseek',
'fireworks',
'github',
'grok',
'heroku',
'litellm',
'moonshotai',
'nebius',
'ollama',
'openrouter',
'ovhcloud',
'sambanova',
'together',
'vercel',
],
)
OpenAIResponsesCompatibleProvider = TypeAliasType(
'OpenAIResponsesCompatibleProvider',
Literal[
'azure',
'deepseek',
'fireworks',
'grok',
'nebius',
'openrouter',
'ovhcloud',
'sambanova',
'together',
],
)
@dataclass(repr=False, kw_only=True)
class ModelRequestParameters:
"""Configuration for an agent's request to a model, specifically related to tools and output handling."""
function_tools: list[ToolDefinition] = field(default_factory=list[ToolDefinition])
builtin_tools: list[AbstractBuiltinTool] = field(default_factory=list[AbstractBuiltinTool])
output_mode: OutputMode = 'text'
output_object: OutputObjectDefinition | None = None
output_tools: list[ToolDefinition] = field(default_factory=list[ToolDefinition])
prompted_output_template: str | Literal[False] | None = None
allow_text_output: bool = True
allow_image_output: bool = False
thinking: ThinkingLevel | None = None
"""Resolved thinking/reasoning configuration for this request.
`None` means the model should use its default behavior. Set by the base
`Model.prepare_request()` from the unified `thinking` field in `ModelSettings`,
after checking that the model's profile supports thinking.
"""
@cached_property
def tool_defs(self) -> dict[str, ToolDefinition]:
return {tool_def.name: tool_def for tool_def in [*self.function_tools, *self.output_tools]}
@cached_property
def prompted_output_instructions(self) -> str | None:
if self.prompted_output_template and self.output_object:
return StructuredTextOutputSchema.build_instructions(self.prompted_output_template, self.output_object)
return None
__repr__ = _utils.dataclasses_no_defaults_repr
@dataclass(kw_only=True)
class ModelRequestContext:
"""Context for model request hooks.
Wrapping these parameters in a dataclass instead of a tuple makes the signature
future-proof: new fields can be added without breaking existing implementations.
"""
model: Model
messages: list[ModelMessage]
model_settings: ModelSettings | None
model_request_parameters: ModelRequestParameters
class Model(ABC):
"""Abstract class for a model."""
_profile: ModelProfileSpec | None = None
_settings: ModelSettings | None = None
def __init__(
self,
*,
settings: ModelSettings | None = None,
profile: ModelProfileSpec | None = None,
) -> None:
"""Initialize the model with optional settings and profile.
Args:
settings: Model-specific settings that will be used as defaults for this model.
profile: The model profile to use.
"""
self._settings = settings
self._profile = profile
@property
def settings(self) -> ModelSettings | None:
"""Get the model settings."""
return self._settings
@abstractmethod
async def request(
self,
messages: list[ModelMessage],
model_settings: ModelSettings | None,
model_request_parameters: ModelRequestParameters,
) -> ModelResponse:
"""Make a request to the model.
This is ultimately called by `pydantic_ai._agent_graph.ModelRequestNode._make_request(...)`.
"""
raise NotImplementedError()
async def count_tokens(
self,
messages: list[ModelMessage],
model_settings: ModelSettings | None,
model_request_parameters: ModelRequestParameters,
) -> RequestUsage:
"""Make a request to the model for counting tokens."""
# This method is not required, but you need to implement it if you want to support `UsageLimits.count_tokens_before_request`.
raise NotImplementedError(f'Token counting ahead of the request is not supported by {self.__class__.__name__}')
@asynccontextmanager
async def request_stream(
self,
messages: list[ModelMessage],
model_settings: ModelSettings | None,
model_request_parameters: ModelRequestParameters,
run_context: RunContext[Any] | None = None,
) -> AsyncIterator[StreamedResponse]:
"""Make a request to the model and return a streaming response."""
# This method is not required, but you need to implement it if you want to support streamed responses
raise NotImplementedError(f'Streamed requests not supported by this {self.__class__.__name__}')
# yield is required to make this a generator for type checking
# noinspection PyUnreachableCode
yield # pragma: no cover
def customize_request_parameters(self, model_request_parameters: ModelRequestParameters) -> ModelRequestParameters:
"""Customize the request parameters for the model.
This method can be overridden by subclasses to modify the request parameters before sending them to the model.
In particular, this method can be used to make modifications to the generated tool JSON schemas if necessary
for vendor/model-specific reasons.
"""
if transformer := self.profile.json_schema_transformer:
model_request_parameters = replace(
model_request_parameters,
function_tools=[_customize_tool_def(transformer, t) for t in model_request_parameters.function_tools],
output_tools=[_customize_tool_def(transformer, t) for t in model_request_parameters.output_tools],
)
if output_object := model_request_parameters.output_object:
model_request_parameters = replace(
model_request_parameters,
output_object=_customize_output_object(transformer, output_object),
)
return model_request_parameters
def prepare_request(
self,
model_settings: ModelSettings | None,
model_request_parameters: ModelRequestParameters,
) -> tuple[ModelSettings | None, ModelRequestParameters]:
"""Prepare request inputs before they are passed to the provider.
This merges the given `model_settings` with the model's own `settings` attribute and ensures
`customize_request_parameters` is applied to the resolved
[`ModelRequestParameters`][pydantic_ai.models.ModelRequestParameters]. Subclasses can override this method if
they need to customize the preparation flow further, but most implementations should simply call
`self.prepare_request(...)` at the start of their `request` (and related) methods.
"""
model_settings = merge_model_settings(self.settings, model_settings)
params = self.customize_request_parameters(model_request_parameters)
# Resolve unified thinking setting
thinking_value = model_settings.get('thinking') if model_settings else None
if thinking_value is not None:
if self.profile.supports_thinking or self.profile.thinking_always_enabled:
if thinking_value is False and self.profile.thinking_always_enabled:
pass # Silent ignore: model always thinks, can't disable
else:
params = replace(params, thinking=thinking_value)
# else: silent ignore for unsupported models
if builtin_tools := params.builtin_tools:
# Deduplicate builtin tools
params = replace(
params,
builtin_tools=list({tool.unique_id: tool for tool in builtin_tools}.values()),
)
if params.output_mode == 'auto':
output_mode = self.profile.default_structured_output_mode
params = replace(
params,
output_mode=output_mode,
allow_text_output=output_mode in ('native', 'prompted'),
)
# Reset irrelevant fields
if params.output_tools and params.output_mode != 'tool':
params = replace(params, output_tools=[])
if params.output_object and params.output_mode not in ('native', 'prompted'):
params = replace(params, output_object=None)
if params.prompted_output_template and params.output_mode not in ('prompted', 'native'):
params = replace(params, prompted_output_template=None) # pragma: no cover
# Set default prompted output template
if (
params.output_mode == 'prompted'
or (params.output_mode == 'native' and self.profile.native_output_requires_schema_in_instructions)
) and params.prompted_output_template is None:
params = replace(params, prompted_output_template=self.profile.prompted_output_template)
# Check if output mode is supported
if params.output_mode == 'native' and not self.profile.supports_json_schema_output:
raise UserError('Native structured output is not supported by this model.')
if params.output_mode == 'tool' and not self.profile.supports_tools:
raise UserError('Tool output is not supported by this model.')
if params.allow_image_output and not self.profile.supports_image_output:
raise UserError('Image output is not supported by this model.')
# Check builtin tools and handle fallback swap
if params.builtin_tools or any(t.prefer_builtin for t in params.function_tools):
supported_types = self.profile.supported_builtin_tools
supported_builtins = [t for t in params.builtin_tools if isinstance(t, tuple(supported_types))]
unsupported_builtins = [t for t in params.builtin_tools if not isinstance(t, tuple(supported_types))]
supported_ids = {t.unique_id for t in supported_builtins}
unsupported_ids = {t.unique_id for t in unsupported_builtins}
fallback_ids = {t.prefer_builtin for t in params.function_tools if t.prefer_builtin}
# Error only for unsupported builtins that have no local fallback
without_fallback = unsupported_ids - fallback_ids
if without_fallback:
unsupported_names = [type(t).__name__ for t in unsupported_builtins if t.unique_id in without_fallback]
supported_names = [t.__name__ for t in supported_types]
raise UserError(
f'Builtin tool(s) {unsupported_names} not supported by this model. '
f'Supported: {supported_names}. '
f'To use these tools with this model, provide a local fallback via '
f'BuiltinOrLocalTool(builtin=..., local=...) or the `local` parameter '
f'of the capability (e.g. ImageGeneration(local=my_func)).'
)
# Remove local fallback tools whose preferred builtin IS supported (model handles natively)
# Remove unsupported builtins (their local fallbacks stay)
function_tools = [
t for t in params.function_tools if not t.prefer_builtin or t.prefer_builtin not in supported_ids
]
params = replace(params, builtin_tools=supported_builtins, function_tools=function_tools)
return model_settings, params
@property
@abstractmethod
def model_name(self) -> str:
"""The model name."""
raise NotImplementedError()
@property
def model_id(self) -> str:
"""The fully qualified model name in `'provider:model_name'` format."""
return f'{self.system}:{self.model_name}'
@property
def label(self) -> str:
"""Human-friendly display label for the model.
Handles common patterns:
- gpt-5 -> GPT 5
- claude-sonnet-4-5 -> Claude Sonnet 4.5
- gemini-2.5-pro -> Gemini 2.5 Pro
- meta-llama/llama-3-70b -> Llama 3 70b (OpenRouter style)
"""
label = self.model_name
# Handle OpenRouter-style names with / (e.g., meta-llama/llama-3-70b)
if '/' in label:
label = label.split('/')[-1]
parts = label.split('-')
result: list[str] = []
for i, part in enumerate(parts):
if i == 0 and part.lower() == 'gpt':
result.append(part.upper())
elif part.replace('.', '').isdigit():
if result and result[-1].replace('.', '').isdigit():
result[-1] = f'{result[-1]}.{part}'
else:
result.append(part)
else:
result.append(part.capitalize())
return ' '.join(result)
@classmethod
def supported_builtin_tools(cls) -> frozenset[type[AbstractBuiltinTool]]:
"""Return the set of builtin tool types this model class can handle.
Subclasses should override this to reflect their actual capabilities.
Default is empty set - subclasses must explicitly declare support.
"""
return frozenset()
@cached_property
def profile(self) -> ModelProfile:
"""The model profile.
We use this to compute the intersection of the profile's supported_builtin_tools
and the model's implemented tools, ensuring model.profile.supported_builtin_tools
is the single source of truth for what builtin tools are actually usable.
"""
_profile = self._profile
if callable(_profile):
_profile = _profile(self.model_name)
if _profile is None:
_profile = DEFAULT_PROFILE
# Compute intersection: profile's allowed tools & model's implemented tools
model_supported = self.__class__.supported_builtin_tools()
profile_supported = _profile.supported_builtin_tools
effective_tools = profile_supported & model_supported
if effective_tools != profile_supported:
_profile = replace(_profile, supported_builtin_tools=effective_tools)
return _profile
@property
@abstractmethod
def system(self) -> str:
"""The model provider, ex: openai.
Use to populate the `gen_ai.system` OpenTelemetry semantic convention attribute,
so should use well-known values listed in
https://opentelemetry.io/docs/specs/semconv/attributes-registry/gen-ai/#gen-ai-system
when applicable.
"""
raise NotImplementedError()
@property
def base_url(self) -> str | None:
"""The base URL for the provider API, if available."""
return None
@staticmethod
def _get_instructions(
messages: Sequence[ModelMessage], model_request_parameters: ModelRequestParameters | None = None
) -> str | None:
"""Get instructions from the first ModelRequest found when iterating messages in reverse.
In the case that a "mock" request was generated to include a tool-return part for a result tool,
we want to use the instructions from the second-to-most-recent request (which should correspond to the
original request that generated the response that resulted in the tool-return part).
"""
instructions = None
last_two_requests: list[ModelRequest] = []
for message in reversed(messages):
if isinstance(message, ModelRequest):
last_two_requests.append(message)
if len(last_two_requests) == 2:
break
if message.instructions is not None:
instructions = message.instructions
break
# If we don't have two requests, and we didn't already return instructions, there are definitely not any:
if instructions is None and len(last_two_requests) == 2:
most_recent_request = last_two_requests[0]
second_most_recent_request = last_two_requests[1]
# If we've gotten this far and the most recent request consists of only tool-return parts or retry-prompt parts,
# we use the instructions from the second-to-most-recent request. This is necessary because when handling
# result tools, we generate a "mock" ModelRequest with a tool-return part for it, and that ModelRequest will not
# have the relevant instructions from the agent.
# While it's possible that you could have a message history where the most recent request has only tool returns,
# I believe there is no way to achieve that would _change_ the instructions without manually crafting the most
# recent message. That might make sense in principle for some usage pattern, but it's enough of an edge case
# that I think it's not worth worrying about, since you can work around this by inserting another ModelRequest
# with no parts at all immediately before the request that has the tool calls (that works because we only look
# at the two most recent ModelRequests here).
# If you have a use case where this causes pain, please open a GitHub issue and we can discuss alternatives.
if all(p.part_kind == 'tool-return' or p.part_kind == 'retry-prompt' for p in most_recent_request.parts):
instructions = second_most_recent_request.instructions
if model_request_parameters and (output_instructions := model_request_parameters.prompted_output_instructions):
if instructions:
instructions = '\n\n'.join([instructions, output_instructions])
else:
instructions = output_instructions
return instructions
@dataclass
class StreamedResponse(ABC):
"""Streamed response from an LLM when calling a tool."""
model_request_parameters: ModelRequestParameters
final_result_event: FinalResultEvent | None = field(default=None, init=False)
provider_response_id: str | None = field(default=None, init=False)
provider_details: dict[str, Any] | None = field(default=None, init=False)
finish_reason: FinishReason | None = field(default=None, init=False)
_parts_manager: ModelResponsePartsManager = field(default_factory=ModelResponsePartsManager, init=False)
_event_iterator: AsyncIterator[ModelResponseStreamEvent] | None = field(default=None, init=False)
_usage: RequestUsage = field(default_factory=RequestUsage, init=False)
def __aiter__(self) -> AsyncIterator[ModelResponseStreamEvent]:
"""Stream the response as an async iterable of [`ModelResponseStreamEvent`][pydantic_ai.messages.ModelResponseStreamEvent]s.
This proxies the `_event_iterator()` and emits all events, while also checking for matches
on the result schema and emitting a [`FinalResultEvent`][pydantic_ai.messages.FinalResultEvent] if/when the
first match is found.
"""