Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -210,13 +210,13 @@ For an overview of the full workflow, see the [workflow diagram](./docs/workflow
--help Show this message and exit.

Commands:
config Command group for interacting with the config of InstructLab.
data Command group for interacting with the data generated by...
model Command group for interacting with the models in InstructLab.
process Command group for interacting with the processes run by...
rag Command group for interacting with the RAG for InstructLab.
system Command group for all system-related command calls.
taxonomy Command group for interacting with the taxonomy of InstructLab.
config Manage InstructLab configuration.
data Generate synthetic data.
model Manage GenAI (LLM) models.
process Manage running processes.
rag Retrieval-Augmented Generation (RAG).
system Execute system commands.
taxonomy Manage taxonomy datasets.

Aliases:
chat model chat
Expand Down
2 changes: 1 addition & 1 deletion src/instructlab/cli/data/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
)
@click.pass_context
def data(ctx):
"""Command group for interacting with the data generated by InstructLab.
"""Generate synthetic data.

If this is your first time running ilab, it's best to start with `ilab config init` to create the environment.
"""
Expand Down
2 changes: 1 addition & 1 deletion src/instructlab/cli/process/process.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
)
@click.pass_context
def process(ctx):
"""Command group for interacting with the processes run by InstructLab.
"""Manage running processes.

If this is your first time running ilab, it's best to start with `ilab config init` to create the environment.
"""
Expand Down
2 changes: 1 addition & 1 deletion src/instructlab/cli/rag/rag.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
@click.pass_context
@clickext.display_params
def rag(ctx):
"""Command group for interacting with the RAG for InstructLab.
"""Retrieval-Augmented Generation (RAG).

If this is your first time running ilab, it's best to start with `ilab config init` to create the environment.
"""
Expand Down
2 changes: 1 addition & 1 deletion src/instructlab/cli/system/system.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
)
@click.pass_context
def system(ctx):
"""Command group for all system-related command calls."""
"""Execute system commands."""
ctx.obj = ctx.parent.obj
ctx.default_map = ctx.parent.default_map
2 changes: 1 addition & 1 deletion src/instructlab/config/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
)
@click.pass_context
def config(ctx):
"""Command group for interacting with the config of InstructLab.
"""Manage InstructLab configuration.

If this is your first time running ilab, it's best to start with `ilab config init` to create the environment.
"""
Expand Down
2 changes: 1 addition & 1 deletion src/instructlab/model/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
@click.pass_context
# pylint: disable=redefined-outer-name
def model(ctx):
"""Command group for interacting with the models in InstructLab.
"""Manage GenAI (LLM) models.

If this is your first time running ilab, it's best to start with `ilab config init` to create the environment.
"""
Expand Down
2 changes: 1 addition & 1 deletion src/instructlab/taxonomy/taxonomy.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
)
@click.pass_context
def taxonomy(ctx):
"""Command group for interacting with the taxonomy of InstructLab.
"""Manage taxonomy datasets.

If this is your first time running ilab, it's best to start with `ilab config init` to create the environment.
"""
Expand Down
Loading