Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,10 @@ from etymolt import Etymolt
etymolt = Etymolt()
verdict = etymolt.verify("Stratagem")

# verdict["verdict"] → "PROCEED" | "ITERATE" | "DECIDE" | "ABANDON" | "INSUFFICIENT_SIGNAL"
# verdict["score"] → int | None (None when INSUFFICIENT_SIGNAL)
# verdict["verdict"] → "PROCEED" | "PROCEED_STRATEGIC" | "ABANDON"
# verdict["score"] → int | None (None when status=="partial")
# verdict["status"] → "complete" | "partial"
# verdict["reason"] → str (e.g. "hard_blocker", "coexistence_required", "no_workaround")
# verdict["axes"] → { trademark, domain, cultural, sound_symbolism, pronunciation }
# verdict["disclaimer"] → Render verbatim per EVP/1 §5.

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "etymolt"
version = "0.1.1"
version = "0.2.0"
description = "Official Python SDK for Etymolt — the fact-check layer for LLM-generated names."
readme = "README.md"
requires-python = ">=3.10"
Expand Down
2 changes: 1 addition & 1 deletion src/etymolt/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
from .client import Etymolt, EtymoltError, AsyncEtymolt
from .types import Verdict, VerdictAxes, AxisStatus

__version__ = "0.1.1"
__version__ = "0.2.0"

__all__ = [
"Etymolt",
Expand Down
4 changes: 3 additions & 1 deletion src/etymolt/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ class VerdictAxes(TypedDict):
class Verdict(TypedDict, total=False):
evp_version: str
name: str
verdict: Literal["PROCEED", "ITERATE", "DECIDE", "ABANDON", "INSUFFICIENT_SIGNAL"]
verdict: Literal["PROCEED", "PROCEED_STRATEGIC", "ABANDON"]
status: Literal["complete", "partial"]
reason: Optional[str]
score: Optional[int]
axes: VerdictAxes
verdict_id: str
Expand Down
Loading