You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -167,6 +168,12 @@ class ProgressResponse(BaseModel):
167
168
state: dict=Field(title="State", description="The current state snapshot")
168
169
current_image: str=Field(default=None, title="Current image", description="The current image in base64 format. opts.show_progress_every_n_steps is required for this to work.")
169
170
171
+
classInterrogateRequest(BaseModel):
172
+
image: str=Field(default="", title="Image", description="Image to work on, must be a Base64 string containing the image's data.")
173
+
174
+
classInterrogateResponse(BaseModel):
175
+
caption: str=Field(default=None, title="Caption", description="The generated caption for the image.")
0 commit comments