Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix file variable
  • Loading branch information
Sudhamsha committed Apr 17, 2025
commit e2c2019077b342131f73f90cdab058b943f255c6
2 changes: 1 addition & 1 deletion cognee/api/v1/add/routers/get_add_router.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def get_add_router() -> APIRouter:

@router.post("/", response_model=None)
async def add(
file: UploadFile = File(None),
file: UploadFile = UploadFile(None),
url: str = Form(None),
datasetId: str = Form(...),
user: User = Depends(get_authenticated_user),
Expand Down