FlareStart
HomeNewsHow ToSources
FlareStart

Where developers start their day. All the tech news & tutorials that matter, in one place.

Quick Links

  • Home
  • News
  • Tutorials
  • Sources
  • Privacy Policy

Connect

© 2026 FlareStart. All rights reserved.

Back to articles
Quick Tip: Function calling patterns with Azure OpenAI
NewsTools

Quick Tip: Function calling patterns with Azure OpenAI

via Dev.to Tutorialkarleeov1mo ago

Quick Tip: Function calling patterns with Azure OpenAI The Problem Many developers struggle to implement AI solutions efficiently on Azure. The Solution Here's a quick command that solves this: # Your command here az resource list --query "[?contains(name, 'searchTerm')]" --output table How it works This command uses JMESPath query syntax to filter resources. The --query parameter allows you to: Filter results based on conditions Transform output format Extract specific fields Example output Name ResourceGroup Location ----------------- --------------- ---------- myResource1 myRG eastus myResource2 myRG westus Why This Works Fast : Queries run server-side Flexible : JMESPath is powerful Readable : Table output is clean Pro Tips Tip 1: Combine with other commands az resource list --query "[?type=='Microsoft.Storage/storageAccounts']" | jq '.[].name' Tip 2: Save as alias # Add to ~/.bashrc or ~/.zshrc alias azfind = 'az resource list --query' Tip 3: Export to CSV az resource list --query

Continue reading on Dev.to Tutorial

Opens in a new tab

Read Full Article
14 views

Related Articles

The Subprime Technical Debt Crisis
News

The Subprime Technical Debt Crisis

Lobsters • 19h ago

“It Worked on My Machine” — Until It Reached Production
News

“It Worked on My Machine” — Until It Reached Production

Medium Programming • 19h ago

The best way to protect your phone from a warrantless search in 2026
News

The best way to protect your phone from a warrantless search in 2026

ZDNet • 20h ago

Roku launches a standalone app for Howdy, its $2.99 streaming service
News

Roku launches a standalone app for Howdy, its $2.99 streaming service

TechCrunch • 20h ago

Meta launches two new Ray-Ban glasses designed for prescription wearers
News

Meta launches two new Ray-Ban glasses designed for prescription wearers

TechCrunch • 20h ago

Discover More Articles