We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 060a9ef commit f392f1bCopy full SHA for f392f1b
1 file changed
prescribing-info-app/main.py
@@ -37,9 +37,10 @@ def update_drug_data(state: WriterState, drug_name: str) -> None:
37
state["prescribing_info_summary"] = ""
38
39
for chunk in stream_complete(
40
- prescribing_summary_prompt.format(
+ initial_text=prescribing_summary_prompt.format(
41
prescribing_details=state["raw_prescribing_info"]
42
- )
+ ),
43
+ config={"model": "palmyra-med"}
44
):
45
state["prescribing_info_summary"] += chunk
46
@@ -174,4 +175,4 @@ def contributing_sources_change_vis(state: WriterState) -> None:
174
175
}
176
)
177
-initial_state.import_stylesheet("style", "/static/custom.css?1")
178
+initial_state.import_stylesheet("style", "/static/custom.css")
0 commit comments