Introduction: Off-the-shelf embedding models work well for general text, but domain-specific applications often need better performance. Fine-tuning embeddings on your data can dramatically improve retrieval quality—turning a 70% recall into 90%+ for your specific use case. The key is creating high-quality training data that teaches the model what “similar” means in your domain. This guide… Continue reading
Category: Emerging Technologies
Emerging technologies include a variety of technologies such as educational technology, information technology, nanotechnology, biotechnology, cognitive science, psychotechnology, robotics, and artificial intelligence.
Introduction to NDepend : Static Code Analysis Tool
As a developer, you always have to take the pain of getting adapted to the best practices and coding guidelines to be followed as per the organizational or industrial standards. Easy way to ensure your coding style follows certain standard is to manually analyze your code or use a static code analyzer like FxCop, StyleCop… Continue reading
Query Routing: Intelligent Request Distribution for Cost-Efficient AI Systems
Introduction: Not all queries are equal—some need fast, cheap responses while others require deep reasoning. Query routing intelligently directs requests to the right model, index, or processing pipeline based on query characteristics. Route simple factual questions to smaller models, complex reasoning to GPT-4, and domain-specific queries to specialized indexes. This approach optimizes both cost and… Continue reading
Azure Cosmos DB – Connection Policy – Setting Connection Mode and Connection Protocol
Recently I have been trying multiple ways to optimize CosmosDb SQL.NET SDK integration calls from my web application that sits within a VNET. After carefully analyzing different options available within Cosmos Db SQL API’s have realized there are different aspects we could optimize in achieving minimal turn around time. In this article I am going… Continue reading
Blazer – The new experimental web framework from Microsoft
In this world of multiple Web frameworks Microsoft would not want to stop experimenting with new frameworks for Web development. Innovation is a key to Microsoft, doesn’t matter the start later than the React(Facebook) and Angular(Google) , but Microsoft has proven most of the times they are good in developing cutting edge frameworks. That’s how… Continue reading
LLM Testing Strategies: Building Confidence in Non-Deterministic Systems
Introduction: LLM applications are notoriously hard to test. Outputs are non-deterministic, quality is subjective, and traditional unit testing doesn’t capture the nuances of language generation. Yet shipping untested LLM features is a recipe for embarrassing failures—hallucinations, off-brand responses, or security vulnerabilities. This guide covers practical testing strategies: deterministic unit tests for prompt templates, evaluation suites… Continue reading
Setting up Local NPM repository to Speedup Dev/CI Builds
As a modern day JavaScript developer working with Node.js and NPM, it has been always any developer’s case to clean up local node modules sometimes when local build is broken. It is a tedious tasks to cleanup %appData%\npm-cache to do a fresh install of all the modules again. Depending on the number of modules your… Continue reading
Introduction to Kubernetes
What is Kubernetes? Kubernetes (a.k.a K8s) is an open-source system for automating deployment, scaling and management of containerized applications that was originally designed by Google and now maintained by the Cloud Native Computing Foundation. What Kubernetes can do? Kubernetes has a number of features in cloud computing world, it can be thought as a : A… Continue reading
Azure Cosmos DB name changes
An update from Microsoft Azure says that – As part of the transition from Azure DocumentDB to Azure Cosmos DB, the service and resource names are changing from “Azure DocumentDB” to “Azure Cosmos DB” on June 1, 2018. How does that Impact? When Microsoft introduced Cosmos DB, then have ensured that there was a smooth… Continue reading
Kubernetes vs Service Fabric
What is the difference between Kubernates and Service Fabric? It is a common question today among most of the business stakeholders, infrastructure specialists, and information technology architects. To answer in simpler words, quoting from this Reddit log : Kubernetes manage/orchestrate containers and applications within. ServiceFabric is a… Continue reading