chore: add list thread ids on manager (#8855)
This commit is contained in:
parent
0f8bb4579b
commit
8a0c2e5841
1 changed files with 4 additions and 0 deletions
|
|
@ -132,6 +132,10 @@ impl ThreadManager {
|
|||
self.state.models_manager.list_models(config).await
|
||||
}
|
||||
|
||||
pub async fn list_thread_ids(&self) -> Vec<ThreadId> {
|
||||
self.state.threads.read().await.keys().copied().collect()
|
||||
}
|
||||
|
||||
pub async fn get_thread(&self, thread_id: ThreadId) -> CodexResult<Arc<CodexThread>> {
|
||||
self.state.get_thread(thread_id).await
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue