Skip to content

Commit

Permalink
fix(genai): incident summary generate takes only kw args (#5607)
Browse files Browse the repository at this point in the history
  • Loading branch information
whitdog47 authored Dec 12, 2024
1 parent e1d6477 commit 1d152df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dispatch/incident/flows.py
Original file line number Diff line number Diff line change
Expand Up @@ -553,7 +553,7 @@ def incident_closed_status_flow(incident: Incident, db_session=None):
send_incident_rating_feedback_message(incident, db_session)

# if an AI plugin is enabled, we send the incident review doc for summary
incident_service.generate_incident_summary(incident, db_session)
incident_service.generate_incident_summary(incident=incident, db_session=db_session)


def conversation_topic_dispatcher(
Expand Down

0 comments on commit 1d152df

Please sign in to comment.