Merged in bugfix/reimb_dates (pull request #649)

Bugfix/reimb dates to Main

* added reimb dates split

* Merged main into bugfix/reimb_dates

* prompt changes

* added to postprocessing

* fixed key issues

* modified split function

* removed print statements

* Merge branch 'main' into bugfix/reimb_dates

* update import

* moved split date upstream

* moved split dates to one to n funcs

* Merged main into bugfix/reimb_dates


Approved-by: Katon Minhas
This commit is contained in:
VenkataKrishna Reddy Avula
2025-08-06 19:38:34 +00:00
committed by Katon Minhas
parent a3df2f3e15
commit 0d774acf7a
5 changed files with 121 additions and 14 deletions
@@ -724,7 +724,5 @@ def deduplicate_provider_columns(df: pd.DataFrame) -> pd.DataFrame:
deduped_list.append(item)
# Update the DataFrame
df.at[index, other_col] = (
" | ".join(deduped_list) if deduped_list else ""
)
return df
df.at[index, other_col] = " | ".join(deduped_list) if deduped_list else ""
return df