fix(runtime): remove needless borrow in conversation runtime setup
Resolves clippy::needless_borrow in conversation.rs. Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
This commit is contained in:
parent
765635b312
commit
ace763eede
1 changed files with 1 additions and 1 deletions
|
|
@ -170,7 +170,7 @@ where
|
|||
system_prompt,
|
||||
max_iterations: usize::MAX,
|
||||
usage_tracker,
|
||||
hook_runner: HookRunner::from_feature_config(&feature_config),
|
||||
hook_runner: HookRunner::from_feature_config(feature_config),
|
||||
auto_compaction_input_tokens_threshold: auto_compaction_threshold_from_env(),
|
||||
hook_abort_signal: HookAbortSignal::default(),
|
||||
hook_progress_reporter: None,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue