(self)
| 17 | |
| 18 | class AgentState: |
| 19 | def __init__(self): |
| 20 | config = Config() |
| 21 | sqlite_path = config.get_sqlite_db() |
| 22 | self.engine = create_engine(f"sqlite:///{sqlite_path}") |
| 23 | SQLModel.metadata.create_all(self.engine) |
| 24 | |
| 25 | def new_state(self): |
| 26 | timestamp = datetime.now().strftime("%Y-%m-%d %H:%M:%S") |
nothing calls this directly
no test coverage detected