augint-shell 0.90.2__tar.gz → 0.91.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {augint_shell-0.90.2 → augint_shell-0.91.0}/PKG-INFO +1 -1
- {augint_shell-0.90.2 → augint_shell-0.91.0}/pyproject.toml +1 -1
- {augint_shell-0.90.2 → augint_shell-0.91.0}/src/ai_shell/__init__.py +1 -1
- {augint_shell-0.90.2 → augint_shell-0.91.0}/src/ai_shell/cli/commands/tools.py +1 -1
- {augint_shell-0.90.2 → augint_shell-0.91.0}/src/ai_shell/templates/ai-shell.yaml +1 -1
- {augint_shell-0.90.2 → augint_shell-0.91.0}/README.md +0 -0
- {augint_shell-0.90.2 → augint_shell-0.91.0}/src/ai_shell/assets/__init__.py +0 -0
- {augint_shell-0.90.2 → augint_shell-0.91.0}/src/ai_shell/assets/comfyui/__init__.py +0 -0
- {augint_shell-0.90.2 → augint_shell-0.91.0}/src/ai_shell/assets/comfyui/provision.sh +0 -0
- {augint_shell-0.90.2 → augint_shell-0.91.0}/src/ai_shell/cli/__init__.py +0 -0
- {augint_shell-0.90.2 → augint_shell-0.91.0}/src/ai_shell/cli/__main__.py +0 -0
- {augint_shell-0.90.2 → augint_shell-0.91.0}/src/ai_shell/cli/commands/__init__.py +0 -0
- {augint_shell-0.90.2 → augint_shell-0.91.0}/src/ai_shell/cli/commands/llm.py +0 -0
- {augint_shell-0.90.2 → augint_shell-0.91.0}/src/ai_shell/cli/commands/manage.py +0 -0
- {augint_shell-0.90.2 → augint_shell-0.91.0}/src/ai_shell/config.py +0 -0
- {augint_shell-0.90.2 → augint_shell-0.91.0}/src/ai_shell/container.py +0 -0
- {augint_shell-0.90.2 → augint_shell-0.91.0}/src/ai_shell/defaults.py +0 -0
- {augint_shell-0.90.2 → augint_shell-0.91.0}/src/ai_shell/exceptions.py +0 -0
- {augint_shell-0.90.2 → augint_shell-0.91.0}/src/ai_shell/gpu.py +0 -0
- {augint_shell-0.90.2 → augint_shell-0.91.0}/src/ai_shell/interactive.py +0 -0
- {augint_shell-0.90.2 → augint_shell-0.91.0}/src/ai_shell/local_chrome.py +0 -0
- {augint_shell-0.90.2 → augint_shell-0.91.0}/src/ai_shell/models.py +0 -0
- {augint_shell-0.90.2 → augint_shell-0.91.0}/src/ai_shell/scaffold.py +0 -0
- {augint_shell-0.90.2 → augint_shell-0.91.0}/src/ai_shell/selector.py +0 -0
- {augint_shell-0.90.2 → augint_shell-0.91.0}/src/ai_shell/templates/__init__.py +0 -0
- {augint_shell-0.90.2 → augint_shell-0.91.0}/src/ai_shell/templates/ai-shell.toml +0 -0
- {augint_shell-0.90.2 → augint_shell-0.91.0}/src/ai_shell/templates/aider/__init__.py +0 -0
- {augint_shell-0.90.2 → augint_shell-0.91.0}/src/ai_shell/templates/claude/__init__.py +0 -0
- {augint_shell-0.90.2 → augint_shell-0.91.0}/src/ai_shell/templates/claude/settings.json +0 -0
- {augint_shell-0.90.2 → augint_shell-0.91.0}/src/ai_shell/templates/codex/__init__.py +0 -0
- {augint_shell-0.90.2 → augint_shell-0.91.0}/src/ai_shell/templates/n8n/workflows/chat_with_ollama.json +0 -0
- {augint_shell-0.90.2 → augint_shell-0.91.0}/src/ai_shell/templates/n8n/workflows/text_to_speech.json +0 -0
- {augint_shell-0.90.2 → augint_shell-0.91.0}/src/ai_shell/templates/n8n/workflows/transcribe_audio.json +0 -0
- {augint_shell-0.90.2 → augint_shell-0.91.0}/src/ai_shell/templates/opencode/__init__.py +0 -0
- {augint_shell-0.90.2 → augint_shell-0.91.0}/src/ai_shell/templates/pi/__init__.py +0 -0
- {augint_shell-0.90.2 → augint_shell-0.91.0}/src/ai_shell/templates/pi/models.json +0 -0
- {augint_shell-0.90.2 → augint_shell-0.91.0}/src/ai_shell/tmux.py +0 -0
- {augint_shell-0.90.2 → augint_shell-0.91.0}/src/ai_shell/typeahead.py +0 -0
|
@@ -1367,7 +1367,7 @@ def pi(ctx, use_aws, cli_profile, openai_profile, do_login):
|
|
|
1367
1367
|
with capture_typeahead() as typeahead:
|
|
1368
1368
|
project = ctx.obj.get("project") if ctx.obj else None
|
|
1369
1369
|
config = load_config(project_override=project, project_dir=Path.cwd())
|
|
1370
|
-
use_bedrock = use_aws
|
|
1370
|
+
use_bedrock = use_aws or bool(cli_profile) or bool(config.bedrock_profile)
|
|
1371
1371
|
|
|
1372
1372
|
manager, name, exec_env, config = _get_manager(
|
|
1373
1373
|
ctx,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{augint_shell-0.90.2 → augint_shell-0.91.0}/src/ai_shell/templates/n8n/workflows/text_to_speech.json
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|