File size: 428 Bytes
2eafbc4
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
from pydantic import Field

ModelID = Field(example="raccoon-detector-1", description="A unique model identifier")
ModelType = Field(
    default=None,
    example="object-detection",
    description="The type of the model, usually referring to what task the model performs",
)
ApiKey = Field(
    default=None,
    description="Roboflow API Key that will be passed to the model during initialization for artifact retrieval",
)