opencode-llama-cpp-launcher 0.1.4__tar.gz → 0.1.5__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.
- {opencode_llama_cpp_launcher-0.1.4 → opencode_llama_cpp_launcher-0.1.5}/PKG-INFO +2 -2
- {opencode_llama_cpp_launcher-0.1.4 → opencode_llama_cpp_launcher-0.1.5}/README.md +1 -1
- {opencode_llama_cpp_launcher-0.1.4 → opencode_llama_cpp_launcher-0.1.5}/pyproject.toml +1 -1
- {opencode_llama_cpp_launcher-0.1.4 → opencode_llama_cpp_launcher-0.1.5}/uv.lock +1 -1
- {opencode_llama_cpp_launcher-0.1.4 → opencode_llama_cpp_launcher-0.1.5}/.github/workflows/release.yml +0 -0
- {opencode_llama_cpp_launcher-0.1.4 → opencode_llama_cpp_launcher-0.1.5}/.gitignore +0 -0
- {opencode_llama_cpp_launcher-0.1.4 → opencode_llama_cpp_launcher-0.1.5}/LICENSE +0 -0
- {opencode_llama_cpp_launcher-0.1.4 → opencode_llama_cpp_launcher-0.1.5}/docs/demo.tape +0 -0
- {opencode_llama_cpp_launcher-0.1.4 → opencode_llama_cpp_launcher-0.1.5}/docs/opencode-llama-demo.gif +0 -0
- {opencode_llama_cpp_launcher-0.1.4 → opencode_llama_cpp_launcher-0.1.5}/opencode-llama.example.yaml +0 -0
- {opencode_llama_cpp_launcher-0.1.4 → opencode_llama_cpp_launcher-0.1.5}/opencode_llama_cpp_launcher/__init__.py +0 -0
- {opencode_llama_cpp_launcher-0.1.4 → opencode_llama_cpp_launcher-0.1.5}/opencode_llama_cpp_launcher/cli/__init__.py +0 -0
- {opencode_llama_cpp_launcher-0.1.4 → opencode_llama_cpp_launcher-0.1.5}/opencode_llama_cpp_launcher/cli/entrypoint.py +0 -0
- {opencode_llama_cpp_launcher-0.1.4 → opencode_llama_cpp_launcher-0.1.5}/opencode_llama_cpp_launcher/models/__init__.py +0 -0
- {opencode_llama_cpp_launcher-0.1.4 → opencode_llama_cpp_launcher-0.1.5}/opencode_llama_cpp_launcher/models/launch_config.py +0 -0
- {opencode_llama_cpp_launcher-0.1.4 → opencode_llama_cpp_launcher-0.1.5}/opencode_llama_cpp_launcher/models/launch_status.py +0 -0
- {opencode_llama_cpp_launcher-0.1.4 → opencode_llama_cpp_launcher-0.1.5}/opencode_llama_cpp_launcher/services/__init__.py +0 -0
- {opencode_llama_cpp_launcher-0.1.4 → opencode_llama_cpp_launcher-0.1.5}/opencode_llama_cpp_launcher/services/binaries.py +0 -0
- {opencode_llama_cpp_launcher-0.1.4 → opencode_llama_cpp_launcher-0.1.5}/opencode_llama_cpp_launcher/services/errors.py +0 -0
- {opencode_llama_cpp_launcher-0.1.4 → opencode_llama_cpp_launcher-0.1.5}/opencode_llama_cpp_launcher/services/health.py +0 -0
- {opencode_llama_cpp_launcher-0.1.4 → opencode_llama_cpp_launcher-0.1.5}/opencode_llama_cpp_launcher/services/launch_config_loader.py +0 -0
- {opencode_llama_cpp_launcher-0.1.4 → opencode_llama_cpp_launcher-0.1.5}/opencode_llama_cpp_launcher/services/launch_preparer.py +0 -0
- {opencode_llama_cpp_launcher-0.1.4 → opencode_llama_cpp_launcher-0.1.5}/opencode_llama_cpp_launcher/services/launcher.py +0 -0
- {opencode_llama_cpp_launcher-0.1.4 → opencode_llama_cpp_launcher-0.1.5}/opencode_llama_cpp_launcher/services/opencode_config.py +0 -0
- {opencode_llama_cpp_launcher-0.1.4 → opencode_llama_cpp_launcher-0.1.5}/opencode_llama_cpp_launcher/services/ports.py +0 -0
- {opencode_llama_cpp_launcher-0.1.4 → opencode_llama_cpp_launcher-0.1.5}/opencode_llama_cpp_launcher/storage/__init__.py +0 -0
- {opencode_llama_cpp_launcher-0.1.4 → opencode_llama_cpp_launcher-0.1.5}/opencode_llama_cpp_launcher/storage/config_loader.py +0 -0
- {opencode_llama_cpp_launcher-0.1.4 → opencode_llama_cpp_launcher-0.1.5}/tests/test_cli.py +0 -0
- {opencode_llama_cpp_launcher-0.1.4 → opencode_llama_cpp_launcher-0.1.5}/tests/test_config_loader.py +0 -0
- {opencode_llama_cpp_launcher-0.1.4 → opencode_llama_cpp_launcher-0.1.5}/tests/test_launcher.py +0 -0
- {opencode_llama_cpp_launcher-0.1.4 → opencode_llama_cpp_launcher-0.1.5}/tests/test_opencode_config.py +0 -0
- {opencode_llama_cpp_launcher-0.1.4 → opencode_llama_cpp_launcher-0.1.5}/tests/test_ports.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: opencode-llama-cpp-launcher
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.5
|
|
4
4
|
Summary: One command launcher for running OpenCode with a local llama.cpp model.
|
|
5
5
|
License-Expression: MIT
|
|
6
6
|
License-File: LICENSE
|
|
@@ -26,7 +26,7 @@ Launch [OpenCode](https://opencode.ai/) with a local model served by
|
|
|
26
26
|
[llama.cpp](https://github.com/ggml-org/llama.cpp). The launcher starts
|
|
27
27
|
`llama-server`, wires OpenCode to it, and cleans up when your session ends.
|
|
28
28
|
|
|
29
|
-

|
|
29
|
+

|
|
30
30
|
|
|
31
31
|
## Requirements
|
|
32
32
|
|
|
@@ -4,7 +4,7 @@ Launch [OpenCode](https://opencode.ai/) with a local model served by
|
|
|
4
4
|
[llama.cpp](https://github.com/ggml-org/llama.cpp). The launcher starts
|
|
5
5
|
`llama-server`, wires OpenCode to it, and cleans up when your session ends.
|
|
6
6
|
|
|
7
|
-

|
|
7
|
+

|
|
8
8
|
|
|
9
9
|
## Requirements
|
|
10
10
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{opencode_llama_cpp_launcher-0.1.4 → opencode_llama_cpp_launcher-0.1.5}/docs/opencode-llama-demo.gif
RENAMED
|
File without changes
|
{opencode_llama_cpp_launcher-0.1.4 → opencode_llama_cpp_launcher-0.1.5}/opencode-llama.example.yaml
RENAMED
|
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
|
{opencode_llama_cpp_launcher-0.1.4 → opencode_llama_cpp_launcher-0.1.5}/tests/test_config_loader.py
RENAMED
|
File without changes
|
{opencode_llama_cpp_launcher-0.1.4 → opencode_llama_cpp_launcher-0.1.5}/tests/test_launcher.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|