Skip to content

Commit

Permalink
fix: alias search error
Browse files Browse the repository at this point in the history
  • Loading branch information
snowyu committed Jun 21, 2024
1 parent 5e9e71d commit 5187df1
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ $ npm install -g @offline-ai/cli
$ ai COMMAND
running command...
$ ai (--version)
@offline-ai/cli/0.0.11 linux-x64 node-v20.14.0
@offline-ai/cli/0.0.12 linux-x64 node-v20.14.0
$ ai --help [COMMAND]
USAGE
$ ai COMMAND
Expand Down Expand Up @@ -303,7 +303,7 @@ EXAMPLES
$ ai agent publish <agent-name>
```

_See code: [src/commands/agent/index.ts](https://github.com/offline-ai/cli/blob/v0.0.11/src/commands/agent/index.ts)_
_See code: [src/commands/agent/index.ts](https://github.com/offline-ai/cli/blob/v0.0.12/src/commands/agent/index.ts)_

## `ai autocomplete [SHELL]`

Expand Down Expand Up @@ -376,7 +376,7 @@ EXAMPLES
$ ai brain download <brain-name>
```

_See code: [src/commands/brain/index.ts](https://github.com/offline-ai/cli/blob/v0.0.11/src/commands/brain/index.ts)_
_See code: [src/commands/brain/index.ts](https://github.com/offline-ai/cli/blob/v0.0.12/src/commands/brain/index.ts)_

## `ai brain dn [NAME]`

Expand Down Expand Up @@ -504,7 +504,7 @@ EXAMPLES
$ ai brain download <brain-name> [-q <QUANT>]
```

_See code: [src/commands/brain/download.ts](https://github.com/offline-ai/cli/blob/v0.0.11/src/commands/brain/download.ts)_
_See code: [src/commands/brain/download.ts](https://github.com/offline-ai/cli/blob/v0.0.12/src/commands/brain/download.ts)_

## `ai brain list [NAME]`

Expand Down Expand Up @@ -536,7 +536,7 @@ ALIASES
$ ai search
```

_See code: [src/commands/brain/list.ts](https://github.com/offline-ai/cli/blob/v0.0.11/src/commands/brain/list.ts)_
_See code: [src/commands/brain/list.ts](https://github.com/offline-ai/cli/blob/v0.0.12/src/commands/brain/list.ts)_

## `ai config [ITEM_NAME]`

Expand Down Expand Up @@ -573,7 +573,7 @@ EXAMPLES
}
```

_See code: [src/commands/config/index.ts](https://github.com/offline-ai/cli/blob/v0.0.11/src/commands/config/index.ts)_
_See code: [src/commands/config/index.ts](https://github.com/offline-ai/cli/blob/v0.0.12/src/commands/config/index.ts)_

## `ai config save [DATA]`

Expand Down Expand Up @@ -613,7 +613,7 @@ GLOBAL FLAGS
--json Format output as json.
```

_See code: [src/commands/config/save.ts](https://github.com/offline-ai/cli/blob/v0.0.11/src/commands/config/save.ts)_
_See code: [src/commands/config/save.ts](https://github.com/offline-ai/cli/blob/v0.0.12/src/commands/config/save.ts)_

## `ai help [COMMAND]`

Expand Down Expand Up @@ -974,7 +974,7 @@ EXAMPLES
│[info]:Start Script: ...
```

_See code: [src/commands/run/index.ts](https://github.com/offline-ai/cli/blob/v0.0.11/src/commands/run/index.ts)_
_See code: [src/commands/run/index.ts](https://github.com/offline-ai/cli/blob/v0.0.12/src/commands/run/index.ts)_

## `ai search [NAME]`

Expand Down
2 changes: 1 addition & 1 deletion src/oclif/commands/brain/list.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { Args, Flags } from '@oclif/core'

export default class AIBrainListCommand extends AICommand {
static summary = '📜 List downloaded or online brains, defaults to downloaded.'
static aliases = ['search']
static aliases = ['brain:search']

// static description = ''

Expand Down

0 comments on commit 5187df1

Please sign in to comment.