Skip to content

Instantly share code, notes, and snippets.

View rohit-lakhanpal's full-sized avatar

Rohit Lakhanpal rohit-lakhanpal

  • Melbourne, VIC, Australia
  • 09:41 (UTC +10:00)
View GitHub Profile

Guide to Azure OpenAI Studio

Introduction

Let's take a deeper look at the technology behind the scenes.

What Problem Are We Solving?

The Azure OpenAI Studio is a great place to start your experimentation with the different capabilities that Generative AI models have to offer. Capabilities such as:

step description activity type
1. If needed, create a new subscription for experiments. Ideally, at this stage, we might want to give flexibility to our hack teams to be able to spin up different resources across regions (to cater to capacity availability). Optional
2. Gather the top 3 subscription IDs where you'll be deploying resources & request Access to Azure OpenAI Service via this form. Mandatory
3. Think about the kinds of services you might use for your experimentation & consider the regions in which these services might need to be deployed. E.g., When deploying the latest GPT models, refer to this link to consider which region has the model you need.
@rohit-lakhanpal
rohit-lakhanpal / discovery-workshop.md
Last active August 9, 2023 23:48
The goal of this interactive session is to deeply understand your business and technology objectives. Through a blend of discussions around business landscape, product offerings, and technical deep dives, we aim to identify areas of opportunity and innovation that align with your goals. We encourage open dialogue and look forward to learning mor…

🌟 Discovery Workshop Agenda

Welcome to our discovery workshop. The goal of this interactive session is to deeply understand your business and technology objectives. Through a blend of discussions around business landscape, product offerings, and technical deep dives, we aim to identify areas of opportunity and innovation that align with your goals. We encourage open dialogue and look forward to learning more about your business.

Part 1: 🚀 Business Landscape & Vision

  • Introduction: Get to know the Organization
    • Organization Snapshot: Size, locations, operating geos (business & customers), key roles and responsibilities, tech partners
    • Sharing your Story: What is your mission and vision?
    • Business Reality: Current metrics (ARR v/s Services)
@rohit-lakhanpal
rohit-lakhanpal / fy-planning.md
Last active August 3, 2023 19:39
An guide for our FY24 planning session, encompassing strategic agenda points, preparation tips, and a dose of excitement for the journey ahead.

FY24 Planning: Roadmap to Success

TL;DR: Let's harness our collective insights and synergies to sculpt an impressive FY24 - all about building together, selling together, and powering a streamlined go-to-market strategy.

Our upcoming planning session will serve as a beacon, illuminating our business, product, and technology goals. It'll help align these with the FY24 Product Enablement Programs, Technical Enablement Initiatives, and Go-to-Market (GTM) incentives, laying a robust foundation for our shared journey.

📣 Get ready to spark ideas and accelerate our path to growth! 🚀

Proposed Meeting Agenda

@rohit-lakhanpal
rohit-lakhanpal / fy-prerequisites-for-planning.md
Last active August 3, 2023 06:01
A guide to prepare for our FY24 strategic planning session, including pre-requisites and a detailed agenda

Pre-Requisites for FY24 Planning Session

Before we delve into our detailed planning session, it's important that everyone comes prepared. The following points should be thoroughly considered by each team member. These are not only necessary for our conversation but will also enable us to strategize more effectively.

  1. Competitive Landscape

    • Assess our current competitive position. Who are our direct and indirect competitors?
    • What are the strengths and weaknesses of our competitors?
    • What strategic moves have they made recently?
  2. Market Trends

@rohit-lakhanpal
rohit-lakhanpal / launch.json
Created April 29, 2023 03:06
Create React App Debugging
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "chrome",
"request": "launch",
"name": "Launch Chrome against localhost",
@rohit-lakhanpal
rohit-lakhanpal / roprahs-favourite-links.md
Last active February 21, 2023 21:55
Running a successful hackathon
@rohit-lakhanpal
rohit-lakhanpal / asdk-local-createDb.sql
Created August 13, 2022 06:50
Script to create local databases for the Azure SaaS Dev Kit.
USE master;
GO
IF DB_ID ( N'AsdkTenancyDb' ) IS NOT NULL
DROP DATABASE AsdkTenancyDb;
GO
CREATE DATABASE AsdkTenancyDb;
GO
USE master;
GO
@rohit-lakhanpal
rohit-lakhanpal / Program.cs
Created June 3, 2022 09:20
Read the properties and relationships of an acronym object using Microsoft Graph (beta).
// using Azure.Identity;
// using Microsoft.Graph.Beta;
// Create an Azure App Registration with the following API permissions:
// - https://graph.microsoft.com/SearchConfiguration.Read.All
// - https://graph.microsoft.com/SearchConfiguration.ReadWrite.All
string clientId = "";
string clientSecret = "";
string tenantId = "";
@rohit-lakhanpal
rohit-lakhanpal / Embed-ADX-In-App.html
Created December 16, 2021 06:48
Use this to embed Azure Data Explorer's Web UI within your application. Learn more at https://docs.microsoft.com/en-us/azure/data-explorer/kusto/api/monaco/host-web-ux-in-iframe.
<iframe
width="1000"
height="800"
src="https://dataexplorer.azure.com/clusters/my-app.eastus/databases?ibizaPortal=true"
title="Analytics"
frameborder="0"
allowfullscreen>
</iframe>
<script>