Function
setThreadName
(
workspaceId: string,
threadId: string,
name: string,
)
Source from the content-addressed store, hash-verified
| 1081 | } |
| 1082 | |
| 1083 | export async function setThreadName( |
| 1084 | workspaceId: string, |
| 1085 | threadId: string, |
| 1086 | name: string, |
| 1087 | ) { |
| 1088 | return invoke<any>("set_thread_name", { workspaceId, threadId, name }); |
| 1089 | } |
| 1090 | |
| 1091 | export async function setTrayRecentThreads(entries: TrayRecentThreadEntry[]) { |
| 1092 | return invoke<void>("set_tray_recent_threads", { entries }); |
Tested by
no test coverage detected