For Configure a model, you just need to call RagCraft passing configure_model as first argument:
RagCraft configure_model --model grok-2-latest --url https://api.x.ai/v1/chat/completions --key "your key"For start the application, you just need to call RagCraft passing start as first argument:
RagCraft startFor start the application with a model, you just need to call RagCraft passing start as first argument and the model as second argument:
RagCraft start --model grok-2-latestto list the models, you just need to call RagCraft passing list_models as first argument:
RagCraft list_modelsFor remove a model, you just need to call RagCraft passing remove_model as first argument:
RagCraft remove_model --model grok-2-latestFor set a model as default, you just need to call RagCraft passing set_model_as_default as first argument:
RagCraft set_model_as_default --model grok-2-latestFor resset the configuration, you just need to call RagCraft passing resset as first argument:
RagCraft ressetFor get help, you just need to call RagCraft passing help as first argument:
RagCraft help