We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02591dd commit c56f043Copy full SHA for c56f043
api/server/main.py
@@ -1,4 +1,4 @@
1
-from typing import Any, Dict, List, Optional
+from typing import Dict, List, Optional
2
3
from fastapi import FastAPI, HTTPException
4
from pydantic import BaseModel
@@ -14,7 +14,7 @@
14
15
class ChatRequest(BaseModel):
16
message: str
17
- selected_images: Optional[List[Dict[str, Any]]] = []
+ selected_images: Optional[List[Dict[str, str]]] = []
18
user_id: Optional[str] = None
19
20
0 commit comments