fffiloni commited on
Commit
5b61ea4
·
verified ·
1 Parent(s): 461cbff

Delete INFERENCE_CONTRACT.json

Browse files
Files changed (1) hide show
  1. INFERENCE_CONTRACT.json +0 -33
INFERENCE_CONTRACT.json DELETED
@@ -1,33 +0,0 @@
1
- {
2
- "schema_version": "inference_contract.v1",
3
- "full_inference_implemented": true,
4
- "inference_strategy": "diffusers_pipeline",
5
- "health_endpoint": "/health",
6
- "primary_api_name": "/generate",
7
- "expected_output_type": "video",
8
- "validation_level": "smoke_test_hardware_limited",
9
- "requires_gpu": true,
10
- "recommended_target_space_hardware": "manual_required",
11
- "estimated_vram": "50_plus_gb",
12
- "blockers_count": 0,
13
- "model_family": "diffusers_full_pipeline",
14
- "artifact_role": "full_model",
15
- "loader_strategy": "DiffusionPipeline_or_family_specific_from_pretrained",
16
- "app_runtime_contract_version": "app_runtime_contract.v198_26_30",
17
- "health_required_fields": [
18
- "status",
19
- "model_ready",
20
- "pipeline_ready",
21
- "model_family",
22
- "loader_strategy",
23
- "last_error",
24
- "expected_output_type"
25
- ],
26
- "generate_not_ready_behavior": "raises RuntimeError containing the concrete pipeline load failure or a clear 'Pipeline not loaded' message with last_error included",
27
- "recipe_conformance_notes": [
28
- "Preserves model_family 'diffusers_full_pipeline' and loader_strategy from MODEL_RECIPE.",
29
- "Implements ModularPipeline.from_pretrained + pipe.load_components exactly as the model card instructs, with a documented ZeroGPU-safe fallback for device_map.",
30
- "Health endpoint is cheap (reads global state only) and exposes all required contract fields.",
31
- "Generate attempts a real forward pass through 14B transformer + UMT5 text encoder + Wan VAE if pipeline loaded successfully."
32
- ]
33
- }