alpiecode 0.8.0__tar.gz → 0.8.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.
Files changed (32) hide show
  1. {alpiecode-0.8.0 → alpiecode-0.8.2}/PKG-INFO +1 -1
  2. {alpiecode-0.8.0 → alpiecode-0.8.2}/pyproject.toml +1 -1
  3. {alpiecode-0.8.0 → alpiecode-0.8.2}/src/alpiecode.egg-info/PKG-INFO +1 -1
  4. {alpiecode-0.8.0 → alpiecode-0.8.2}/src/codeagent/agent.py +2 -1
  5. {alpiecode-0.8.0 → alpiecode-0.8.2}/README.md +0 -0
  6. {alpiecode-0.8.0 → alpiecode-0.8.2}/setup.cfg +0 -0
  7. {alpiecode-0.8.0 → alpiecode-0.8.2}/src/alpiecode.egg-info/SOURCES.txt +0 -0
  8. {alpiecode-0.8.0 → alpiecode-0.8.2}/src/alpiecode.egg-info/dependency_links.txt +0 -0
  9. {alpiecode-0.8.0 → alpiecode-0.8.2}/src/alpiecode.egg-info/entry_points.txt +0 -0
  10. {alpiecode-0.8.0 → alpiecode-0.8.2}/src/alpiecode.egg-info/requires.txt +0 -0
  11. {alpiecode-0.8.0 → alpiecode-0.8.2}/src/alpiecode.egg-info/top_level.txt +0 -0
  12. {alpiecode-0.8.0 → alpiecode-0.8.2}/src/codeagent/__init__.py +0 -0
  13. {alpiecode-0.8.0 → alpiecode-0.8.2}/src/codeagent/backends/__init__.py +0 -0
  14. {alpiecode-0.8.0 → alpiecode-0.8.2}/src/codeagent/backends/base.py +0 -0
  15. {alpiecode-0.8.0 → alpiecode-0.8.2}/src/codeagent/backends/local_backend.py +0 -0
  16. {alpiecode-0.8.0 → alpiecode-0.8.2}/src/codeagent/backends/openai_backend.py +0 -0
  17. {alpiecode-0.8.0 → alpiecode-0.8.2}/src/codeagent/cli.py +0 -0
  18. {alpiecode-0.8.0 → alpiecode-0.8.2}/src/codeagent/compaction.py +0 -0
  19. {alpiecode-0.8.0 → alpiecode-0.8.2}/src/codeagent/config.py +0 -0
  20. {alpiecode-0.8.0 → alpiecode-0.8.2}/src/codeagent/context.py +0 -0
  21. {alpiecode-0.8.0 → alpiecode-0.8.2}/src/codeagent/executor.py +0 -0
  22. {alpiecode-0.8.0 → alpiecode-0.8.2}/src/codeagent/github.py +0 -0
  23. {alpiecode-0.8.0 → alpiecode-0.8.2}/src/codeagent/guardian.py +0 -0
  24. {alpiecode-0.8.0 → alpiecode-0.8.2}/src/codeagent/local_model.py +0 -0
  25. {alpiecode-0.8.0 → alpiecode-0.8.2}/src/codeagent/media.py +0 -0
  26. {alpiecode-0.8.0 → alpiecode-0.8.2}/src/codeagent/memory.py +0 -0
  27. {alpiecode-0.8.0 → alpiecode-0.8.2}/src/codeagent/orchestrator.py +0 -0
  28. {alpiecode-0.8.0 → alpiecode-0.8.2}/src/codeagent/prompt.py +0 -0
  29. {alpiecode-0.8.0 → alpiecode-0.8.2}/src/codeagent/server.py +0 -0
  30. {alpiecode-0.8.0 → alpiecode-0.8.2}/src/codeagent/session.py +0 -0
  31. {alpiecode-0.8.0 → alpiecode-0.8.2}/src/codeagent/tools.py +0 -0
  32. {alpiecode-0.8.0 → alpiecode-0.8.2}/src/codeagent/updater.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: alpiecode
3
- Version: 0.8.0
3
+ Version: 0.8.2
4
4
  Summary: AlpieCode — Autonomous AI Coding Agent CLI powered by local 169Pi GGUF VLM
5
5
  Requires-Python: >=3.9
6
6
  Requires-Dist: huggingface_hub>=0.20.0
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "alpiecode"
7
- version = "0.8.0"
7
+ version = "0.8.2"
8
8
  description = "AlpieCode — Autonomous AI Coding Agent CLI powered by local 169Pi GGUF VLM"
9
9
  requires-python = ">=3.9"
10
10
  dependencies = [
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: alpiecode
3
- Version: 0.8.0
3
+ Version: 0.8.2
4
4
  Summary: AlpieCode — Autonomous AI Coding Agent CLI powered by local 169Pi GGUF VLM
5
5
  Requires-Python: >=3.9
6
6
  Requires-Dist: huggingface_hub>=0.20.0
@@ -12,6 +12,7 @@ from typing import Any, Dict, List, Optional
12
12
  from .config import Config, is_server_reachable
13
13
  from .context import ContextManager, _serialize_assistant_message
14
14
  from .executor import READ_ONLY_TOOLS, ToolExecutor, parse_text_tool_calls as _parse_text_tool_calls
15
+ from .backends.local_backend import LocalBackend
15
16
  from .orchestrator import AgentEvent, AgentOrchestrator, resolve_backend
16
17
  from .prompt import (
17
18
  OFFLINE_SYSTEM_PROMPT,
@@ -266,7 +267,7 @@ def run_chat(workdir: Path, cfg: Config, verbose: bool = True) -> None:
266
267
  session_mgr = SessionManager()
267
268
  session = session_mgr.create_session(workdir, max_tokens=cfg.n_ctx if not backend.is_available else 262_144)
268
269
 
269
- is_offline = not backend.is_available or isinstance(backend, type(resolve_backend(cfg)))
270
+ is_offline = isinstance(backend, LocalBackend) or not backend.is_available
270
271
  active_tools = PromptBuilder().get_tools(is_offline=is_offline)
271
272
 
272
273
  if HAS_RICH:
File without changes
File without changes