Skip to content

Commit

Permalink
Fix history to read from _inputs0
Browse files Browse the repository at this point in the history
  • Loading branch information
vegito22 committed Oct 22, 2024
1 parent ac56b05 commit fcb3f30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion llmstack/apps/jobs/app_run_finished.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def response_status(self):
# return self.request_data.get("id", "")
@property
def request_body(self):
return self.bookkeeping_data_map.get("input", {}).get("input", {})
return self.bookkeeping_data_map.get("_inputs0", {}).get("input", {})

@property
def response_body(self):
Expand Down

0 comments on commit fcb3f30

Please sign in to comment.