Skip to content

Home

Homepage

Install Vertex-CLI from TestPyPI

Vertex-CLI is a command-line tool that lets you query Large Language Models (LLMs) and debug faster, straight from your terminal.

For example, you can run:

tex "tell me about the solar system"

Example usage

Replace "tell me about the solar system" with any query you like Vertex-CLI will generate a response using your selected LLM model.


Installation

To install Vertex-CLI from TestPyPI, run:

pip install -i https://test.pypi.org/simple/ Vertex-CLI

Then initialize the CLI with:

tex --setup

Managing API Keys & Models

  • Add a model and its API key:
tex config <model-name> <api-key>
  • Remove a model:
tex remove <model-name>
  • List all configured models:
tex list
  • Select a model to use by default:
tex select <model-name>

Documentation