InfraGPT is an AI assistant for interactively managing your infrastructure.
Project description
InfraGPT - Your devops co-pilot 🤖 on Terminal
InfraGPT lets you interactively generate and execute infrastructure commands using large language models (LLMs) in your terminal. InfraGPT works best with OpenAI GPT-4o and Anthropic Claude Sonet models.
Features
- Infrastructure Commands: Generate and execute infrastructure commands using natural language
- Slackbot: Integrate InfraGPT with Slack to generate commands from messages and take actions (coming soon)
Installation
Using pip
Using pip to install packages system-wide is not recommended. pip is a general-purpose package installer for both libraries and apps with no environment isolation. pipx is made specifically for application installation, as it adds isolation yet still makes the apps available in your shell: pipx creates an isolated environment for each application and its associated packages.
pipx does not ship with pip, but installing it is often an important part of bootstrapping your system.
Instead, install InfraGPT using pipx in the next section.
Using pipx
# Install pipx if you don't have it
pip install --user pipx
pipx ensurepath
# Install infragpt
pipx install infragpt
From Source
-
Clone the repository:
git clone https://github.com/priyanshujain/infragpt.git cd infragpt -
Install in development mode:
pip install -e .
Credentials Management
InfraGPT requires API keys to work. There are three ways to provide credentials, in order of priority:
1. Command Line Parameters
# Using OpenAI GPT-4o
infragpt --model gpt4o --api-key "your-openai-api-key"
# Using Anthropic Claude
infragpt --model claude --api-key "your-anthropic-api-key"
2. Configuration File
InfraGPT stores credentials in ~/.config/infragpt/config.yaml and uses them automatically on subsequent runs. This file is created:
- When you provide credentials interactively
- Automatically on first run if environment variables are available
- When you use command line parameters
3. Environment Variables
Set one or more of these environment variables:
# For OpenAI GPT-4o
export OPENAI_API_KEY="your-openai-api-key"
# For Anthropic Claude
export ANTHROPIC_API_KEY="your-anthropic-api-key"
# Optionally specify the model
export INFRAGPT_MODEL="gpt4o" # or "claude"
Model Selection Rules:
- If both API keys are set, InfraGPT uses OpenAI by default unless specified otherwise
- If only one API key is set, the corresponding model is used automatically
- If a model is explicitly selected (via command line or INFRAGPT_MODEL), the corresponding API key must be available
When environment variables are available, InfraGPT will automatically save the detected model and API key to the configuration file for future use.
If no credentials are found from any of these sources, if an empty API key is detected, or if an invalid API key is provided, InfraGPT will prompt you to select a model and enter your API key interactively at startup, before accepting any commands.
API Key Validation:
- The application validates API keys by making a small test request to the service provider
- When entering credentials interactively, API keys are validated immediately
- Invalid keys from environment variables or the config file are detected at startup
- The system will continue prompting until valid credentials are provided
- All validated credentials are automatically saved to the config file
Usage
Launch InfraGPT in interactive mode:
infragpt
Once in interactive mode, enter natural language prompts at the prompt:
> create a new VM instance called test-vm in us-central1 with 2 CPUs
Specify the model to use:
infragpt --model claude
Use keyboard shortcuts in interactive mode:
Ctrl+Dto exit the applicationCtrl+Cto clear the current input and start a new prompt
Command History
View your recent command history:
infragpt history
Limit the number of entries:
infragpt history --limit 20
Filter by interaction type:
infragpt history --type command_execution
Export your history to a file:
infragpt history --export history.jsonl
Example Commands
- "Create a new GKE cluster with 3 nodes in us-central1"
- "List all storage buckets"
- "Create a Cloud SQL MySQL instance named 'mydb' in us-west1"
- "Set up a load balancer for my instance group 'web-servers'"
Options
Interactive Mode Options
--model,-m: Choose the LLM model (gpt4o or claude)--api-key,-k: Provide an API key for the selected model--verbose,-v: Enable verbose output
Contributing
For information on how to contribute to InfraGPT, including development setup, release process, and CI/CD configuration, please see the CONTRIBUTING.md file.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file infragpt-0.1.45.tar.gz.
File metadata
- Download URL: infragpt-0.1.45.tar.gz
- Upload date:
- Size: 38.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c776ea2e56e6cb91a4f7c55c5fa579ad05c1763e6751c1b7c5e701de32841c90
|
|
| MD5 |
8f029fb539ab16f30cb1a49c32595f4c
|
|
| BLAKE2b-256 |
1837cdaf3705e12f9f75a06563105bf7442cb23bc424dee085b1594e558dbeee
|
File details
Details for the file infragpt-0.1.45-py3-none-any.whl.
File metadata
- Download URL: infragpt-0.1.45-py3-none-any.whl
- Upload date:
- Size: 32.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3a6d08ee0da188fd92be0c7ba5d1498dd1a381905ed8e506af696028f3c515e9
|
|
| MD5 |
269e2532d6963e35d5606e78dd990326
|
|
| BLAKE2b-256 |
b8ba764bbd129365da7f39ada8203d64b6a0c489c36f98a17c37dd03ca9d674a
|