Skip to content

Commit

Permalink
update omnicorp set handling
Browse files Browse the repository at this point in the history
  • Loading branch information
uhbrar committed Apr 15, 2024
1 parent ad04130 commit 843006c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
5 changes: 1 addition & 4 deletions ranker/modules/omnicorp_overlay.py
Original file line number Diff line number Diff line change
Expand Up @@ -207,10 +207,7 @@ async def query(request: PDResponse):
[
n
for n in qgraph["nodes"]
if (
("is_set" in qgraph["nodes"][n])
and (qgraph["nodes"][n]["is_set"])
)
if (qgraph["nodes"][n].get("set_interpretation", None) or "BATCH") != "BATCH"
]
)

Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ uvicorn==0.17.6
uvloop==0.19.0
numpy==1.26.4
httptools==0.6.0
reasoner-pydantic==5.0.1
reasoner-pydantic==5.0.2
yappi==1.6.0

0 comments on commit 843006c

Please sign in to comment.