mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-07-31 19:16:29 +00:00
fmt(js): npm run fix on merge (#74740)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
parent
c581ad402e
commit
11089899fb
2 changed files with 8 additions and 2 deletions
|
|
@ -135,7 +135,10 @@ export function ModelVisibilityDialog({
|
|||
size="0.625rem"
|
||||
/>
|
||||
</button>
|
||||
<Checkbox checked={checkState} onCheckedChange={next => setProviderVisible(provider, next !== false)} />
|
||||
<Checkbox
|
||||
checked={checkState}
|
||||
onCheckedChange={next => setProviderVisible(provider, next !== false)}
|
||||
/>
|
||||
</div>
|
||||
{!collapsed &&
|
||||
models.map(family => {
|
||||
|
|
|
|||
|
|
@ -960,7 +960,10 @@ export function editLearningNode(id: string, content: string): Promise<{ message
|
|||
})
|
||||
}
|
||||
|
||||
export function setSkillEnabled(name: string, enabled: boolean): Promise<{ ok: boolean; name: string; enabled: boolean }> {
|
||||
export function setSkillEnabled(
|
||||
name: string,
|
||||
enabled: boolean
|
||||
): Promise<{ ok: boolean; name: string; enabled: boolean }> {
|
||||
return window.hermesDesktop.api<{ ok: boolean; name: string; enabled: boolean }>({
|
||||
...profileScoped(),
|
||||
path: '/api/skills/toggle',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue