-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmodels.py
More file actions
2286 lines (1912 loc) · 50.3 KB
/
models.py
File metadata and controls
2286 lines (1912 loc) · 50.3 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
"""
֍ Substrate
generated file
"""
from __future__ import annotations
from typing import Any, Dict, List, Optional
from typing_extensions import Literal, Annotated
from pydantic import Extra, Field, BaseModel
class ErrorOut(BaseModel):
class Config:
extra = Extra.allow
type: Literal["api_error", "invalid_request_error", "dependency_error"]
"""
The type of error returned.
"""
message: str
"""
A message providing more details about the error.
"""
status_code: int = 500
"""
The HTTP status code for the error.
"""
class ExperimentalIn(BaseModel):
class Config:
extra = Extra.allow
name: str
"""
Identifier.
"""
args: Dict[str, Any]
"""
Arguments.
"""
timeout: int = 60
"""
Timeout in seconds.
"""
class ExperimentalOut(BaseModel):
class Config:
extra = Extra.allow
output: Dict[str, Any]
"""
Response.
"""
class BoxIn(BaseModel):
class Config:
extra = Extra.allow
value: Any
"""
Values to box.
"""
class BoxOut(BaseModel):
class Config:
extra = Extra.allow
value: Any
"""
The evaluated result.
"""
class IfIn(BaseModel):
class Config:
extra = Extra.allow
condition: bool
"""
Condition.
"""
value_if_true: Any
"""
Result when condition is true.
"""
value_if_false: Optional[Any] = None
"""
Result when condition is false.
"""
class IfOut(BaseModel):
class Config:
extra = Extra.allow
result: Any
"""
Result. Null if `value_if_false` is not provided and `condition` is false.
"""
class RunPythonIn(BaseModel):
class Config:
extra = Extra.allow
pkl_function: Optional[str] = None
"""
Pickled function.
"""
kwargs: Dict[str, Any]
"""
Keyword arguments to your function.
"""
python_version: Optional[str] = None
"""
Python version.
"""
pip_install: Optional[List[str]] = None
"""
Python packages to install. You must import them in your code.
"""
class RunPythonOut(BaseModel):
class Config:
extra = Extra.allow
output: Optional[Any] = None
"""
Return value of your function.
"""
pkl_output: Optional[str] = None
"""
Pickled return value.
"""
stdout: str
"""
Everything printed to stdout while running your code.
"""
stderr: str
"""
Contents of stderr if your code did not run successfully.
"""
class ComputeTextIn(BaseModel):
class Config:
extra = Extra.allow
prompt: str
"""
Input prompt.
"""
image_uris: Optional[List[str]] = None
"""
Image prompts.
"""
temperature: Annotated[float, Field(ge=0.0, le=1.0)] = 0.4
"""
Sampling temperature to use. Higher values make the output more random, lower values make the output more deterministic.
"""
max_tokens: Optional[int] = None
"""
Maximum number of tokens to generate.
"""
model: Literal[
"Mistral7BInstruct",
"Mixtral8x7BInstruct",
"Llama3Instruct8B",
"Llama3Instruct70B",
"Llama3Instruct405B",
"Firellava13B",
"gpt-4o",
"gpt-4o-mini",
"claude-3-5-sonnet-20240620",
] = "Llama3Instruct8B"
"""
Selected model. `Firellava13B` is automatically selected when `image_uris` is provided.
"""
class ComputeTextOut(BaseModel):
class Config:
extra = Extra.allow
text: str
"""
Text response.
"""
class ComputeJSONIn(BaseModel):
class Config:
extra = Extra.allow
prompt: str
"""
Input prompt.
"""
json_schema: Dict[str, Any]
"""
JSON schema to guide `json_object` response.
"""
temperature: Annotated[float, Field(ge=0.0, le=1.0)] = 0.4
"""
Sampling temperature to use. Higher values make the output more random, lower values make the output more deterministic.
"""
max_tokens: Optional[int] = None
"""
Maximum number of tokens to generate.
"""
model: Literal[
"Mistral7BInstruct",
"Mixtral8x7BInstruct",
"Llama3Instruct8B",
"Llama3Instruct70B",
"gpt-4o",
] = "Llama3Instruct8B"
"""
Selected model.
"""
class ComputeJSONOut(BaseModel):
class Config:
extra = Extra.allow
json_object: Optional[Dict[str, Any]] = None
"""
JSON response.
"""
text: Optional[str] = None
"""
If the model output could not be parsed to JSON, this is the raw text output.
"""
class GenerateCodeChoice(BaseModel):
class Config:
extra = Extra.allow
code: str
"""
Code response.
"""
class GenerateCodeIn(BaseModel):
class Config:
extra = Extra.allow
prompt: str
"""
Input prompt.
"""
language: Literal[
"c",
"c++",
"c#",
"css",
"go",
"html",
"java",
"javascript",
"json",
"python",
"r",
"ruby",
"shell",
"sql",
"tex",
"typescript",
]
"""
Language of the code.
"""
temperature: Annotated[Optional[float], Field(ge=0.0, le=1.0)] = None
"""
Higher values make the output more random, lower values make the output more deterministic.
"""
max_tokens: Optional[int] = None
"""
Maximum number of tokens to generate.
"""
class GenerateCodeOut(BaseModel):
class Config:
extra = Extra.allow
code: str
"""
Code response.
"""
class MultiGenerateCodeIn(BaseModel):
class Config:
extra = Extra.allow
prompt: str
"""
Input prompt.
"""
language: Literal[
"c",
"c++",
"c#",
"css",
"go",
"html",
"java",
"javascript",
"json",
"python",
"r",
"ruby",
"shell",
"sql",
"tex",
"typescript",
]
"""
Language of the code.
"""
num_choices: Annotated[int, Field(ge=1, le=8)] = 1
"""
Number of choices to generate.
"""
temperature: Annotated[Optional[float], Field(ge=0.0, le=1.0)] = None
"""
Higher values make the output more random, lower values make the output more deterministic.
"""
max_tokens: Optional[int] = None
"""
Maximum number of tokens to generate.
"""
class MultiGenerateCodeOut(BaseModel):
class Config:
extra = Extra.allow
choices: List[GenerateCodeChoice]
"""
Code response choices.
"""
class MultiComputeTextIn(BaseModel):
class Config:
extra = Extra.allow
prompt: str
"""
Input prompt.
"""
num_choices: Annotated[int, Field(ge=1, le=8)]
"""
Number of choices to generate.
"""
temperature: Annotated[float, Field(ge=0.0, le=1.0)] = 0.4
"""
Sampling temperature to use. Higher values make the output more random, lower values make the output more deterministic.
"""
max_tokens: Optional[int] = None
"""
Maximum number of tokens to generate.
"""
model: Literal[
"Mistral7BInstruct",
"Mixtral8x7BInstruct",
"Llama3Instruct8B",
"Llama3Instruct70B",
] = "Llama3Instruct8B"
"""
Selected model.
"""
class MultiComputeTextOut(BaseModel):
class Config:
extra = Extra.allow
choices: List[ComputeTextOut]
"""
Response choices.
"""
class BatchComputeTextIn(BaseModel):
class Config:
extra = Extra.allow
prompts: List[str]
"""
Batch input prompts.
"""
temperature: Annotated[float, Field(ge=0.0, le=1.0)] = 0.4
"""
Sampling temperature to use. Higher values make the output more random, lower values make the output more deterministic.
"""
max_tokens: Optional[int] = None
"""
Maximum number of tokens to generate.
"""
model: Literal["Mistral7BInstruct", "Llama3Instruct8B"] = "Llama3Instruct8B"
"""
Selected model.
"""
class BatchComputeTextOut(BaseModel):
class Config:
extra = Extra.allow
outputs: List[ComputeTextOut]
"""
Batch outputs.
"""
class MultiComputeJSONIn(BaseModel):
class Config:
extra = Extra.allow
prompt: str
"""
Input prompt.
"""
json_schema: Dict[str, Any]
"""
JSON schema to guide `json_object` response.
"""
num_choices: Annotated[int, Field(ge=1, le=8)]
"""
Number of choices to generate.
"""
temperature: Annotated[float, Field(ge=0.0, le=1.0)] = 0.4
"""
Sampling temperature to use. Higher values make the output more random, lower values make the output more deterministic.
"""
max_tokens: Optional[int] = None
"""
Maximum number of tokens to generate.
"""
model: Literal["Mistral7BInstruct", "Mixtral8x7BInstruct", "Llama3Instruct8B"] = "Llama3Instruct8B"
"""
Selected model.
"""
class MultiComputeJSONOut(BaseModel):
class Config:
extra = Extra.allow
choices: List[ComputeJSONOut]
"""
Response choices.
"""
class BatchComputeJSONIn(BaseModel):
class Config:
extra = Extra.allow
prompts: List[str]
"""
Batch input prompts.
"""
json_schema: Dict[str, Any]
"""
JSON schema to guide `json_object` response.
"""
temperature: Annotated[float, Field(ge=0.0, le=1.0)] = 0.4
"""
Sampling temperature to use. Higher values make the output more random, lower values make the output more deterministic.
"""
max_tokens: Optional[int] = None
"""
Maximum number of tokens to generate.
"""
model: Literal["Mistral7BInstruct", "Llama3Instruct8B"] = "Llama3Instruct8B"
"""
Selected model.
"""
class BatchComputeJSONOut(BaseModel):
class Config:
extra = Extra.allow
outputs: List[ComputeJSONOut]
"""
Batch outputs.
"""
class Mistral7BInstructIn(BaseModel):
class Config:
extra = Extra.allow
prompt: str
"""
Input prompt.
"""
system_prompt: Optional[str] = None
"""
System prompt.
"""
num_choices: Annotated[int, Field(ge=1, le=8)] = 1
"""
Number of choices to generate.
"""
json_schema: Optional[Dict[str, Any]] = None
"""
JSON schema to guide response.
"""
temperature: Annotated[Optional[float], Field(ge=0.0, le=1.0)] = None
"""
Higher values make the output more random, lower values make the output more deterministic.
"""
frequency_penalty: Annotated[float, Field(ge=-2.0, le=2.0)] = 0.0
"""
Higher values decrease the likelihood of repeating previous tokens.
"""
repetition_penalty: Annotated[float, Field(ge=-2.0, le=2.0)] = 1.0
"""
Higher values decrease the likelihood of repeated sequences.
"""
presence_penalty: Annotated[float, Field(ge=-2.0, le=2.0)] = 1.1
"""
Higher values increase the likelihood of new topics appearing.
"""
top_p: Annotated[float, Field(ge=0.0, le=1.0)] = 0.95
"""
Probability below which less likely tokens are filtered out.
"""
max_tokens: Optional[int] = None
"""
Maximum number of tokens to generate.
"""
class Mistral7BInstructChoice(BaseModel):
class Config:
extra = Extra.allow
text: Optional[str] = None
"""
Text response, if `json_schema` was not provided.
"""
json_object: Optional[Dict[str, Any]] = None
"""
JSON response, if `json_schema` was provided.
"""
class Mistral7BInstructOut(BaseModel):
class Config:
extra = Extra.allow
choices: List[Mistral7BInstructChoice]
"""
Response choices.
"""
class Mixtral8x7BInstructIn(BaseModel):
class Config:
extra = Extra.allow
prompt: str
"""
Input prompt.
"""
system_prompt: Optional[str] = None
"""
System prompt.
"""
num_choices: Annotated[int, Field(ge=1, le=8)] = 1
"""
Number of choices to generate.
"""
json_schema: Optional[Dict[str, Any]] = None
"""
JSON schema to guide response.
"""
temperature: Annotated[Optional[float], Field(ge=0.0, le=1.0)] = None
"""
Higher values make the output more random, lower values make the output more deterministic.
"""
frequency_penalty: Annotated[float, Field(ge=-2.0, le=2.0)] = 0.0
"""
Higher values decrease the likelihood of repeating previous tokens.
"""
repetition_penalty: Annotated[float, Field(ge=-2.0, le=2.0)] = 1.0
"""
Higher values decrease the likelihood of repeated sequences.
"""
presence_penalty: Annotated[float, Field(ge=-2.0, le=2.0)] = 1.1
"""
Higher values increase the likelihood of new topics appearing.
"""
top_p: Annotated[float, Field(ge=0.0, le=1.0)] = 0.95
"""
Probability below which less likely tokens are filtered out.
"""
max_tokens: Optional[int] = None
"""
Maximum number of tokens to generate.
"""
class Mixtral8x7BChoice(BaseModel):
class Config:
extra = Extra.allow
text: Optional[str] = None
"""
Text response, if `json_schema` was not provided.
"""
json_object: Optional[Dict[str, Any]] = None
"""
JSON response, if `json_schema` was provided.
"""
class Mixtral8x7BInstructOut(BaseModel):
class Config:
extra = Extra.allow
choices: List[Mixtral8x7BChoice]
"""
Response choices.
"""
class Llama3Instruct8BIn(BaseModel):
class Config:
extra = Extra.allow
prompt: str
"""
Input prompt.
"""
system_prompt: Optional[str] = None
"""
System prompt.
"""
num_choices: Annotated[int, Field(ge=1, le=8)] = 1
"""
Number of choices to generate.
"""
temperature: Annotated[Optional[float], Field(ge=0.0, le=1.0)] = None
"""
Higher values make the output more random, lower values make the output more deterministic.
"""
frequency_penalty: Annotated[float, Field(ge=-2.0, le=2.0)] = 0.0
"""
Higher values decrease the likelihood of repeating previous tokens.
"""
repetition_penalty: Annotated[float, Field(ge=-2.0, le=2.0)] = 1.0
"""
Higher values decrease the likelihood of repeated sequences.
"""
presence_penalty: Annotated[float, Field(ge=-2.0, le=2.0)] = 1.1
"""
Higher values increase the likelihood of new topics appearing.
"""
top_p: Annotated[float, Field(ge=0.0, le=1.0)] = 0.95
"""
Probability below which less likely tokens are filtered out.
"""
max_tokens: Optional[int] = None
"""
Maximum number of tokens to generate.
"""
json_schema: Optional[Dict[str, Any]] = None
"""
JSON schema to guide response.
"""
class Llama3Instruct8BChoice(BaseModel):
class Config:
extra = Extra.allow
text: Optional[str] = None
"""
Text response.
"""
json_object: Optional[Dict[str, Any]] = None
"""
JSON response, if `json_schema` was provided.
"""
class Llama3Instruct8BOut(BaseModel):
class Config:
extra = Extra.allow
choices: List[Llama3Instruct8BChoice]
"""
Response choices.
"""
class Llama3Instruct70BIn(BaseModel):
class Config:
extra = Extra.allow
prompt: str
"""
Input prompt.
"""
system_prompt: Optional[str] = None
"""
System prompt.
"""
num_choices: Annotated[int, Field(ge=1, le=8)] = 1
"""
Number of choices to generate.
"""
temperature: Annotated[Optional[float], Field(ge=0.0, le=1.0)] = None
"""
Higher values make the output more random, lower values make the output more deterministic.
"""
frequency_penalty: Annotated[float, Field(ge=-2.0, le=2.0)] = 0.0
"""
Higher values decrease the likelihood of repeating previous tokens.
"""
repetition_penalty: Annotated[float, Field(ge=-2.0, le=2.0)] = 1.0
"""
Higher values decrease the likelihood of repeated sequences.
"""
presence_penalty: Annotated[float, Field(ge=-2.0, le=2.0)] = 1.1
"""
Higher values increase the likelihood of new topics appearing.
"""
top_p: Annotated[float, Field(ge=0.0, le=1.0)] = 0.95
"""
Probability below which less likely tokens are filtered out.
"""
max_tokens: Optional[int] = None
"""
Maximum number of tokens to generate.
"""
class Llama3Instruct70BChoice(BaseModel):
class Config:
extra = Extra.allow
text: Optional[str] = None
"""
Text response.
"""
class Llama3Instruct70BOut(BaseModel):
class Config:
extra = Extra.allow
choices: List[Llama3Instruct70BChoice]
"""
Response choices.
"""
class Firellava13BIn(BaseModel):
class Config:
extra = Extra.allow
prompt: str
"""
Text prompt.
"""
image_uris: List[str]
"""
Image prompts.
"""
max_tokens: Optional[int] = None
"""
Maximum number of tokens to generate.
"""
class Firellava13BOut(BaseModel):
class Config:
extra = Extra.allow
text: str
"""
Text response.
"""
class GenerateImageIn(BaseModel):
class Config:
extra = Extra.allow
prompt: str
"""
Text prompt.
"""
store: Optional[str] = None
"""
Use "hosted" to return an image URL hosted on Substrate. You can also provide a URL to a registered [file store](https://docs.substrate.run/reference/external-files). If unset, the image data will be returned as a base64-encoded string.
"""
class GenerateImageOut(BaseModel):
class Config:
extra = Extra.allow
image_uri: str
"""
Base 64-encoded JPEG image bytes, or a hosted image url if `store` is provided.
"""
class MultiGenerateImageIn(BaseModel):
class Config:
extra = Extra.allow
prompt: str
"""
Text prompt.
"""
num_images: Annotated[int, Field(ge=1, le=8)]
"""
Number of images to generate.
"""
store: Optional[str] = None
"""
Use "hosted" to return an image URL hosted on Substrate. You can also provide a URL to a registered [file store](https://docs.substrate.run/reference/external-files). If unset, the image data will be returned as a base64-encoded string.
"""
class MultiGenerateImageOut(BaseModel):
class Config:
extra = Extra.allow
outputs: List[GenerateImageOut]
"""
Generated images.
"""
class StableDiffusionXLIn(BaseModel):
class Config:
extra = Extra.allow
prompt: str
"""
Text prompt.
"""
negative_prompt: Optional[str] = None
"""
Negative input prompt.
"""
steps: Annotated[int, Field(ge=0, le=150)] = 30
"""
Number of diffusion steps.
"""
num_images: Annotated[int, Field(ge=1, le=8)]
"""
Number of images to generate.
"""
store: Optional[str] = None
"""
Use "hosted" to return an image URL hosted on Substrate. You can also provide a URL to a registered [file store](https://docs.substrate.run/reference/external-files). If unset, the image data will be returned as a base64-encoded string.
"""
height: Annotated[int, Field(ge=256, le=1536)] = 1024
"""
Height of output image, in pixels.
"""
width: Annotated[int, Field(ge=256, le=1536)] = 1024
"""
Width of output image, in pixels.
"""
seeds: Optional[List[int]] = None
"""
Seeds for deterministic generation. Default is a random seed.
"""
guidance_scale: Annotated[float, Field(ge=0.0, le=30.0)] = 7
"""
Higher values adhere to the text prompt more strongly, typically at the expense of image quality.
"""
class StableDiffusionImage(BaseModel):
class Config:
extra = Extra.allow
image_uri: str
"""
Base 64-encoded JPEG image bytes, or a hosted image url if `store` is provided.
"""
seed: int
"""
The random noise seed used for generation.
"""
class StableDiffusionXLOut(BaseModel):
class Config:
extra = Extra.allow
outputs: List[StableDiffusionImage]
"""
Generated images.
"""
class StableDiffusionXLLightningIn(BaseModel):
class Config:
extra = Extra.allow
prompt: str
"""
Text prompt.
"""
negative_prompt: Optional[str] = None
"""
Negative input prompt.
"""
num_images: Annotated[int, Field(ge=1, le=8)] = 1
"""
Number of images to generate.
"""
store: Optional[str] = None
"""
Use "hosted" to return an image URL hosted on Substrate. You can also provide a URL to a registered [file store](https://docs.substrate.run/reference/external-files). If unset, the image data will be returned as a base64-encoded string.
"""
height: Annotated[int, Field(ge=256, le=1536)] = 1024
"""
Height of output image, in pixels.
"""
width: Annotated[int, Field(ge=256, le=1536)] = 1024
"""
Width of output image, in pixels.
"""
seeds: Optional[List[int]] = None
"""
Seeds for deterministic generation. Default is a random seed.
"""
class StableDiffusionXLLightningOut(BaseModel):
class Config:
extra = Extra.allow
outputs: List[StableDiffusionImage]
"""
Generated images.
"""
class StableDiffusionXLIPAdapterIn(BaseModel):
class Config:
extra = Extra.allow
prompt: str
"""
Text prompt.
"""
image_prompt_uri: str
"""
Image prompt.
"""
num_images: Annotated[int, Field(ge=1, le=8)]
"""
Number of images to generate.
"""
ip_adapter_scale: Annotated[float, Field(ge=0.0, le=1.0)] = 0.5
"""
Controls the influence of the image prompt on the generated output.
"""
negative_prompt: Optional[str] = None
"""
Negative input prompt.
"""
store: Optional[str] = None
"""
Use "hosted" to return an image URL hosted on Substrate. You can also provide a URL to a registered [file store](https://docs.substrate.run/reference/external-files). If unset, the image data will be returned as a base64-encoded string.
"""
width: Annotated[int, Field(ge=640, le=1536)] = 1024
"""
Width of output image, in pixels.
"""
height: Annotated[int, Field(ge=640, le=1536)] = 1024