Skip to content

Commit 2df91b2

Browse files
authored
Devops agent v10 (#21)
* bugfix: run devops agent even if output fule doesnot pre exist * bugfix: version changed
1 parent f2ef54b commit 2df91b2

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

devops_agent/cli.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,8 @@ def default_model() -> str:
4646
help='Configure the agent with one of the enterprise grade providers like OpenAI, Anthropic, Gemini')
4747
@click.option('--model', type=str,
4848
help='Configure the model name in accordance with the provider selected like gpt-4o, gemini-flash-2.5, etc.')
49-
@click.option('--output', type=click.Path(exists=True), help='Path to output file')
5049
@click.option('--query', type=str, help='Query to ask the DevOps agent')
51-
@click.option('--output', type=click.Path(), help='Output file path (optional)')
50+
@click.option('--output', type=click.Path(), help='Output file path for saving responses')
5251
@click.option('--format', type=click.Choice(['text', 'json', 'markdown']), default='text', help='Output format')
5352
@click.option('--interactive', '-i', is_flag=True, help='Run in interactive mode')
5453
@click.option('--debug_mode', type=bool, help='Run all agents in debug mode, don\'t use in production')

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "devops-agent"
7-
version = "0.0.2"
7+
version = "0.0.3"
88
description = "AI-powered DevOps CLI assistant"
99
readme = "README.md"
1010
requires-python = ">=3.8"

0 commit comments

Comments
 (0)