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).
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"])Filter issues by priority (e.g.
"high", "medium", "low"). If None, issues of all
priorities are returned.