TheOneWhoWill commited on
Commit
c05997b
·
verified ·
1 Parent(s): c1e5a7c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +6 -16
README.md CHANGED
@@ -54,7 +54,7 @@ That's \~5,161 actual tool-calling examples (\~99% of the set) trained over 3 ep
54
  ## Quantization
55
  This model has fp16, Q8_0, Q6_K, Q5_K_M, and Q4_K_M quantization available in the gguf format. You can find them in this [repository](https://huggingface.co/TheOneWhoWill/Coding-Monkey-Gemma-GGUF)
56
 
57
- ## Usage
58
  ### llama.cpp
59
  To use this model with llama.cpp you can use the ggufs like so
60
  ```bash
@@ -74,18 +74,8 @@ then you can run it like so with the Modelfile in the same directory as the gguf
74
  ollama create coding-monkey -f Modelfile
75
  ```
76
 
77
- ---
78
-
79
- ## Serving & Deploying Fine-Tuned Adapters?
80
-
81
- Tired of merging LoRA weights, converting formats, and running quantization scripts just to get an OpenAI-compatible endpoint?
82
-
83
- Check out **[Lorivo](https://lorivo.dev/)**, a platform built to deploy and serve fine-tuned LoRA adapters instantly with production vLLM backends and standard OpenAI endpoints:
84
-
85
- - **Zero-Merge Serving:** Mount adapters dynamically on top of open-weight base models (Gemma, Qwen, Llama).
86
- - **Instant OpenAI Compatibility:** Plug directly into Cursor, Cline, Aider, or your custom agent harnesses.
87
- - **CLI & Web Control:** Deploy from your terminal via `lorivo deploy` or manage endpoints from the dashboard.
88
-
89
- 👉 **[Deploy your fine-tuned adapters on Lorivo →](https://lorivo.dev/)**
90
-
91
- ---
 
54
  ## Quantization
55
  This model has fp16, Q8_0, Q6_K, Q5_K_M, and Q4_K_M quantization available in the gguf format. You can find them in this [repository](https://huggingface.co/TheOneWhoWill/Coding-Monkey-Gemma-GGUF)
56
 
57
+ ## Usage & Deployment
58
  ### llama.cpp
59
  To use this model with llama.cpp you can use the ggufs like so
60
  ```bash
 
74
  ollama create coding-monkey -f Modelfile
75
  ```
76
 
77
+ ### Lorivo
78
+ Deploy this model with [Lorivo](https://lorivo.dev/) for a production-ready, OpenAI-compatible API endpoint. Lorivo supports serving fine-tuned LoRA adapters without requiring you to merge the adapter into the base model or manually manage the serving infrastructure. Note: Lorivo currently supports the LoRA adapter format containing adapter_config.json and the associated .safetensors adapter weights. The merged model or GGUF files are not supported for this deployment method.
79
+ ```bash
80
+ lorivo deploy ./Coding-Monkey-Gemma
81
+ ```