model specific summarization (#1119)

* model specific summarization

* update guard functions

* patch model picker and key inputs
This commit is contained in:
Timothy Carambat
2024-04-17 14:04:51 -07:00
committed by GitHub
parent 9449fcd737
commit 81fd82e133
7 changed files with 80 additions and 10 deletions

View File

@@ -97,7 +97,7 @@ export default function AgentModelSelection({
<option
key={model.id}
value={model.id}
selected={workspace?.chatModel === model.id}
selected={workspace?.agentModel === model.id}
>
{model.name}
</option>