8f19964e3f
Co-authored-by: 段舒康 <kdletters@qq.com> Reviewed-on: http://192.168.35.82/git/GenarrativeAI/Genarrative/pulls/124 Reviewed-by: 段舒康 <kdletters@qq.com> Co-authored-by: Linghong <ink29535@proton.me> Co-committed-by: Linghong <ink29535@proton.me>
24 lines
1.2 KiB
Rust
24 lines
1.2 KiB
Rust
pub mod generated_asset_sheets;
|
|
pub mod generated_assets;
|
|
pub mod pixel_art_snapper;
|
|
pub mod vector_engine;
|
|
|
|
pub use pixel_art_snapper::{
|
|
PIXEL_ART_ALPHA_COVERAGE_THRESHOLD, PIXEL_ART_ANALYSIS_COLORS, PIXEL_ART_KMEANS_SAMPLE_LIMIT,
|
|
PIXEL_ART_MAX_IMAGE_PIXELS, PixelArtSnapError, snap_pixel_art_strict_with_deadline,
|
|
snap_pixel_art_with_deadline,
|
|
};
|
|
pub use vector_engine::{
|
|
DownloadedImage, GPT_IMAGE_2_C_MODEL, GPT_IMAGE_2_MODEL, GeneratedImages, NANOBANANA_2_MODEL,
|
|
PlatformImageError, PlatformImageFailureAudit, PlatformImageStatusHint, ReferenceImage,
|
|
VECTOR_ENGINE_GPT_IMAGE_2_MODEL, VECTOR_ENGINE_PROVIDER, VectorEngineImageSettings,
|
|
build_vector_engine_image_http_client, build_vector_engine_image_request_body,
|
|
build_vector_engine_nanobanana_generate_content_request_body, create_vector_engine_image_edit,
|
|
create_vector_engine_image_edit_with_references,
|
|
create_vector_engine_image_edit_with_references_and_model,
|
|
create_vector_engine_image_generation, create_vector_engine_image_generation_with_model,
|
|
create_vector_engine_nanobanana_generate_content, download_remote_image,
|
|
vector_engine_images_edit_url, vector_engine_images_generation_url,
|
|
vector_engine_nanobanana_generate_content_url,
|
|
};
|