chore: bump version to 1.0.0 with changelog

This commit is contained in:
2026-07-22 11:18:50 -04:00
parent e09362dcd1
commit 8559f10403
3 changed files with 23 additions and 5 deletions
+4 -4
View File
@@ -73,14 +73,14 @@ async def dsn():
conn = await asyncpg.connect(value, timeout=10)
try:
if await conn.fetchval("SELECT to_regclass('llm_calls')") is not None:
await conn.execute(
"DELETE FROM llm_calls WHERE call_id LIKE $1", f"{_RUN_PREFIX}-%"
)
await conn.execute("DELETE FROM llm_calls WHERE call_id LIKE $1", f"{_RUN_PREFIX}-%")
finally:
await conn.close()
async def _record_minimal(recorder: PostgresRecorder, call_id: str | None = None, **overrides) -> None:
async def _record_minimal(
recorder: PostgresRecorder, call_id: str | None = None, **overrides
) -> None:
fields = {
"call_id": call_id if call_id is not None else _cid("c1"),
"parent_call_id": None,