knowledge api tests passing

This commit is contained in:
phernandez
2024-12-14 17:23:10 -06:00
parent 29043168fd
commit f075c29a58
14 changed files with 305 additions and 222 deletions
+1 -1
View File
@@ -23,7 +23,7 @@ async def create_entities(
return CreateEntitiesResponse(entities=[EntityOut.model_validate(entity) for entity in entities])
@router.get("/entities/{entity_id}", response_model=EntityOut)
@router.get("/entities/{entity_id:path}", response_model=EntityOut)
async def get_entity(
entity_id: str,
memory_service: MemoryServiceDep