feat: make birth-time rectification conversational

This commit is contained in:
Jesse_Chen
2026-07-23 13:12:09 +08:00
parent 200c39d22b
commit f9010c8797
34 changed files with 1720 additions and 177 deletions
+2 -1
View File
@@ -9,7 +9,7 @@
from __future__ import annotations
from collections.abc import Sequence
from typing import Any, Final, Literal, TypedDict, assert_never
from typing import Any, Final, Literal, NotRequired, TypedDict, assert_never
from uuid import NAMESPACE_URL, uuid5
EventPrecision = Literal["year", "month", "day"]
@@ -44,6 +44,7 @@ class LifeEvent(TypedDict):
domain: EventDomain
date: str
precision: EventPrecision
summary: NotRequired[str]
class RectificationEventRequest(TypedDict):