Command Palette
Search for a command to run...
Comments
Join the discussionNo comments yet. Be the first to comment.
More from this blog
Access Modifiers explained
The 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 ...
Builder pattern in Java
public 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...
Agentic workflow Example - with litellm
Introduction: 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...
Building Agent with litellm - Travel Desk Agent as example
Building 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...
Speak fluent english
You 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...