Spaces:
Sleeping
Sleeping
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 | |