cloudqa.hashnode.devAccess 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 ...Jan 11·5 min read
cloudqa.hashnode.devBuilder 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...Jan 11·1 min read
cloudqa.hashnode.devAgentic 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...Dec 17, 2025·4 min read
cloudqa.hashnode.devBuilding 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...Dec 17, 2025·4 min read
cloudqa.hashnode.devSpeak 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...Dec 16, 2025·3 min read