alpiecode 0.6.0__py3-none-any.whl

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.
@@ -0,0 +1,14 @@
1
+ Metadata-Version: 2.4
2
+ Name: alpiecode
3
+ Version: 0.6.0
4
+ Summary: AlpieCode — Autonomous AI Coding Agent CLI powered by local 169Pi GGUF VLM
5
+ Requires-Python: >=3.9
6
+ Requires-Dist: huggingface_hub>=0.20.0
7
+ Requires-Dist: rich>=13.0
8
+ Requires-Dist: click>=8.0
9
+ Requires-Dist: openai>=1.0.0
10
+ Requires-Dist: httpx>=0.24.0
11
+ Requires-Dist: duckduckgo-search>=7.0.0
12
+ Requires-Dist: beautifulsoup4>=4.12.0
13
+ Requires-Dist: yt-dlp>=2024.0.0
14
+ Requires-Dist: imageio-ffmpeg>=0.4.0
@@ -0,0 +1,17 @@
1
+ codeagent/__init__.py,sha256=kUR5RAFc7HCeiqdlX36dZOHkUI5wI6V_43RpEcD8b-0,22
2
+ codeagent/agent.py,sha256=GHFwttLFwjlxMZlfewBob0KkncVrIrY0cBwyaUgBgw8,45015
3
+ codeagent/cli.py,sha256=iR9ERVc0_opIZBhxuAxjPduMFJXKjbda8-6ncVF2QuE,7519
4
+ codeagent/compaction.py,sha256=fZPv2Qd2nFCsoObW-aLgcRr3LeeBh63LKHuwbieTr5A,5618
5
+ codeagent/config.py,sha256=_9hdiS8LN9WPWPC77K86rBnahtl_YaLDotG7Oh0CpzU,7011
6
+ codeagent/github.py,sha256=WUSjr7DLM4uZjAxdNzqXG2Fw1cXkpob2Y7QZcHkbTY4,9196
7
+ codeagent/guardian.py,sha256=mPsw3nQ4_5fWlfSrf1ji3G7FBT8ubKPDMizPSHUm1R4,5896
8
+ codeagent/local_model.py,sha256=hzsGvxqE_HQTdFpoi1L5nOtdFXycxT_gPr9VMS8ALsQ,18613
9
+ codeagent/media.py,sha256=2R7kkPFvn9tCwbbYBNBuhOYG70ebOKfTd6Z3tngwb80,10866
10
+ codeagent/memory.py,sha256=2ASWwfxxNb7m6mkQ4jCzL9wCqIf3y1n93boiTwaFaN4,4093
11
+ codeagent/tools.py,sha256=9q55Caj96_XTw7KyBsThx_keWX4-sqnAKiWNke7hKXs,29339
12
+ codeagent/updater.py,sha256=0QhCChjct7Gzj-1ZuPKdO_plsPpgYREhYWfJrjhIvbM,4082
13
+ alpiecode-0.6.0.dist-info/METADATA,sha256=eBdJ50xzl3rRhxzfOokIq9BNA11W6roycpdypoTkuzg,458
14
+ alpiecode-0.6.0.dist-info/WHEEL,sha256=K260EYznzXsJYBQGqmI8VTxEdiZYNvDZwW9cBh9-_MA,91
15
+ alpiecode-0.6.0.dist-info/entry_points.txt,sha256=i5KkPExDD-Xbq0JsLEU-HyasALt895KHt4V05rHqTXA,80
16
+ alpiecode-0.6.0.dist-info/top_level.txt,sha256=YErTXW5CF7fEcfQJxi0V7LVWHbw5EU8hbdo1rmgSXx0,10
17
+ alpiecode-0.6.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (83.0.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,3 @@
1
+ [console_scripts]
2
+ alpiecode = codeagent.cli:main
3
+ codeagent = codeagent.cli:main
@@ -0,0 +1 @@
1
+ codeagent
codeagent/__init__.py ADDED
@@ -0,0 +1 @@
1
+ __version__ = "0.1.0"