File size: 788 Bytes
252219c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
Analyze the image and identify any animals present. Classify detected fauna into one of the following categories:
- Birds
- Insects
- Rodents
- Foxes, deer, or other large mammals
- Amphibians

For each detected animal, provide its type and count.

Do not use any external data sources.
If no fauna is detected, return an empty list.
If the image is not clear enough to make a decision, return 'Not clear'.
If the image is not relevant to the task, return 'Irrelevant'.

Results must be consistent across multiple runs of the model on the same image.
Results must be JSON serializable.

**Output format:**  
```
{
    "fauna": [
        {
            "type": "Birds",
            "count": 3
        },
        {
            "type": "Insects",
            "count": 5
        }
    ]
}
```