Instructions to use mradermacher/GPT-2-fine-tuned-mental-health-i1-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/GPT-2-fine-tuned-mental-health-i1-GGUF with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="mradermacher/GPT-2-fine-tuned-mental-health-i1-GGUF")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/GPT-2-fine-tuned-mental-health-i1-GGUF", dtype="auto") - llama-cpp-python
How to use mradermacher/GPT-2-fine-tuned-mental-health-i1-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="mradermacher/GPT-2-fine-tuned-mental-health-i1-GGUF", filename="GPT-2-fine-tuned-mental-health.i1-IQ1_M.gguf", )
output = llm( "Once upon a time,", max_tokens=512, echo=True ) print(output)
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use mradermacher/GPT-2-fine-tuned-mental-health-i1-GGUF with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf mradermacher/GPT-2-fine-tuned-mental-health-i1-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf mradermacher/GPT-2-fine-tuned-mental-health-i1-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf mradermacher/GPT-2-fine-tuned-mental-health-i1-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf mradermacher/GPT-2-fine-tuned-mental-health-i1-GGUF:Q4_K_M
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf mradermacher/GPT-2-fine-tuned-mental-health-i1-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/GPT-2-fine-tuned-mental-health-i1-GGUF:Q4_K_M
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf mradermacher/GPT-2-fine-tuned-mental-health-i1-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/GPT-2-fine-tuned-mental-health-i1-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/GPT-2-fine-tuned-mental-health-i1-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use mradermacher/GPT-2-fine-tuned-mental-health-i1-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "mradermacher/GPT-2-fine-tuned-mental-health-i1-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "mradermacher/GPT-2-fine-tuned-mental-health-i1-GGUF", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/mradermacher/GPT-2-fine-tuned-mental-health-i1-GGUF:Q4_K_M
- SGLang
How to use mradermacher/GPT-2-fine-tuned-mental-health-i1-GGUF with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "mradermacher/GPT-2-fine-tuned-mental-health-i1-GGUF" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "mradermacher/GPT-2-fine-tuned-mental-health-i1-GGUF", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "mradermacher/GPT-2-fine-tuned-mental-health-i1-GGUF" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "mradermacher/GPT-2-fine-tuned-mental-health-i1-GGUF", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Ollama
How to use mradermacher/GPT-2-fine-tuned-mental-health-i1-GGUF with Ollama:
ollama run hf.co/mradermacher/GPT-2-fine-tuned-mental-health-i1-GGUF:Q4_K_M
- Unsloth Studio
How to use mradermacher/GPT-2-fine-tuned-mental-health-i1-GGUF with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for mradermacher/GPT-2-fine-tuned-mental-health-i1-GGUF to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for mradermacher/GPT-2-fine-tuned-mental-health-i1-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for mradermacher/GPT-2-fine-tuned-mental-health-i1-GGUF to start chatting
- Atomic Chat new
- Docker Model Runner
How to use mradermacher/GPT-2-fine-tuned-mental-health-i1-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/GPT-2-fine-tuned-mental-health-i1-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/GPT-2-fine-tuned-mental-health-i1-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/GPT-2-fine-tuned-mental-health-i1-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.GPT-2-fine-tuned-mental-health-i1-GGUF-Q4_K_M
List all available models
lemonade list
uploaded from rich1
Browse files- .gitattributes +24 -0
- GPT-2-fine-tuned-mental-health.i1-IQ1_M.gguf +3 -0
- GPT-2-fine-tuned-mental-health.i1-IQ1_S.gguf +3 -0
- GPT-2-fine-tuned-mental-health.i1-IQ2_M.gguf +3 -0
- GPT-2-fine-tuned-mental-health.i1-IQ2_S.gguf +3 -0
- GPT-2-fine-tuned-mental-health.i1-IQ2_XS.gguf +3 -0
- GPT-2-fine-tuned-mental-health.i1-IQ2_XXS.gguf +3 -0
- GPT-2-fine-tuned-mental-health.i1-IQ3_M.gguf +3 -0
- GPT-2-fine-tuned-mental-health.i1-IQ3_S.gguf +3 -0
- GPT-2-fine-tuned-mental-health.i1-IQ3_XS.gguf +3 -0
- GPT-2-fine-tuned-mental-health.i1-IQ3_XXS.gguf +3 -0
- GPT-2-fine-tuned-mental-health.i1-IQ4_NL.gguf +3 -0
- GPT-2-fine-tuned-mental-health.i1-IQ4_XS.gguf +3 -0
- GPT-2-fine-tuned-mental-health.i1-Q2_K.gguf +3 -0
- GPT-2-fine-tuned-mental-health.i1-Q2_K_S.gguf +3 -0
- GPT-2-fine-tuned-mental-health.i1-Q3_K_L.gguf +3 -0
- GPT-2-fine-tuned-mental-health.i1-Q3_K_M.gguf +3 -0
- GPT-2-fine-tuned-mental-health.i1-Q3_K_S.gguf +3 -0
- GPT-2-fine-tuned-mental-health.i1-Q4_0.gguf +3 -0
- GPT-2-fine-tuned-mental-health.i1-Q4_1.gguf +3 -0
- GPT-2-fine-tuned-mental-health.i1-Q4_K_M.gguf +3 -0
- GPT-2-fine-tuned-mental-health.i1-Q4_K_S.gguf +3 -0
- GPT-2-fine-tuned-mental-health.i1-Q5_K_M.gguf +3 -0
- GPT-2-fine-tuned-mental-health.i1-Q5_K_S.gguf +3 -0
- GPT-2-fine-tuned-mental-health.i1-Q6_K.gguf +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,27 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
GPT-2-fine-tuned-mental-health.i1-IQ1_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
GPT-2-fine-tuned-mental-health.i1-IQ1_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
GPT-2-fine-tuned-mental-health.i1-IQ2_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
GPT-2-fine-tuned-mental-health.i1-IQ2_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
GPT-2-fine-tuned-mental-health.i1-IQ2_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
GPT-2-fine-tuned-mental-health.i1-IQ2_XXS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
GPT-2-fine-tuned-mental-health.i1-IQ3_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
GPT-2-fine-tuned-mental-health.i1-IQ3_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
GPT-2-fine-tuned-mental-health.i1-IQ3_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
GPT-2-fine-tuned-mental-health.i1-IQ3_XXS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
GPT-2-fine-tuned-mental-health.i1-IQ4_NL.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
GPT-2-fine-tuned-mental-health.i1-IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 48 |
+
GPT-2-fine-tuned-mental-health.i1-Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 49 |
+
GPT-2-fine-tuned-mental-health.i1-Q2_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 50 |
+
GPT-2-fine-tuned-mental-health.i1-Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 51 |
+
GPT-2-fine-tuned-mental-health.i1-Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 52 |
+
GPT-2-fine-tuned-mental-health.i1-Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 53 |
+
GPT-2-fine-tuned-mental-health.i1-Q4_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 54 |
+
GPT-2-fine-tuned-mental-health.i1-Q4_1.gguf filter=lfs diff=lfs merge=lfs -text
|
| 55 |
+
GPT-2-fine-tuned-mental-health.i1-Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 56 |
+
GPT-2-fine-tuned-mental-health.i1-Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 57 |
+
GPT-2-fine-tuned-mental-health.i1-Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 58 |
+
GPT-2-fine-tuned-mental-health.i1-Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 59 |
+
GPT-2-fine-tuned-mental-health.i1-Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
GPT-2-fine-tuned-mental-health.i1-IQ1_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:931179b1d1cdc94daa39bcc7a345bd2824671294d31a8e1c980d10d4b411e6d0
|
| 3 |
+
size 63721920
|
GPT-2-fine-tuned-mental-health.i1-IQ1_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:93961449a3f1f9d7d5e2fa2b69d4b2ced6bd2f7ea9250ab52b0bd3ce3f53b3bd
|
| 3 |
+
size 61952448
|
GPT-2-fine-tuned-mental-health.i1-IQ2_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dcd7dcf85bf57d4272fcabd0381fb15a00d04e3c899c363018bfc590da4f40fd
|
| 3 |
+
size 76765824
|
GPT-2-fine-tuned-mental-health.i1-IQ2_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:abae75531857636460db79819e711c0c26302d2693bd3901df1f90e6afe73d00
|
| 3 |
+
size 74406528
|
GPT-2-fine-tuned-mental-health.i1-IQ2_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:671bd1ffa950970b80fa7463582b284fdda9f90766f6fd7a1d9820d0dea7743d
|
| 3 |
+
size 69251520
|
GPT-2-fine-tuned-mental-health.i1-IQ2_XXS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f51bb77436a3270c3b0e9e412ff28d198936067efd74b7f80f7d7bdfa92da2c6
|
| 3 |
+
size 66671040
|
GPT-2-fine-tuned-mental-health.i1-IQ3_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:92ff5a0d394e24b8b1849930a77e1d6cf2efde9d9f6c3489dfcbe3ea353ef018
|
| 3 |
+
size 94223040
|
GPT-2-fine-tuned-mental-health.i1-IQ3_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cae500f2fd500a35627eb1e5f7416d353213b019597aa7e628d26b3e8af741f5
|
| 3 |
+
size 90149568
|
GPT-2-fine-tuned-mental-health.i1-IQ3_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:50f652ea35f82cd1fa716b596d6e391b054144781ade4259d676e5988f4fd848
|
| 3 |
+
size 89154240
|
GPT-2-fine-tuned-mental-health.i1-IQ3_XXS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:403e422ae2f59e6cf4184e9c13a3db64bcffb8dfd411f652aae268c0b13b3ac2
|
| 3 |
+
size 81373824
|
GPT-2-fine-tuned-mental-health.i1-IQ4_NL.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:569556453a7469a02c999c883ca0d8c6df46bc6a3a82e88b4183673a1555e448
|
| 3 |
+
size 106556160
|
GPT-2-fine-tuned-mental-health.i1-IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c63c2dd3f62b0787daae924a94eed4a864fdd8221641984c139bb43043a32c0f
|
| 3 |
+
size 102695776
|
GPT-2-fine-tuned-mental-health.i1-Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0899fa70547e1f6c5e7e8c70512eab1e3425f340368e3544cdc4d47db40ae512
|
| 3 |
+
size 81197568
|
GPT-2-fine-tuned-mental-health.i1-Q2_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:62066007ed93c8e97b842c3f34dc049d41f55798ff3a628de8c943c987a98f6c
|
| 3 |
+
size 78156288
|
GPT-2-fine-tuned-mental-health.i1-Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cf792d51222fa852f62f4a83cec8694e50df3fbd7ecf6617cb04911f639c5395
|
| 3 |
+
size 102093504
|
GPT-2-fine-tuned-mental-health.i1-Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ce4ad9ad8e1eee35c768276fac2845d5ab5a7d8404c6e765e61744a38c70e6cc
|
| 3 |
+
size 97669824
|
GPT-2-fine-tuned-mental-health.i1-Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ef2b0253d0c3fc19ea7f7e5b89c1aec62de7cffa69aafdd4b4569d9d6b09e4c6
|
| 3 |
+
size 90149568
|
GPT-2-fine-tuned-mental-health.i1-Q4_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:61b4c0192e5eff120e102adfb771903c27d2454ea610fff92155f1627b78b1b9
|
| 3 |
+
size 106703616
|
GPT-2-fine-tuned-mental-health.i1-Q4_1.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:28ee027ce28f52c88253b92c29b49c3a80e80b601d9d6d8d5f8149d93080a2a7
|
| 3 |
+
size 114276896
|
GPT-2-fine-tuned-mental-health.i1-Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:993427bdca2f3d3689e87b5fc472adb65ace59e27ab9e0c59b5fa802915f28a6
|
| 3 |
+
size 112859904
|
GPT-2-fine-tuned-mental-health.i1-Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ad207a95a9ea7fcc57507057ef22984868741c253899b928d2e46d43cc84c581
|
| 3 |
+
size 106851072
|
GPT-2-fine-tuned-mental-health.i1-Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9839130f91b1ed91ecf3b25317ad21a0e43d690386027411bf13a90ded54f3d2
|
| 3 |
+
size 126697824
|
GPT-2-fine-tuned-mental-health.i1-Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:69523817396c84136ed63619903543de61c68c4166e7043884294aab5598dd56
|
| 3 |
+
size 121997664
|
GPT-2-fine-tuned-mental-health.i1-Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5d90915287159aab34d72c4eb66d85dae9141fcd74e2f2e4e72f79e5ef2ed472
|
| 3 |
+
size 138404256
|