SSiddarthaincloudqa.hashnode.dev·Jan 11 · 5 min readAccess Modifiers explainedThe BaseService code Here is the code we will use throughout: public class BaseService { private final static String BASEURL = "www.google.com"; private RequestSpecification requestSpecification; static { RestAssured.filters(new ...00
SSiddarthaincloudqa.hashnode.dev·Jan 11 · 1 min readBuilder pattern in Javapublic class Employee { private final String firstName; private final String lastName; // private constructor, only Builder can call this private Employee(Builder builder) { this.firstName = builder.firstName; this.l...00
SSiddarthaincloudqa.hashnode.dev·Dec 17, 2025 · 4 min readAgentic workflow Example - with litellmIntroduction: Create two agents which talks to each other and comes to conclusion Native Tool Usage: It uses litellm's built-in tool handling (compatible with OpenAI, Anthropic, etc.), rather than manual string parsing. Two Agents, Two Tools: As re...00
SSiddarthaincloudqa.hashnode.dev·Dec 17, 2025 · 4 min readBuilding Agent with litellm - Travel Desk Agent as exampleBuilding a Travel Desk Agent using LiteLLM. This guide helps create a functional agent capable of "using tools" to search for flights and hotels—the core requirement for a travel desk. Why LiteLLM? LiteLLM is ideal for this because it provides a unif...00
SSiddarthaincloudqa.hashnode.dev·Dec 16, 2025 · 3 min readSpeak fluent englishYou have a large Passive Vocabulary (words you recognize when reading or listening) but a smaller Active Vocabulary (words you can recall instantly when speaking). Your goal now is not to "learn English" (you already know it), but to train your mouth...00