---
title: "Using Tools: A Meeting Scheduler"
url: https://daily.dev/posts/using-tools-a-meeting-scheduler-bixyhvmsb
source_url: https://www.ardanlabs.com/blog/2026/03/using-tools-a-meeting-scheduler/
type: article
source: "Ardan Labs"
published: 2026-03-17T12:48:25.726Z
updated: 2026-03-17T12:48:53.338Z
tags: ["golang", "ai-agents", "langchain"]
reading_time: 8
upvotes: 8
comments: 0
language: en
---

> ## Documentation Index
> Fetch the complete documentation index at: https://daily.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Using Tools: A Meeting Scheduler

**[Ardan Labs](https://daily.dev/sources/ardlbs)** · 8 min read · 8 upvotes · 0 comments

## Summary

A practical walkthrough of building an LLM-powered meeting scheduler in Go using function/tool calling. The agent queries a local meeting database via a `meetings` tool, passes results back to the LLM in a loop until no more tool calls are needed, and returns available 45-minute time slots. Uses Ardan Labs' Kronk model server (OpenAI-compatible API) with the Ministral model. Covers system prompt design, tool definition schema, argument parsing, and the multi-round-trip conversation loop pattern. Full code available on GitHub in ~160 lines.

## Full article

daily.dev links to this article rather than hosting it. Read it at the original source: <https://www.ardanlabs.com/blog/2026/03/using-tools-a-meeting-scheduler/>

## Similar posts on daily.dev

- [I connected my local LLM to Google Calendar, and it schedules my day better than I ever could](https://daily.dev/posts/i-connected-my-local-llm-to-google-calendar-and-it-schedules-my-day-better-than-i-ever-could-o9mcgkewg) · XDA Developers · 1 upvotes · 0 comments

---

Tags: [#golang](https://daily.dev/tags/golang), [#ai-agents](https://daily.dev/tags/ai-agents), [#langchain](https://daily.dev/tags/langchain)

[View this post on daily.dev](https://daily.dev/posts/using-tools-a-meeting-scheduler-bixyhvmsb)
