The whole hunk
from line 188, old and new numbered
/
lines
from line 188
188188
189189
190190def summarize_document(
191 text, details_to_extract, model="claude-opus-5", max_tokens=1000
191 text, details_to_extract, model="claude-opus-5-5", max_tokens=1000
192192):
193193 # Format the details to extract to be placed within the prompt's context
194194 details_to_extract_str = "\n".join(details_to_extract)
from line 295
295295
296296
297297def summarize_long_document(
298 text, details_to_extract, model="claude-opus-5", max_tokens=1000
298 text, details_to_extract, model="claude-opus-5-5", max_tokens=1000
299299):
300300 # Format the details to extract to be placed within the prompt's context
301301 details_to_extract_str = "\n".join(details_to_extract)