@@ -3769,6 +3769,26 @@ export declare abstract class Base_Ai_Cf_Openai_Whisper_Large_V3_Turbo {
3769
3769
inputs : Ai_Cf_Openai_Whisper_Large_V3_Turbo_Input ;
3770
3770
postProcessedOutputs : Ai_Cf_Openai_Whisper_Large_V3_Turbo_Output ;
3771
3771
}
3772
+ export interface Ai_Cf_Black_Forest_Labs_Flux_1_Schnell_Input {
3773
+ /**
3774
+ * A text description of the image you want to generate.
3775
+ */
3776
+ prompt : string ;
3777
+ /**
3778
+ * The number of diffusion steps; higher values can improve quality but take longer.
3779
+ */
3780
+ steps ?: number ;
3781
+ }
3782
+ export interface Ai_Cf_Black_Forest_Labs_Flux_1_Schnell_Output {
3783
+ /**
3784
+ * The generated image in Base64 format.
3785
+ */
3786
+ image ?: string ;
3787
+ }
3788
+ export declare abstract class Base_Ai_Cf_Black_Forest_Labs_Flux_1_Schnell {
3789
+ inputs : Ai_Cf_Black_Forest_Labs_Flux_1_Schnell_Input ;
3790
+ postProcessedOutputs : Ai_Cf_Black_Forest_Labs_Flux_1_Schnell_Output ;
3791
+ }
3772
3792
export type Ai_Cf_Meta_Llama_3_2_11B_Vision_Instruct_Input = Prompt | Messages ;
3773
3793
export interface Prompt {
3774
3794
/**
@@ -4022,6 +4042,7 @@ export interface AiModels {
4022
4042
"@cf/thebloke/discolm-german-7b-v1-awq" : BaseAiTextGeneration ;
4023
4043
"@cf/qwen/qwen1.5-0.5b-chat" : BaseAiTextGeneration ;
4024
4044
"@cf/qwen/qwen1.5-7b-chat-awq" : BaseAiTextGeneration ;
4045
+ "@cf/qwen/qwen1.5-14b-chat-awq" : BaseAiTextGeneration ;
4025
4046
"@cf/tinyllama/tinyllama-1.1b-chat-v1.0" : BaseAiTextGeneration ;
4026
4047
"@cf/microsoft/phi-2" : BaseAiTextGeneration ;
4027
4048
"@cf/qwen/qwen1.5-1.8b-chat" : BaseAiTextGeneration ;
@@ -4040,13 +4061,17 @@ export interface AiModels {
4040
4061
"@cf/meta/llama-3.1-8b-instruct" : BaseAiTextGeneration ;
4041
4062
"@cf/meta/llama-3.1-8b-instruct-fp8" : BaseAiTextGeneration ;
4042
4063
"@cf/meta/llama-3.1-8b-instruct-awq" : BaseAiTextGeneration ;
4064
+ "@cf/meta/llama-3.2-3b-instruct" : BaseAiTextGeneration ;
4065
+ "@cf/meta/llama-3.2-1b-instruct" : BaseAiTextGeneration ;
4066
+ "@cf/meta/llama-3.3-70b-instruct-fp8-fast" : BaseAiTextGeneration ;
4043
4067
"@cf/meta/m2m100-1.2b" : BaseAiTranslation ;
4044
4068
"@cf/facebook/bart-large-cnn" : BaseAiSummarization ;
4045
4069
"@cf/unum/uform-gen2-qwen-500m" : BaseAiImageToText ;
4046
4070
"@cf/llava-hf/llava-1.5-7b-hf" : BaseAiImageToText ;
4047
4071
"@cf/openai/whisper" : Base_Ai_Cf_Openai_Whisper ;
4048
4072
"@cf/openai/whisper-tiny-en" : Base_Ai_Cf_Openai_Whisper_Tiny_En ;
4049
4073
"@cf/openai/whisper-large-v3-turbo" : Base_Ai_Cf_Openai_Whisper_Large_V3_Turbo ;
4074
+ "@cf/black-forest-labs/flux-1-schnell" : Base_Ai_Cf_Black_Forest_Labs_Flux_1_Schnell ;
4050
4075
"@cf/meta/llama-3.2-11b-vision-instruct" : Base_Ai_Cf_Meta_Llama_3_2_11B_Vision_Instruct ;
4051
4076
}
4052
4077
export type AiOptions = {
0 commit comments