List issues associated with a tracing project (forge issues board).
Retrieves all issues from the forge issues board that are linked to the given tracing project (identified by its session name).
list_project_issues(
self,
project_name: str,
*,
status: Optional[str] = None,
priority: Optional[str] = None
) -> list[dict]Example:
from langsmith import Client
client = Client()
# List all issues for a project
issues = client.list_project_issues("my-project")
# Filter by status and priority
open_high = client.list_project_issues(
"my-project", status="open", priority="high"
)
for issue in open_high:
print(issue["id"], issue["title"])| Name | Type | Description |
|---|---|---|
project_name* | str | The name of the tracing project (session) whose issues you want to list. |
status | Optional[str] | Default: NoneFilter issues by status (e.g. |
priority | Optional[str] | Default: NoneFilter issues by priority (e.g.
|