Microsoft Learn Site

Global AI Bootcamp 2024

NSU - Davie, FL

Find all resources at:

https://aiworkshop.info/

First, thank you!

Thank you to the volunteers of these amazing South Florida Meetups!

Today's Agenda & Speakers

  • 9:00am-10:00am: Welcome, Keynote & Announcements

  • 10:00am-11:30am:

  • 11:30am-12:30pm: Lunch Break (nearby campus food courts)

  • 12:30pm-2:00pm: 'MY AI PROJECT' Lightning Talks

    • Robert Hellestrae - Publishing IOS & Android phone app utilizing ChatGPT
    • Craig Simon - Publishing custom GPT available on the OpenAI site
  • 2:00pm-4:00pm:

    • Jiho Sohn - AI Video Workshop (LAPTOP REQUIRED, Microsoft and Google account REQUIRED to participate).

After-Event Gathering

Join us at Ye Olde Falcon Pub (2867 S University Dr, Davie, FL 33328) from 5:00pm to 7:00pm to continue discussions on AI community

David's background

Goals for Workshop

  • Play, make mistakes, have fun
  • Learn from each other & share what you know
  • Discuss future community possibilities for AI in 2024

Azure OpenAI Tools of Interest in 2024

Assistants

Semantic Kernel

Prompt Flow

Copilot Studio

Presentation:

Learn how to use OpenAI models using prompt engineering

Misc

OpenAI function example, search_hotel

[  
    {
        "name": "search_hotels",
        "description": "Retrieves hotels from the search index based on the parameters provided",
        "parameters": {
            "type": "object",
            "properties": {
                "location": {
                    "type": "string",
                    "description": "The location of the hotel (i.e. Seattle)"
                },
                "max_price": {
                    "type": "number",
                    "description": "The maximum price for the hotel"
                },
                "features": {
                    "type": "string",
                    "description": "A comma separated list of features (i.e. beachfront, free wifi, etc.)"
                }
            },
            "required": ["location"]
        }
    }
]