chore: import upstream snapshot with attribution
CodeQL / Analyze (csharp) (push) Has been cancelled
CodeQL / Analyze (python) (push) Has been cancelled

This commit is contained in:
wehub-resource-sync
2026-07-13 13:21:23 +08:00
commit b957a53def
5423 changed files with 863745 additions and 0 deletions
@@ -0,0 +1,55 @@
// Copyright (c) Microsoft. All rights reserved.
using System.ComponentModel;
using Microsoft.SemanticKernel;
namespace Step04.Plugins;
internal sealed record WeatherForecast(
string Date,
string Location,
string HighTemperature,
string LowTemperature,
string Precipition);
/// <summary>
/// Mock plug-in to provide weather information.
/// </summary>
internal sealed class WeatherPlugin
{
private readonly Dictionary<string, WeatherForecast> _forecasts = [];
[KernelFunction]
public string GetCurrentDate() => DateTime.Now.Date.ToString("dd-MMM-yyyy");
[KernelFunction]
[Description("Provide the weather forecast for the given date and location. Dates farther than 15 days out will use historical data.")]
public WeatherForecast GetForecast(
string date,
string location)
{
string key = $"{date}-{location}";
if (!this._forecasts.TryGetValue(key, out WeatherForecast? forecast))
{
forecast = GenerateForecast(date, location);
this._forecasts[key] = forecast;
}
return forecast;
}
private static WeatherForecast GenerateForecast(string date, string location)
{
int highTemp = Random.Shared.Next(49, 96);
int lowTemp = highTemp - Random.Shared.Next(12, 20);
int precip = Random.Shared.Next(0, 80);
return
new WeatherForecast(
date,
location,
$"{highTemp} F",
$"{lowTemp} F",
$"{precip} %");
}
}