kaiku03's picture
Upload 11 files
71773fd verified
raw
history blame contribute delete
239 Bytes
from agent_state import AgentState
def save_summary(state: AgentState) -> AgentState:
with open("news_report.txt", "w") as f:
f.write(state.news_report)
print("βœ… Report saved to news_report.txt")
return state