-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfal-ai-context.jsonld
More file actions
111 lines (102 loc) · 4.7 KB
/
Copy pathfal-ai-context.jsonld
File metadata and controls
111 lines (102 loc) · 4.7 KB
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
{
"@context": {
"@version": 1.1,
"@vocab": "https://schema.org/",
"fal": "https://queue.fal.run/",
"schema": "https://schema.org/",
"xsd": "http://www.w3.org/2001/XMLSchema#",
"dcterms": "http://purl.org/dc/terms/",
"InferenceRequest": {
"@id": "fal:InferenceRequest",
"@context": {
"model_owner": { "@id": "fal:InferenceRequest/modelOwner", "@type": "xsd:string" },
"model_name": { "@id": "fal:InferenceRequest/modelName", "@type": "xsd:string" },
"prompt": { "@id": "fal:InferenceRequest/prompt", "@type": "xsd:string" },
"negative_prompt": { "@id": "fal:InferenceRequest/negativePrompt", "@type": "xsd:string" },
"image_url": { "@id": "fal:InferenceRequest/imageUrl", "@type": "xsd:anyURI" },
"image_size": { "@id": "fal:InferenceRequest/imageSize" },
"num_inference_steps": { "@id": "fal:InferenceRequest/numInferenceSteps", "@type": "xsd:integer" },
"guidance_scale": { "@id": "fal:InferenceRequest/guidanceScale", "@type": "xsd:decimal" },
"seed": { "@id": "fal:InferenceRequest/seed", "@type": "xsd:integer" },
"num_images": { "@id": "fal:InferenceRequest/numImages", "@type": "xsd:integer" },
"enable_safety_checker": { "@id": "fal:InferenceRequest/enableSafetyChecker", "@type": "xsd:boolean" },
"sync_mode": { "@id": "fal:InferenceRequest/syncMode", "@type": "xsd:boolean" }
}
},
"QueueAccepted": {
"@id": "fal:QueueAccepted",
"@context": {
"request_id": { "@id": "fal:QueueAccepted/requestId", "@type": "xsd:string" },
"status": { "@id": "fal:QueueAccepted/status", "@type": "xsd:string" },
"status_url": { "@id": "fal:QueueAccepted/statusUrl", "@type": "xsd:anyURI" },
"response_url": { "@id": "fal:QueueAccepted/responseUrl", "@type": "xsd:anyURI" },
"cancel_url": { "@id": "fal:QueueAccepted/cancelUrl", "@type": "xsd:anyURI" },
"gateway_request_id": { "@id": "fal:QueueAccepted/gatewayRequestId", "@type": "xsd:string" }
}
},
"QueueStatus": {
"@id": "fal:QueueStatus",
"@context": {
"status": { "@id": "fal:QueueStatus/status", "@type": "xsd:string" },
"queue_position": { "@id": "fal:QueueStatus/queuePosition", "@type": "xsd:integer" },
"logs": { "@id": "fal:QueueStatus/logs", "@container": "@list" }
}
},
"LogEntry": {
"@id": "fal:LogEntry",
"@context": {
"timestamp": { "@id": "dcterms:date", "@type": "xsd:dateTime" },
"level": { "@id": "fal:LogEntry/level", "@type": "xsd:string" },
"message": { "@id": "schema:description", "@type": "xsd:string" }
}
},
"Image": {
"@id": "fal:Image",
"@context": {
"url": { "@id": "schema:contentUrl", "@type": "xsd:anyURI" },
"width": { "@id": "schema:width", "@type": "xsd:integer" },
"height": { "@id": "schema:height", "@type": "xsd:integer" },
"content_type": { "@id": "schema:encodingFormat", "@type": "xsd:string" }
}
},
"Video": {
"@id": "fal:Video",
"@context": {
"url": { "@id": "schema:contentUrl", "@type": "xsd:anyURI" },
"duration": { "@id": "schema:duration", "@type": "xsd:decimal" },
"fps": { "@id": "fal:Video/fps", "@type": "xsd:decimal" },
"content_type": { "@id": "schema:encodingFormat", "@type": "xsd:string" }
}
},
"Audio": {
"@id": "fal:Audio",
"@context": {
"url": { "@id": "schema:contentUrl", "@type": "xsd:anyURI" },
"duration": { "@id": "schema:duration", "@type": "xsd:decimal" },
"content_type": { "@id": "schema:encodingFormat", "@type": "xsd:string" }
}
},
"Model": {
"@id": "fal:Model",
"@context": {
"id": { "@id": "schema:identifier", "@type": "xsd:string" },
"name": { "@id": "schema:name", "@type": "xsd:string" },
"description": { "@id": "schema:description", "@type": "xsd:string" },
"category": { "@id": "schema:category", "@type": "xsd:string" },
"pricing": { "@id": "fal:Model/pricing" }
}
},
"ServerlessApp": {
"@id": "fal:ServerlessApp",
"@context": {
"id": { "@id": "schema:identifier", "@type": "xsd:string" },
"name": { "@id": "schema:name", "@type": "xsd:string" },
"endpoint": { "@id": "schema:url", "@type": "xsd:anyURI" },
"gpu": { "@id": "fal:ServerlessApp/gpu", "@type": "xsd:string" },
"keep_alive": { "@id": "fal:ServerlessApp/keepAlive", "@type": "xsd:integer" },
"min_concurrency": { "@id": "fal:ServerlessApp/minConcurrency", "@type": "xsd:integer" },
"max_concurrency": { "@id": "fal:ServerlessApp/maxConcurrency", "@type": "xsd:integer" }
}
}
}
}