(
projectId: string,
options: { chat?: boolean | undefined } = {},
)
| 32 | const INBOX_PROMPT_BACKFILL_CONCURRENCY = 6 |
| 33 | |
| 34 | export async function loadProjectThreads( |
| 35 | projectId: string, |
| 36 | options: { chat?: boolean | undefined } = {}, |
| 37 | ): Promise<Thread[]> { |
| 38 | ensureProject(projectId) |
| 39 | return listProjectThreads(projectId, options) |
| 40 | } |
| 41 | |
| 42 | export async function loadArchivedThreadList(): Promise<ArchivedThread[]> { |
| 43 | return listArchivedThreads() |
no test coverage detected