Tom X NguyenforDwarves Foundation's Team Blogdwarvesf.hashnode.dev·Oct 16, 2024Function calling in AI agentsIntroduction Function calling is a critical component in the architecture of AI agents, facilitating the integration of external functionalities and resources. This note explores how function calling is implemented in AI architectures and its role in...AI
Shubham Khanshubhamkhan.hashnode.dev·Oct 5, 2024Debouncing vs Throttling: Techniques for Efficient JavaScript Function CallsPerformance optimisation is crucial when developing modern web applications, especially those with interactive elements. Events like typing in a search bar, scrolling, or resizing a window can trigger many function calls in a very short period, poten...OptimizationJavaScript
Fotie M. Constantblog.fotiecodes.com·Oct 3, 2024Enhance LLM Capabilities with Function Calling: A Practical ExampleFunction calling has become an essential feature for working with large language models (LLMs), allowing developers to extend the capabilities of LLMs by integrating external tools and services. Instead of being confined to generic answers, function ...327 readsFunction Calling
Mahmoud Amrlearn-ai-technologies.hashnode.dev·Aug 31, 2024Quick Intro to Microsoft Semantic Kernel (AI Kitchen)Semantic Kernel is a tool that helps you easily integrate AI into your application. It can handle the process of converting your natural language prompt into a set of tool calls that can get your task done. What is Semantic Kernel? Semantic Kernel is...AI
Saurabh Naiksaurabhz.hashnode.dev·May 23, 2024Leveraging Mistral AI: Models, Helper Functions, and Use-CasesIntroduction: Mistral AI is a powerful platform that offers a variety of models designed to handle a wide range of tasks, from simple classification to complex reasoning and code generation. In this blog, we will explore the different types of Mistra...Generative AIgenerative ai
Richard Kovacsrichardkovacs.hashnode.dev·May 1, 2024Three Key Concepts to Build Future-Proof AI ApplicationsCurrent AI models won't reach AGI. Not even larger ones. GPT-5, GPT-6, Llama 4, Llama 5, Gemini Ultra Pro Max, it doesn't matter. We are currently living in the age of mixed computing. Deterministic computing is still the dominant type, as the majori...AI
Ritobroto Sethrito.hashnode.dev·Dec 29, 2023Food Ordering Bot with Langchain and OpenAI function callingIntroduction In this blog, we'll use OpenAI Function Calling to create a pizza ordering bot that interacts with users and takes their orders. The bot performs 3 operations: Greet the user. Take Orders from the user. Update the user on the order st...2 likes·403 readslangchain
Ankur Khandelwalblog.nocodetalks.co·Oct 9, 2023How to do OpenAI Function Calling in Bubble.ioFunction Calling is a way to receive the pre-defined JSON-type response from an OpenAI API call. If you are familiar with OpenAI API, you have observed that it returns the text only. So if you query OpenAI API to list down the list of exercises and y...Bubble PluginFunction Calling
Amal Shajiamalshaji.hashnode.dev·Jul 12, 2023ActionAI: Call local functions using OpenAI function callingActionAI is a small wrapper around Openai's function calling. It works by auto-generating json schemas for your Python functions. Repo https://github.com/amalshaji/actionai Usage Install the package, pip install actionai Now define a new function,...openai
Brian Enos Otienobrianenosotieno.hashnode.dev·Mar 5, 2023Functions And ArraysINTRODUCTION Functions are self-contained blocks of code that perform a specific task. They are a fundamental building block of software development. Functions are used to break down complex programs into smaller, more manageable pieces of code that ...17 likes·76 readsC Programmingfunctions