File size: 225 Bytes
1a942ad
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
import os
from state import AgentState

def saver(state: AgentState):
    os.makedirs("output", exist_ok=True)

    with open("output/index.html", "w", encoding="utf-8") as f:
        f.write(state["code"])

    return state