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
3 changes: 1 addition & 2 deletions devops_agent/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,8 @@ def default_model() -> str:
help='Configure the agent with one of the enterprise grade providers like OpenAI, Anthropic, Gemini')
@click.option('--model', type=str,
help='Configure the model name in accordance with the provider selected like gpt-4o, gemini-flash-2.5, etc.')
@click.option('--output', type=click.Path(exists=True), help='Path to output file')
@click.option('--query', type=str, help='Query to ask the DevOps agent')
@click.option('--output', type=click.Path(), help='Output file path (optional)')
@click.option('--output', type=click.Path(), help='Output file path for saving responses')
@click.option('--format', type=click.Choice(['text', 'json', 'markdown']), default='text', help='Output format')
@click.option('--interactive', '-i', is_flag=True, help='Run in interactive mode')
@click.option('--debug_mode', type=bool, help='Run all agents in debug mode, don\'t use in production')
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "devops-agent"
version = "0.0.2"
version = "0.0.3"
description = "AI-powered DevOps CLI assistant"
readme = "README.md"
requires-python = ">=3.8"
Expand Down