Reranking text documents with Ollama and Qwen3 Embedding This little Reranking Go code example is calling Ollama to generate embeddings for the query and for eache candidate document, then sorting descending by cosine similarity. We already did similar activity - Reranking with embedding models but that was in python, with different LLM and almost a year ago.
https://www.glukhov.org/post/2025/06/uv-new-python-package-project-and-environment-manager/ Python uv (pronounced “you-vee”) is a modern, high-performance Python package and project manager written in Rust. It is designed as a drop-in replacement for traditional Python package management tools such as pip, pip-tools, virtualenv, pipx, and pyenv, aiming to simplify and accelerate Python development workflows uv is developed by Astral, the team behind the popular Python linter Ruff, and is designed to address common pain points in the Python ecosystem—such as slow installations, dependency conflicts, and complex environment management—by leveraging Rust’s performance and modern software architecture.
Another Gitflow Workflow overview: Steps, Alternatives, Pros & Cons https://dasroot.net/posts/2025/06/gitflow-overview-and-alternatives #Gitflow #git #devops Gitflow is a structured Git branching model designed to manage software development workflows with dedicated branches for features, releases, and hotfixes. It emphasizes **stable code in production**, **parallel development**, and **controlled release cycles**. While it offers robust version control and collaboration, its complexity and rigidity make it less suitable for agile or continuous deployment environments. Alternatives like **GitHub Flow** and **Trunk-Based Development** provide simpler, more flexible workflows.
Comments
Post a Comment