-
Notifications
You must be signed in to change notification settings - Fork 27
/
runner.gen.go
2812 lines (2312 loc) · 89.1 KB
/
runner.gen.go
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
// Package worker provides primitives to interact with the openapi HTTP API.
//
// Code generated by github.com/deepmap/oapi-codegen/v2 version v2.2.0 DO NOT EDIT.
package worker
import (
"bytes"
"compress/gzip"
"context"
"encoding/base64"
"encoding/json"
"fmt"
"io"
"net/http"
"net/url"
"path"
"strings"
"github.com/getkin/kin-openapi/openapi3"
"github.com/go-chi/chi/v5"
"github.com/oapi-codegen/runtime"
openapi_types "github.com/oapi-codegen/runtime/types"
)
const (
HTTPBearerScopes = "HTTPBearer.Scopes"
)
// APIError API error response model.
type APIError struct {
// Msg The error message.
Msg string `json:"msg"`
}
// AudioResponse Response model for audio generation.
type AudioResponse struct {
// Audio The generated audio.
Audio MediaURL `json:"audio"`
}
// BodyGenAudioToText defines model for Body_genAudioToText.
type BodyGenAudioToText struct {
// Audio Uploaded audio file to be transcribed.
Audio openapi_types.File `json:"audio"`
// Metadata Additional job information to be passed to the pipeline.
Metadata *string `json:"metadata,omitempty"`
// ModelId Hugging Face model ID used for transcription.
ModelId *string `json:"model_id,omitempty"`
// ReturnTimestamps Return timestamps for the transcribed text. Supported values: 'sentence', 'word', or a string boolean ('true' or 'false'). Default is 'true' ('sentence'). 'false' means no timestamps. 'word' means word-based timestamps.
ReturnTimestamps *string `json:"return_timestamps,omitempty"`
}
// BodyGenImageToImage defines model for Body_genImageToImage.
type BodyGenImageToImage struct {
// GuidanceScale Encourages model to generate images closely linked to the text prompt (higher values may reduce image quality).
GuidanceScale *float32 `json:"guidance_scale,omitempty"`
// Image Uploaded image to modify with the pipeline.
Image openapi_types.File `json:"image"`
// ImageGuidanceScale Degree to which the generated image is pushed towards the initial image.
ImageGuidanceScale *float32 `json:"image_guidance_scale,omitempty"`
// Loras A LoRA (Low-Rank Adaptation) model and its corresponding weight for image generation. Example: { "latent-consistency/lcm-lora-sdxl": 1.0, "nerijs/pixel-art-xl": 1.2}.
Loras *string `json:"loras,omitempty"`
// ModelId Hugging Face model ID used for image generation.
ModelId *string `json:"model_id,omitempty"`
// NegativePrompt Text prompt(s) to guide what to exclude from image generation. Ignored if guidance_scale < 1.
NegativePrompt *string `json:"negative_prompt,omitempty"`
// NumImagesPerPrompt Number of images to generate per prompt.
NumImagesPerPrompt *int `json:"num_images_per_prompt,omitempty"`
// NumInferenceSteps Number of denoising steps. More steps usually lead to higher quality images but slower inference. Modulated by strength.
NumInferenceSteps *int `json:"num_inference_steps,omitempty"`
// Prompt Text prompt(s) to guide image generation.
Prompt string `json:"prompt"`
// SafetyCheck Perform a safety check to estimate if generated images could be offensive or harmful.
SafetyCheck *bool `json:"safety_check,omitempty"`
// Seed Seed for random number generation.
Seed *int `json:"seed,omitempty"`
// Strength Degree of transformation applied to the reference image (0 to 1).
Strength *float32 `json:"strength,omitempty"`
}
// BodyGenImageToText defines model for Body_genImageToText.
type BodyGenImageToText struct {
// Image Uploaded image to transform with the pipeline.
Image openapi_types.File `json:"image"`
// ModelId Hugging Face model ID used for transformation.
ModelId *string `json:"model_id,omitempty"`
// Prompt Text prompt(s) to guide transformation.
Prompt *string `json:"prompt,omitempty"`
}
// BodyGenImageToVideo defines model for Body_genImageToVideo.
type BodyGenImageToVideo struct {
// Fps The frames per second of the generated video.
Fps *int `json:"fps,omitempty"`
// Height The height in pixels of the generated video.
Height *int `json:"height,omitempty"`
// Image Uploaded image to generate a video from.
Image openapi_types.File `json:"image"`
// ModelId Hugging Face model ID used for video generation.
ModelId *string `json:"model_id,omitempty"`
// MotionBucketId Used for conditioning the amount of motion for the generation. The higher the number the more motion will be in the video.
MotionBucketId *int `json:"motion_bucket_id,omitempty"`
// NoiseAugStrength Amount of noise added to the conditioning image. Higher values reduce resemblance to the conditioning image and increase motion.
NoiseAugStrength *float32 `json:"noise_aug_strength,omitempty"`
// NumInferenceSteps Number of denoising steps. More steps usually lead to higher quality images but slower inference. Modulated by strength.
NumInferenceSteps *int `json:"num_inference_steps,omitempty"`
// SafetyCheck Perform a safety check to estimate if generated images could be offensive or harmful.
SafetyCheck *bool `json:"safety_check,omitempty"`
// Seed Seed for random number generation.
Seed *int `json:"seed,omitempty"`
// Width The width in pixels of the generated video.
Width *int `json:"width,omitempty"`
}
// BodyGenLLM defines model for Body_genLLM.
type BodyGenLLM struct {
History *string `json:"history,omitempty"`
MaxTokens *int `json:"max_tokens,omitempty"`
ModelId *string `json:"model_id,omitempty"`
Prompt string `json:"prompt"`
Stream *bool `json:"stream,omitempty"`
SystemMsg *string `json:"system_msg,omitempty"`
Temperature *float32 `json:"temperature,omitempty"`
}
// BodyGenSegmentAnything2 defines model for Body_genSegmentAnything2.
type BodyGenSegmentAnything2 struct {
// Box A length 4 array given as a box prompt to the model, in XYXY format.
Box *string `json:"box,omitempty"`
// Image Image to segment.
Image openapi_types.File `json:"image"`
// MaskInput A low-resolution mask input to the model, typically from a previous prediction iteration, with the form 1xHxW (H=W=256 for SAM).
MaskInput *string `json:"mask_input,omitempty"`
// ModelId Hugging Face model ID used for image generation.
ModelId *string `json:"model_id,omitempty"`
// MultimaskOutput If true, the model will return three masks for ambiguous input prompts, often producing better masks than a single prediction.
MultimaskOutput *bool `json:"multimask_output,omitempty"`
// NormalizeCoords If true, the point coordinates will be normalized to the range [0,1], with point_coords expected to be with respect to image dimensions.
NormalizeCoords *bool `json:"normalize_coords,omitempty"`
// PointCoords Nx2 array of point prompts to the model, where each point is in (X,Y) in pixels.
PointCoords *string `json:"point_coords,omitempty"`
// PointLabels Labels for the point prompts, where 1 indicates a foreground point and 0 indicates a background point.
PointLabels *string `json:"point_labels,omitempty"`
// ReturnLogits If true, returns un-thresholded mask logits instead of a binary mask.
ReturnLogits *bool `json:"return_logits,omitempty"`
}
// BodyGenUpscale defines model for Body_genUpscale.
type BodyGenUpscale struct {
// Image Uploaded image to modify with the pipeline.
Image openapi_types.File `json:"image"`
// ModelId Hugging Face model ID used for upscaled image generation.
ModelId *string `json:"model_id,omitempty"`
// NumInferenceSteps Number of denoising steps. More steps usually lead to higher quality images but slower inference. Modulated by strength.
NumInferenceSteps *int `json:"num_inference_steps,omitempty"`
// Prompt Text prompt(s) to guide upscaled image generation.
Prompt string `json:"prompt"`
// SafetyCheck Perform a safety check to estimate if generated images could be offensive or harmful.
SafetyCheck *bool `json:"safety_check,omitempty"`
// Seed Seed for random number generation.
Seed *int `json:"seed,omitempty"`
}
// Chunk A chunk of text with a timestamp.
type Chunk struct {
// Text The text of the chunk.
Text string `json:"text"`
// Timestamp The timestamp of the chunk.
Timestamp []interface{} `json:"timestamp"`
}
// HTTPError HTTP error response model.
type HTTPError struct {
// Detail Detailed error information.
Detail APIError `json:"detail"`
}
// HTTPValidationError defines model for HTTPValidationError.
type HTTPValidationError struct {
Detail *[]ValidationError `json:"detail,omitempty"`
}
// HealthCheck defines model for HealthCheck.
type HealthCheck struct {
Status *string `json:"status,omitempty"`
}
// ImageResponse Response model for image generation.
type ImageResponse struct {
// Images The generated images.
Images []Media `json:"images"`
}
// ImageToTextResponse Response model for text generation.
type ImageToTextResponse struct {
// Text The generated text.
Text string `json:"text"`
}
// LLMResponse defines model for LLMResponse.
type LLMResponse struct {
Response string `json:"response"`
TokensUsed int `json:"tokens_used"`
}
// LiveVideoToVideoParams defines model for LiveVideoToVideoParams.
type LiveVideoToVideoParams struct {
// ModelId Hugging Face model ID used for image generation.
ModelId *string `json:"model_id,omitempty"`
// Params Initial parameters for the model.
Params *map[string]interface{} `json:"params,omitempty"`
// PublishUrl Destination URL of the outgoing stream to publish.
PublishUrl string `json:"publish_url"`
// SubscribeUrl Source URL of the incoming stream to subscribe to.
SubscribeUrl string `json:"subscribe_url"`
}
// LiveVideoToVideoResponse Response model for live video-to-video generation.
type LiveVideoToVideoResponse struct {
// PublishUrl Destination URL of the outgoing stream to publish to
PublishUrl string `json:"publish_url"`
// SubscribeUrl Source URL of the incoming stream to subscribe to
SubscribeUrl string `json:"subscribe_url"`
}
// MasksResponse Response model for object segmentation.
type MasksResponse struct {
// Logits The raw, unnormalized predictions (logits) for the masks.
Logits string `json:"logits"`
// Masks The generated masks.
Masks string `json:"masks"`
// Scores The model's confidence scores for each generated mask.
Scores string `json:"scores"`
}
// Media A media object containing information about the generated media.
type Media struct {
// Nsfw Whether the media was flagged as NSFW.
Nsfw bool `json:"nsfw"`
// Seed The seed used to generate the media.
Seed int `json:"seed"`
// Url The URL where the media can be accessed.
Url string `json:"url"`
}
// MediaURL A URL from which media can be accessed.
type MediaURL struct {
// Url The URL where the media can be accessed.
Url string `json:"url"`
}
// TextResponse Response model for text generation.
type TextResponse struct {
// Chunks The generated text chunks.
Chunks []Chunk `json:"chunks"`
// Text The generated text.
Text string `json:"text"`
}
// TextToImageParams defines model for TextToImageParams.
type TextToImageParams struct {
// GuidanceScale Encourages model to generate images closely linked to the text prompt (higher values may reduce image quality).
GuidanceScale *float32 `json:"guidance_scale,omitempty"`
// Height The height in pixels of the generated image.
Height *int `json:"height,omitempty"`
// Loras A LoRA (Low-Rank Adaptation) model and its corresponding weight for image generation. Example: { "latent-consistency/lcm-lora-sdxl": 1.0, "nerijs/pixel-art-xl": 1.2}.
Loras *string `json:"loras,omitempty"`
// ModelId Hugging Face model ID used for image generation.
ModelId *string `json:"model_id,omitempty"`
// NegativePrompt Text prompt(s) to guide what to exclude from image generation. Ignored if guidance_scale < 1.
NegativePrompt *string `json:"negative_prompt,omitempty"`
// NumImagesPerPrompt Number of images to generate per prompt.
NumImagesPerPrompt *int `json:"num_images_per_prompt,omitempty"`
// NumInferenceSteps Number of denoising steps. More steps usually lead to higher quality images but slower inference. Modulated by strength.
NumInferenceSteps *int `json:"num_inference_steps,omitempty"`
// Prompt Text prompt(s) to guide image generation. Separate multiple prompts with '|' if supported by the model.
Prompt string `json:"prompt"`
// SafetyCheck Perform a safety check to estimate if generated images could be offensive or harmful.
SafetyCheck *bool `json:"safety_check,omitempty"`
// Seed Seed for random number generation.
Seed *int `json:"seed,omitempty"`
// Width The width in pixels of the generated image.
Width *int `json:"width,omitempty"`
}
// TextToSpeechParams defines model for TextToSpeechParams.
type TextToSpeechParams struct {
// Description Description of speaker to steer text to speech generation.
Description *string `json:"description,omitempty"`
// ModelId Hugging Face model ID used for text to speech generation.
ModelId *string `json:"model_id,omitempty"`
// Text Text input for speech generation.
Text *string `json:"text,omitempty"`
}
// ValidationError defines model for ValidationError.
type ValidationError struct {
Loc []ValidationError_Loc_Item `json:"loc"`
Msg string `json:"msg"`
Type string `json:"type"`
}
// ValidationErrorLoc0 defines model for .
type ValidationErrorLoc0 = string
// ValidationErrorLoc1 defines model for .
type ValidationErrorLoc1 = int
// ValidationError_Loc_Item defines model for ValidationError.loc.Item.
type ValidationError_Loc_Item struct {
union json.RawMessage
}
// VideoResponse Response model for video generation.
type VideoResponse struct {
// Frames The generated video frames.
Frames [][]Media `json:"frames"`
}
// GenAudioToTextMultipartRequestBody defines body for GenAudioToText for multipart/form-data ContentType.
type GenAudioToTextMultipartRequestBody = BodyGenAudioToText
// GenImageToImageMultipartRequestBody defines body for GenImageToImage for multipart/form-data ContentType.
type GenImageToImageMultipartRequestBody = BodyGenImageToImage
// GenImageToTextMultipartRequestBody defines body for GenImageToText for multipart/form-data ContentType.
type GenImageToTextMultipartRequestBody = BodyGenImageToText
// GenImageToVideoMultipartRequestBody defines body for GenImageToVideo for multipart/form-data ContentType.
type GenImageToVideoMultipartRequestBody = BodyGenImageToVideo
// GenLiveVideoToVideoJSONRequestBody defines body for GenLiveVideoToVideo for application/json ContentType.
type GenLiveVideoToVideoJSONRequestBody = LiveVideoToVideoParams
// GenLLMFormdataRequestBody defines body for GenLLM for application/x-www-form-urlencoded ContentType.
type GenLLMFormdataRequestBody = BodyGenLLM
// GenSegmentAnything2MultipartRequestBody defines body for GenSegmentAnything2 for multipart/form-data ContentType.
type GenSegmentAnything2MultipartRequestBody = BodyGenSegmentAnything2
// GenTextToImageJSONRequestBody defines body for GenTextToImage for application/json ContentType.
type GenTextToImageJSONRequestBody = TextToImageParams
// GenTextToSpeechJSONRequestBody defines body for GenTextToSpeech for application/json ContentType.
type GenTextToSpeechJSONRequestBody = TextToSpeechParams
// GenUpscaleMultipartRequestBody defines body for GenUpscale for multipart/form-data ContentType.
type GenUpscaleMultipartRequestBody = BodyGenUpscale
// AsValidationErrorLoc0 returns the union data inside the ValidationError_Loc_Item as a ValidationErrorLoc0
func (t ValidationError_Loc_Item) AsValidationErrorLoc0() (ValidationErrorLoc0, error) {
var body ValidationErrorLoc0
err := json.Unmarshal(t.union, &body)
return body, err
}
// FromValidationErrorLoc0 overwrites any union data inside the ValidationError_Loc_Item as the provided ValidationErrorLoc0
func (t *ValidationError_Loc_Item) FromValidationErrorLoc0(v ValidationErrorLoc0) error {
b, err := json.Marshal(v)
t.union = b
return err
}
// MergeValidationErrorLoc0 performs a merge with any union data inside the ValidationError_Loc_Item, using the provided ValidationErrorLoc0
func (t *ValidationError_Loc_Item) MergeValidationErrorLoc0(v ValidationErrorLoc0) error {
b, err := json.Marshal(v)
if err != nil {
return err
}
merged, err := runtime.JSONMerge(t.union, b)
t.union = merged
return err
}
// AsValidationErrorLoc1 returns the union data inside the ValidationError_Loc_Item as a ValidationErrorLoc1
func (t ValidationError_Loc_Item) AsValidationErrorLoc1() (ValidationErrorLoc1, error) {
var body ValidationErrorLoc1
err := json.Unmarshal(t.union, &body)
return body, err
}
// FromValidationErrorLoc1 overwrites any union data inside the ValidationError_Loc_Item as the provided ValidationErrorLoc1
func (t *ValidationError_Loc_Item) FromValidationErrorLoc1(v ValidationErrorLoc1) error {
b, err := json.Marshal(v)
t.union = b
return err
}
// MergeValidationErrorLoc1 performs a merge with any union data inside the ValidationError_Loc_Item, using the provided ValidationErrorLoc1
func (t *ValidationError_Loc_Item) MergeValidationErrorLoc1(v ValidationErrorLoc1) error {
b, err := json.Marshal(v)
if err != nil {
return err
}
merged, err := runtime.JSONMerge(t.union, b)
t.union = merged
return err
}
func (t ValidationError_Loc_Item) MarshalJSON() ([]byte, error) {
b, err := t.union.MarshalJSON()
return b, err
}
func (t *ValidationError_Loc_Item) UnmarshalJSON(b []byte) error {
err := t.union.UnmarshalJSON(b)
return err
}
// RequestEditorFn is the function signature for the RequestEditor callback function
type RequestEditorFn func(ctx context.Context, req *http.Request) error
// Doer performs HTTP requests.
//
// The standard http.Client implements this interface.
type HttpRequestDoer interface {
Do(req *http.Request) (*http.Response, error)
}
// Client which conforms to the OpenAPI3 specification for this service.
type Client struct {
// The endpoint of the server conforming to this interface, with scheme,
// https://api.deepmap.com for example. This can contain a path relative
// to the server, such as https://api.deepmap.com/dev-test, and all the
// paths in the swagger spec will be appended to the server.
Server string
// Doer for performing requests, typically a *http.Client with any
// customized settings, such as certificate chains.
Client HttpRequestDoer
// A list of callbacks for modifying requests which are generated before sending over
// the network.
RequestEditors []RequestEditorFn
}
// ClientOption allows setting custom parameters during construction
type ClientOption func(*Client) error
// Creates a new Client, with reasonable defaults
func NewClient(server string, opts ...ClientOption) (*Client, error) {
// create a client with sane default values
client := Client{
Server: server,
}
// mutate client and add all optional params
for _, o := range opts {
if err := o(&client); err != nil {
return nil, err
}
}
// ensure the server URL always has a trailing slash
if !strings.HasSuffix(client.Server, "/") {
client.Server += "/"
}
// create httpClient, if not already present
if client.Client == nil {
client.Client = &http.Client{}
}
return &client, nil
}
// WithHTTPClient allows overriding the default Doer, which is
// automatically created using http.Client. This is useful for tests.
func WithHTTPClient(doer HttpRequestDoer) ClientOption {
return func(c *Client) error {
c.Client = doer
return nil
}
}
// WithRequestEditorFn allows setting up a callback function, which will be
// called right before sending the request. This can be used to mutate the request.
func WithRequestEditorFn(fn RequestEditorFn) ClientOption {
return func(c *Client) error {
c.RequestEditors = append(c.RequestEditors, fn)
return nil
}
}
// The interface specification for the client above.
type ClientInterface interface {
// GenAudioToTextWithBody request with any body
GenAudioToTextWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
// Health request
Health(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error)
// GenImageToImageWithBody request with any body
GenImageToImageWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
// GenImageToTextWithBody request with any body
GenImageToTextWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
// GenImageToVideoWithBody request with any body
GenImageToVideoWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
// GenLiveVideoToVideoWithBody request with any body
GenLiveVideoToVideoWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
GenLiveVideoToVideo(ctx context.Context, body GenLiveVideoToVideoJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
// GenLLMWithBody request with any body
GenLLMWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
GenLLMWithFormdataBody(ctx context.Context, body GenLLMFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
// GenSegmentAnything2WithBody request with any body
GenSegmentAnything2WithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
// GenTextToImageWithBody request with any body
GenTextToImageWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
GenTextToImage(ctx context.Context, body GenTextToImageJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
// GenTextToSpeechWithBody request with any body
GenTextToSpeechWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
GenTextToSpeech(ctx context.Context, body GenTextToSpeechJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)
// GenUpscaleWithBody request with any body
GenUpscaleWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
}
func (c *Client) GenAudioToTextWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
req, err := NewGenAudioToTextRequestWithBody(c.Server, contentType, body)
if err != nil {
return nil, err
}
req = req.WithContext(ctx)
if err := c.applyEditors(ctx, req, reqEditors); err != nil {
return nil, err
}
return c.Client.Do(req)
}
func (c *Client) Health(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) {
req, err := NewHealthRequest(c.Server)
if err != nil {
return nil, err
}
req = req.WithContext(ctx)
if err := c.applyEditors(ctx, req, reqEditors); err != nil {
return nil, err
}
return c.Client.Do(req)
}
func (c *Client) GenImageToImageWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
req, err := NewGenImageToImageRequestWithBody(c.Server, contentType, body)
if err != nil {
return nil, err
}
req = req.WithContext(ctx)
if err := c.applyEditors(ctx, req, reqEditors); err != nil {
return nil, err
}
return c.Client.Do(req)
}
func (c *Client) GenImageToTextWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
req, err := NewGenImageToTextRequestWithBody(c.Server, contentType, body)
if err != nil {
return nil, err
}
req = req.WithContext(ctx)
if err := c.applyEditors(ctx, req, reqEditors); err != nil {
return nil, err
}
return c.Client.Do(req)
}
func (c *Client) GenImageToVideoWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
req, err := NewGenImageToVideoRequestWithBody(c.Server, contentType, body)
if err != nil {
return nil, err
}
req = req.WithContext(ctx)
if err := c.applyEditors(ctx, req, reqEditors); err != nil {
return nil, err
}
return c.Client.Do(req)
}
func (c *Client) GenLiveVideoToVideoWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
req, err := NewGenLiveVideoToVideoRequestWithBody(c.Server, contentType, body)
if err != nil {
return nil, err
}
req = req.WithContext(ctx)
if err := c.applyEditors(ctx, req, reqEditors); err != nil {
return nil, err
}
return c.Client.Do(req)
}
func (c *Client) GenLiveVideoToVideo(ctx context.Context, body GenLiveVideoToVideoJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
req, err := NewGenLiveVideoToVideoRequest(c.Server, body)
if err != nil {
return nil, err
}
req = req.WithContext(ctx)
if err := c.applyEditors(ctx, req, reqEditors); err != nil {
return nil, err
}
return c.Client.Do(req)
}
func (c *Client) GenLLMWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
req, err := NewGenLLMRequestWithBody(c.Server, contentType, body)
if err != nil {
return nil, err
}
req = req.WithContext(ctx)
if err := c.applyEditors(ctx, req, reqEditors); err != nil {
return nil, err
}
return c.Client.Do(req)
}
func (c *Client) GenLLMWithFormdataBody(ctx context.Context, body GenLLMFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
req, err := NewGenLLMRequestWithFormdataBody(c.Server, body)
if err != nil {
return nil, err
}
req = req.WithContext(ctx)
if err := c.applyEditors(ctx, req, reqEditors); err != nil {
return nil, err
}
return c.Client.Do(req)
}
func (c *Client) GenSegmentAnything2WithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
req, err := NewGenSegmentAnything2RequestWithBody(c.Server, contentType, body)
if err != nil {
return nil, err
}
req = req.WithContext(ctx)
if err := c.applyEditors(ctx, req, reqEditors); err != nil {
return nil, err
}
return c.Client.Do(req)
}
func (c *Client) GenTextToImageWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
req, err := NewGenTextToImageRequestWithBody(c.Server, contentType, body)
if err != nil {
return nil, err
}
req = req.WithContext(ctx)
if err := c.applyEditors(ctx, req, reqEditors); err != nil {
return nil, err
}
return c.Client.Do(req)
}
func (c *Client) GenTextToImage(ctx context.Context, body GenTextToImageJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
req, err := NewGenTextToImageRequest(c.Server, body)
if err != nil {
return nil, err
}
req = req.WithContext(ctx)
if err := c.applyEditors(ctx, req, reqEditors); err != nil {
return nil, err
}
return c.Client.Do(req)
}
func (c *Client) GenTextToSpeechWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
req, err := NewGenTextToSpeechRequestWithBody(c.Server, contentType, body)
if err != nil {
return nil, err
}
req = req.WithContext(ctx)
if err := c.applyEditors(ctx, req, reqEditors); err != nil {
return nil, err
}
return c.Client.Do(req)
}
func (c *Client) GenTextToSpeech(ctx context.Context, body GenTextToSpeechJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) {
req, err := NewGenTextToSpeechRequest(c.Server, body)
if err != nil {
return nil, err
}
req = req.WithContext(ctx)
if err := c.applyEditors(ctx, req, reqEditors); err != nil {
return nil, err
}
return c.Client.Do(req)
}
func (c *Client) GenUpscaleWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
req, err := NewGenUpscaleRequestWithBody(c.Server, contentType, body)
if err != nil {
return nil, err
}
req = req.WithContext(ctx)
if err := c.applyEditors(ctx, req, reqEditors); err != nil {
return nil, err
}
return c.Client.Do(req)
}
// NewGenAudioToTextRequestWithBody generates requests for GenAudioToText with any type of body
func NewGenAudioToTextRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error) {
var err error
serverURL, err := url.Parse(server)
if err != nil {
return nil, err
}
operationPath := fmt.Sprintf("/audio-to-text")
if operationPath[0] == '/' {
operationPath = "." + operationPath
}
queryURL, err := serverURL.Parse(operationPath)
if err != nil {
return nil, err
}
req, err := http.NewRequest("POST", queryURL.String(), body)
if err != nil {
return nil, err
}
req.Header.Add("Content-Type", contentType)
return req, nil
}
// NewHealthRequest generates requests for Health
func NewHealthRequest(server string) (*http.Request, error) {
var err error
serverURL, err := url.Parse(server)
if err != nil {
return nil, err
}
operationPath := fmt.Sprintf("/health")
if operationPath[0] == '/' {
operationPath = "." + operationPath
}
queryURL, err := serverURL.Parse(operationPath)
if err != nil {
return nil, err
}
req, err := http.NewRequest("GET", queryURL.String(), nil)
if err != nil {
return nil, err
}
return req, nil
}
// NewGenImageToImageRequestWithBody generates requests for GenImageToImage with any type of body
func NewGenImageToImageRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error) {
var err error
serverURL, err := url.Parse(server)
if err != nil {
return nil, err
}
operationPath := fmt.Sprintf("/image-to-image")
if operationPath[0] == '/' {
operationPath = "." + operationPath
}
queryURL, err := serverURL.Parse(operationPath)
if err != nil {
return nil, err
}
req, err := http.NewRequest("POST", queryURL.String(), body)
if err != nil {
return nil, err
}
req.Header.Add("Content-Type", contentType)
return req, nil
}
// NewGenImageToTextRequestWithBody generates requests for GenImageToText with any type of body
func NewGenImageToTextRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error) {
var err error
serverURL, err := url.Parse(server)
if err != nil {
return nil, err
}
operationPath := fmt.Sprintf("/image-to-text")
if operationPath[0] == '/' {
operationPath = "." + operationPath
}
queryURL, err := serverURL.Parse(operationPath)
if err != nil {
return nil, err
}
req, err := http.NewRequest("POST", queryURL.String(), body)
if err != nil {
return nil, err
}
req.Header.Add("Content-Type", contentType)
return req, nil
}
// NewGenImageToVideoRequestWithBody generates requests for GenImageToVideo with any type of body
func NewGenImageToVideoRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error) {
var err error
serverURL, err := url.Parse(server)
if err != nil {
return nil, err
}
operationPath := fmt.Sprintf("/image-to-video")
if operationPath[0] == '/' {
operationPath = "." + operationPath
}
queryURL, err := serverURL.Parse(operationPath)
if err != nil {
return nil, err
}
req, err := http.NewRequest("POST", queryURL.String(), body)
if err != nil {
return nil, err
}
req.Header.Add("Content-Type", contentType)
return req, nil
}
// NewGenLiveVideoToVideoRequest calls the generic GenLiveVideoToVideo builder with application/json body
func NewGenLiveVideoToVideoRequest(server string, body GenLiveVideoToVideoJSONRequestBody) (*http.Request, error) {
var bodyReader io.Reader
buf, err := json.Marshal(body)
if err != nil {
return nil, err
}
bodyReader = bytes.NewReader(buf)
return NewGenLiveVideoToVideoRequestWithBody(server, "application/json", bodyReader)
}
// NewGenLiveVideoToVideoRequestWithBody generates requests for GenLiveVideoToVideo with any type of body
func NewGenLiveVideoToVideoRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error) {
var err error
serverURL, err := url.Parse(server)
if err != nil {
return nil, err
}
operationPath := fmt.Sprintf("/live-video-to-video")
if operationPath[0] == '/' {
operationPath = "." + operationPath
}
queryURL, err := serverURL.Parse(operationPath)
if err != nil {
return nil, err
}
req, err := http.NewRequest("POST", queryURL.String(), body)
if err != nil {
return nil, err
}
req.Header.Add("Content-Type", contentType)
return req, nil
}
// NewGenLLMRequestWithFormdataBody calls the generic GenLLM builder with application/x-www-form-urlencoded body
func NewGenLLMRequestWithFormdataBody(server string, body GenLLMFormdataRequestBody) (*http.Request, error) {
var bodyReader io.Reader
bodyStr, err := runtime.MarshalForm(body, nil)
if err != nil {
return nil, err
}
bodyReader = strings.NewReader(bodyStr.Encode())
return NewGenLLMRequestWithBody(server, "application/x-www-form-urlencoded", bodyReader)
}
// NewGenLLMRequestWithBody generates requests for GenLLM with any type of body
func NewGenLLMRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error) {
var err error
serverURL, err := url.Parse(server)
if err != nil {
return nil, err
}
operationPath := fmt.Sprintf("/llm")
if operationPath[0] == '/' {
operationPath = "." + operationPath
}
queryURL, err := serverURL.Parse(operationPath)
if err != nil {
return nil, err
}
req, err := http.NewRequest("POST", queryURL.String(), body)
if err != nil {
return nil, err
}
req.Header.Add("Content-Type", contentType)
return req, nil
}
// NewGenSegmentAnything2RequestWithBody generates requests for GenSegmentAnything2 with any type of body
func NewGenSegmentAnything2RequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error) {
var err error
serverURL, err := url.Parse(server)
if err != nil {
return nil, err
}
operationPath := fmt.Sprintf("/segment-anything-2")
if operationPath[0] == '/' {