augint-shell 0.92.0__tar.gz → 0.92.2__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.92.0 → augint_shell-0.92.2}/PKG-INFO +1 -1
- {augint_shell-0.92.0 → augint_shell-0.92.2}/pyproject.toml +1 -1
- {augint_shell-0.92.0 → augint_shell-0.92.2}/src/ai_shell/__init__.py +1 -1
- {augint_shell-0.92.0 → augint_shell-0.92.2}/src/ai_shell/config.py +1 -1
- {augint_shell-0.92.0 → augint_shell-0.92.2}/src/ai_shell/defaults.py +5 -0
- {augint_shell-0.92.0 → augint_shell-0.92.2}/src/ai_shell/templates/ai-shell.yaml +1 -1
- {augint_shell-0.92.0 → augint_shell-0.92.2}/README.md +0 -0
- {augint_shell-0.92.0 → augint_shell-0.92.2}/src/ai_shell/assets/__init__.py +0 -0
- {augint_shell-0.92.0 → augint_shell-0.92.2}/src/ai_shell/assets/comfyui/__init__.py +0 -0
- {augint_shell-0.92.0 → augint_shell-0.92.2}/src/ai_shell/assets/comfyui/provision.sh +0 -0
- {augint_shell-0.92.0 → augint_shell-0.92.2}/src/ai_shell/cli/__init__.py +0 -0
- {augint_shell-0.92.0 → augint_shell-0.92.2}/src/ai_shell/cli/__main__.py +0 -0
- {augint_shell-0.92.0 → augint_shell-0.92.2}/src/ai_shell/cli/commands/__init__.py +0 -0
- {augint_shell-0.92.0 → augint_shell-0.92.2}/src/ai_shell/cli/commands/llm.py +0 -0
- {augint_shell-0.92.0 → augint_shell-0.92.2}/src/ai_shell/cli/commands/manage.py +0 -0
- {augint_shell-0.92.0 → augint_shell-0.92.2}/src/ai_shell/cli/commands/tools.py +0 -0
- {augint_shell-0.92.0 → augint_shell-0.92.2}/src/ai_shell/container.py +0 -0
- {augint_shell-0.92.0 → augint_shell-0.92.2}/src/ai_shell/exceptions.py +0 -0
- {augint_shell-0.92.0 → augint_shell-0.92.2}/src/ai_shell/gpu.py +0 -0
- {augint_shell-0.92.0 → augint_shell-0.92.2}/src/ai_shell/interactive.py +0 -0
- {augint_shell-0.92.0 → augint_shell-0.92.2}/src/ai_shell/local_chrome.py +0 -0
- {augint_shell-0.92.0 → augint_shell-0.92.2}/src/ai_shell/models.py +0 -0
- {augint_shell-0.92.0 → augint_shell-0.92.2}/src/ai_shell/scaffold.py +0 -0
- {augint_shell-0.92.0 → augint_shell-0.92.2}/src/ai_shell/selector.py +0 -0
- {augint_shell-0.92.0 → augint_shell-0.92.2}/src/ai_shell/templates/__init__.py +0 -0
- {augint_shell-0.92.0 → augint_shell-0.92.2}/src/ai_shell/templates/ai-shell.toml +0 -0
- {augint_shell-0.92.0 → augint_shell-0.92.2}/src/ai_shell/templates/aider/__init__.py +0 -0
- {augint_shell-0.92.0 → augint_shell-0.92.2}/src/ai_shell/templates/claude/__init__.py +0 -0
- {augint_shell-0.92.0 → augint_shell-0.92.2}/src/ai_shell/templates/claude/settings.json +0 -0
- {augint_shell-0.92.0 → augint_shell-0.92.2}/src/ai_shell/templates/codex/__init__.py +0 -0
- {augint_shell-0.92.0 → augint_shell-0.92.2}/src/ai_shell/templates/n8n/workflows/chat_with_ollama.json +0 -0
- {augint_shell-0.92.0 → augint_shell-0.92.2}/src/ai_shell/templates/n8n/workflows/text_to_speech.json +0 -0
- {augint_shell-0.92.0 → augint_shell-0.92.2}/src/ai_shell/templates/n8n/workflows/transcribe_audio.json +0 -0
- {augint_shell-0.92.0 → augint_shell-0.92.2}/src/ai_shell/templates/opencode/__init__.py +0 -0
- {augint_shell-0.92.0 → augint_shell-0.92.2}/src/ai_shell/templates/pi/__init__.py +0 -0
- {augint_shell-0.92.0 → augint_shell-0.92.2}/src/ai_shell/templates/pi/models.json +0 -0
- {augint_shell-0.92.0 → augint_shell-0.92.2}/src/ai_shell/tmux.py +0 -0
- {augint_shell-0.92.0 → augint_shell-0.92.2}/src/ai_shell/typeahead.py +0 -0
|
@@ -197,7 +197,7 @@ class AiShellConfig:
|
|
|
197
197
|
ai_profile: str = "" # AWS profile for infra (sets AWS_PROFILE in container)
|
|
198
198
|
aws_region: str = "" # Override AWS_REGION
|
|
199
199
|
bedrock_profile: str = "" # AWS profile for Bedrock LLM API calls
|
|
200
|
-
bedrock_model: str = "meta.llama3-3-70b-instruct-v1:0"
|
|
200
|
+
bedrock_model: str = "us.meta.llama3-3-70b-instruct-v1:0"
|
|
201
201
|
|
|
202
202
|
# OpenAI
|
|
203
203
|
openai_profile: str = "" # Suffixed .env key name for multi-account switching
|
|
@@ -199,6 +199,11 @@ def build_dev_mounts(project_dir: Path, project_name: str) -> list[Mount]:
|
|
|
199
199
|
)
|
|
200
200
|
)
|
|
201
201
|
|
|
202
|
+
# Ensure directories that tools need for persistent config exist on the
|
|
203
|
+
# host so bind mounts aren't silently skipped.
|
|
204
|
+
for d in (".pi",):
|
|
205
|
+
(home / d).mkdir(parents=True, exist_ok=True)
|
|
206
|
+
|
|
202
207
|
# Optional bind mounts — skip if source doesn't exist
|
|
203
208
|
optional_binds: list[tuple[Path, str, bool]] = [
|
|
204
209
|
(home / ".codex", "/root/.codex", False),
|
|
@@ -99,7 +99,7 @@ llm:
|
|
|
99
99
|
# aws:
|
|
100
100
|
# ai_profile: my-infra-account
|
|
101
101
|
# bedrock_profile: sandbox
|
|
102
|
-
# bedrock_model: meta.llama3-3-70b-instruct-v1:0
|
|
102
|
+
# bedrock_model: us.meta.llama3-3-70b-instruct-v1:0
|
|
103
103
|
# region: us-east-1
|
|
104
104
|
|
|
105
105
|
# -----------------------------------------------------------------------------
|
|
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.92.0 → augint_shell-0.92.2}/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
|