Skip to content

Commit

Permalink
[Python] Update prompt schema (#1193)
Browse files Browse the repository at this point in the history
  • Loading branch information
hinthornw authored Nov 8, 2024
1 parent 91dec07 commit 9a7c18e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/langsmith/schemas.py
Original file line number Diff line number Diff line change
Expand Up @@ -887,7 +887,7 @@ class Prompt(BaseModel):
"""The number of downloads."""
num_views: int
"""The number of views."""
liked_by_auth_user: bool
liked_by_auth_user: Optional[bool] = None
"""Whether the prompt is liked by the authenticated user."""
last_commit_hash: Optional[str] = None
"""The hash of the last commit."""
Expand Down

0 comments on commit 9a7c18e

Please sign in to comment.