From 29d96e2a00454794d079100492a2a5752aa61ebd Mon Sep 17 00:00:00 2001 From: Adam Ladachowski Date: Sun, 15 Feb 2026 19:13:47 +0100 Subject: [PATCH] Bump to v0.1.18, add icon and badges to README - Add SVG icon with red rounded border "T" - Add PyPI version, coverage, Python version, and license badges - Remove video embed from README - Center header with icon Co-Authored-By: Claude Opus 4.5 --- README.md | 19 ++++++++++++++----- icon.svg | 4 ++++ pyproject.toml | 2 +- tensors/server/__init__.py | 2 +- 4 files changed, 20 insertions(+), 7 deletions(-) create mode 100644 icon.svg diff --git a/README.md b/README.md index 7633dae..2dd59c0 100644 --- a/README.md +++ b/README.md @@ -1,13 +1,22 @@ -[![Static Badge](https://img.shields.io/badge/pip_install-tensors-blue)](https://pypi.org/project/tensors) +

+ tensors +

-# tensors +

tensors

-A CLI tool for working with safetensor files, CivitAI models, and stable-diffusion.cpp image generation. Supports both local and remote server modes. +

+ PyPI + Coverage + Python + License +

+ +

+ A CLI tool for working with safetensor files, CivitAI models, and stable-diffusion.cpp image generation. +

## Features -https://github.com/user-attachments/assets/2e7629b4-34e7-4cbc-b50e-31d7fdd30239 - - **Read safetensor metadata** - Parse headers, count tensors, extract embedded metadata - **CivitAI integration** - Search models, fetch info, identify files by hash - **Download models** - Resume support, type-based default paths diff --git a/icon.svg b/icon.svg new file mode 100644 index 0000000..da124f7 --- /dev/null +++ b/icon.svg @@ -0,0 +1,4 @@ + + + T + \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index a7369ac..25936eb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "tensors" -version = "0.1.17" +version = "0.1.18" description = "Read safetensor metadata and fetch CivitAI model information" readme = "README.md" requires-python = ">=3.12" diff --git a/tensors/server/__init__.py b/tensors/server/__init__.py index 6596ad3..1a7a802 100644 --- a/tensors/server/__init__.py +++ b/tensors/server/__init__.py @@ -40,7 +40,7 @@ def create_app() -> FastAPI: app = FastAPI( title="tensors", description="API for CivitAI model management and image gallery", - version="0.1.17", + version="0.1.18", lifespan=lifespan, docs_url=None, redoc_url=None,