
citoreh/film-analysis-ai
Image generation
Public
5
runs
Run citoreh/film-analysis-ai with an API
Use one of our client libraries to get started quickly. Clicking on a library will take you to the Playground tab where you can tweak different inputs, see the results, and copy the corresponding code to use in your own project.
Input schema
The fields you can use to run this model with an API. If you don't give a value for a field its default value will be used.
Field | Type | Default value | Description |
---|---|---|---|
film_stock |
None
|
Film stock name
|
|
camera |
string
|
Canon AE-1
|
Camera make and model
|
lens |
string
|
50mm f/1.8
|
Lens used
|
aperture |
string
|
5.6
|
Aperture setting (f-stop)
|
shutter_speed |
string
|
1/125
|
Shutter speed
|
subject |
string
|
Portrait
|
Subject description
|
lighting |
string
|
Natural daylight
|
Lighting conditions
|
developer |
string
|
C-41 process
|
Developer used
|
development_time |
string
|
3:30
|
Development time
|
temperature |
string
|
38°C
|
Development temperature
|
additional_notes |
string
|
|
Additional shooting or processing notes
|
analysis_depth |
None
|
Standard
|
Analysis depth level
|
{
"type": "object",
"title": "Input",
"required": [
"film_stock"
],
"properties": {
"lens": {
"type": "string",
"title": "Lens",
"default": "50mm f/1.8",
"x-order": 2,
"description": "Lens used"
},
"camera": {
"type": "string",
"title": "Camera",
"default": "Canon AE-1",
"x-order": 1,
"description": "Camera make and model"
},
"subject": {
"type": "string",
"title": "Subject",
"default": "Portrait",
"x-order": 5,
"description": "Subject description"
},
"aperture": {
"type": "string",
"title": "Aperture",
"default": "5.6",
"x-order": 3,
"description": "Aperture setting (f-stop)"
},
"lighting": {
"type": "string",
"title": "Lighting",
"default": "Natural daylight",
"x-order": 6,
"description": "Lighting conditions"
},
"developer": {
"type": "string",
"title": "Developer",
"default": "C-41 process",
"x-order": 7,
"description": "Developer used"
},
"film_stock": {
"enum": [
"CineStill 800T",
"Kodak Portra 800",
"Lomography X-Pro 200",
"Kodak Ektachrome E100",
"Fujifilm Pro 400H",
"Kodak Ektar 100",
"Fujifilm Velvia 50",
"Kodak Gold 200"
],
"type": "string",
"title": "film_stock",
"description": "Film stock name",
"x-order": 0
},
"temperature": {
"type": "string",
"title": "Temperature",
"default": "38\u00b0C",
"x-order": 9,
"description": "Development temperature"
},
"shutter_speed": {
"type": "string",
"title": "Shutter Speed",
"default": "1/125",
"x-order": 4,
"description": "Shutter speed"
},
"analysis_depth": {
"enum": [
"Standard",
"Detailed",
"Professional"
],
"type": "string",
"title": "analysis_depth",
"description": "Analysis depth level",
"default": "Standard",
"x-order": 11
},
"additional_notes": {
"type": "string",
"title": "Additional Notes",
"default": "",
"x-order": 10,
"description": "Additional shooting or processing notes"
},
"development_time": {
"type": "string",
"title": "Development Time",
"default": "3:30",
"x-order": 8,
"description": "Development time"
}
}
}
Output schema
The shape of the response you’ll get when you run this model with an API.
Schema
{
"type": "string",
"title": "Output"
}