-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
import { upgradeBrains } from '../../../lib/brain.js' | ||
import { AICommand } from '../../lib/ai-command.js' | ||
import { showBanner } from '../../lib/help.js' | ||
|
||
export default class AIBrainRefreshCommand extends AICommand { | ||
static summary = '🔄 refresh online brains.' | ||
|
||
static description = 'refresh brain index from huggingface.co' | ||
async run(): Promise<any> { | ||
const opts = await this.parse(AIBrainRefreshCommand) | ||
const isJson = this.jsonEnabled() | ||
const {flags} = opts | ||
const userConfig = this.loadConfig(flags.config, opts) | ||
await this.config.runHook('init_tools', {id: 'brain', userConfig}) | ||
|
||
if (userConfig.banner && !isJson) {showBanner('Refresh Brains')} | ||
|
||
const count = await upgradeBrains(flags) | ||
this.log(`${count} brains updated`) | ||
|
||
return count | ||
} | ||
} |