mirror of
https://github.com/agent0ai/agent-zero.git
synced 2026-05-04 22:50:54 +00:00
feat: add dispatcher_model setting to choose utility or chat model for email routing
This commit is contained in:
parent
ca97b3f72e
commit
2d2e82ea25
3 changed files with 28 additions and 1 deletions
|
|
@ -27,6 +27,7 @@
|
|||
process_unread_days: 0,
|
||||
sender_whitelist: [],
|
||||
project: '',
|
||||
dispatcher_model: 'utility',
|
||||
dispatcher_instructions: '',
|
||||
agent_instructions: ''
|
||||
});
|
||||
|
|
@ -234,6 +235,19 @@
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<div class="field">
|
||||
<div class="field-label">
|
||||
<div class="field-title">Dispatcher Model</div>
|
||||
<div class="field-description">LLM model used to route incoming emails to chats. Utility is faster, chat is more capable</div>
|
||||
</div>
|
||||
<div class="field-control">
|
||||
<select x-model="handler.dispatcher_model">
|
||||
<option value="utility">Utility</option>
|
||||
<option value="chat">Chat</option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="field">
|
||||
<div class="field-label">
|
||||
<div class="field-title">Dispatcher Instructions</div>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue