@@ -3802,6 +3802,26 @@ export declare abstract class Base_Ai_Cf_Openai_Whisper_Large_V3_Turbo {
3802
3802
inputs : Ai_Cf_Openai_Whisper_Large_V3_Turbo_Input ;
3803
3803
postProcessedOutputs : Ai_Cf_Openai_Whisper_Large_V3_Turbo_Output ;
3804
3804
}
3805
+ export interface Ai_Cf_Black_Forest_Labs_Flux_1_Schnell_Input {
3806
+ /**
3807
+ * A text description of the image you want to generate.
3808
+ */
3809
+ prompt : string ;
3810
+ /**
3811
+ * The number of diffusion steps; higher values can improve quality but take longer.
3812
+ */
3813
+ steps ?: number ;
3814
+ }
3815
+ export interface Ai_Cf_Black_Forest_Labs_Flux_1_Schnell_Output {
3816
+ /**
3817
+ * The generated image in Base64 format.
3818
+ */
3819
+ image ?: string ;
3820
+ }
3821
+ export declare abstract class Base_Ai_Cf_Black_Forest_Labs_Flux_1_Schnell {
3822
+ inputs : Ai_Cf_Black_Forest_Labs_Flux_1_Schnell_Input ;
3823
+ postProcessedOutputs : Ai_Cf_Black_Forest_Labs_Flux_1_Schnell_Output ;
3824
+ }
3805
3825
export type Ai_Cf_Meta_Llama_3_2_11B_Vision_Instruct_Input = Prompt | Messages ;
3806
3826
export interface Prompt {
3807
3827
/**
@@ -4055,6 +4075,7 @@ export interface AiModels {
4055
4075
"@cf/thebloke/discolm-german-7b-v1-awq" : BaseAiTextGeneration ;
4056
4076
"@cf/qwen/qwen1.5-0.5b-chat" : BaseAiTextGeneration ;
4057
4077
"@cf/qwen/qwen1.5-7b-chat-awq" : BaseAiTextGeneration ;
4078
+ "@cf/qwen/qwen1.5-14b-chat-awq" : BaseAiTextGeneration ;
4058
4079
"@cf/tinyllama/tinyllama-1.1b-chat-v1.0" : BaseAiTextGeneration ;
4059
4080
"@cf/microsoft/phi-2" : BaseAiTextGeneration ;
4060
4081
"@cf/qwen/qwen1.5-1.8b-chat" : BaseAiTextGeneration ;
@@ -4073,13 +4094,17 @@ export interface AiModels {
4073
4094
"@cf/meta/llama-3.1-8b-instruct" : BaseAiTextGeneration ;
4074
4095
"@cf/meta/llama-3.1-8b-instruct-fp8" : BaseAiTextGeneration ;
4075
4096
"@cf/meta/llama-3.1-8b-instruct-awq" : BaseAiTextGeneration ;
4097
+ "@cf/meta/llama-3.2-3b-instruct" : BaseAiTextGeneration ;
4098
+ "@cf/meta/llama-3.2-1b-instruct" : BaseAiTextGeneration ;
4099
+ "@cf/meta/llama-3.3-70b-instruct-fp8-fast" : BaseAiTextGeneration ;
4076
4100
"@cf/meta/m2m100-1.2b" : BaseAiTranslation ;
4077
4101
"@cf/facebook/bart-large-cnn" : BaseAiSummarization ;
4078
4102
"@cf/unum/uform-gen2-qwen-500m" : BaseAiImageToText ;
4079
4103
"@cf/llava-hf/llava-1.5-7b-hf" : BaseAiImageToText ;
4080
4104
"@cf/openai/whisper" : Base_Ai_Cf_Openai_Whisper ;
4081
4105
"@cf/openai/whisper-tiny-en" : Base_Ai_Cf_Openai_Whisper_Tiny_En ;
4082
4106
"@cf/openai/whisper-large-v3-turbo" : Base_Ai_Cf_Openai_Whisper_Large_V3_Turbo ;
4107
+ "@cf/black-forest-labs/flux-1-schnell" : Base_Ai_Cf_Black_Forest_Labs_Flux_1_Schnell ;
4083
4108
"@cf/meta/llama-3.2-11b-vision-instruct" : Base_Ai_Cf_Meta_Llama_3_2_11B_Vision_Instruct ;
4084
4109
}
4085
4110
export type AiOptions = {
0 commit comments