Skip to content

Instantly share code, notes, and snippets.

View aravindkarnam's full-sized avatar
🛠️
Building Crawl4AI

Aravind aravindkarnam

🛠️
Building Crawl4AI
View GitHub Profile
@ahelland
ahelland / FunctionBotRun.csx
Created April 26, 2016 18:36
An Azure Function implementing the Microsoft Bot Framework to return random quotes
#r "Newtonsoft.Json"
#r "Microsoft.Rest.ClientRuntime.dll"
#r "Microsoft.Bot.Connector.Utilities.dll"
#r "Microsoft.Bot.Connector.dll"
using System.Net;
using Microsoft.Bot.Connector;
public static async Task<HttpResponseMessage> Run(HttpRequestMessage req, TraceWriter log)
{
log.Verbose($"C# HTTP trigger function processed a request. RequestUri={req.RequestUri}");