mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
904a5b843e
* Python: .NET Samples - Restructure and Improve Samples (Feature Branch) (#4091) * Moved by agent (#4094) * Fix readme links * .NET Samples - Create `04-hosting` learning path step (#4098) * Agent move * Agent reorderd * Remove A2A section from README Removed A2A section from the Getting Started README. * Agent fixed links * Fix broken sample links in durable-agents README (#4101) * Initial plan * Fix broken internal links in documentation Co-authored-by: crickman <66376200+crickman@users.noreply.github.com> * Revert template link changes; keep only durable-agents README fix Co-authored-by: crickman <66376200+crickman@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: crickman <66376200+crickman@users.noreply.github.com> * .NET Samples - Create `03-workflows` learning path step (#4102) * Fix solution project path * Python: Fix broken markdown links to repo resources (outside /docs) (#4105) * Initial plan * Fix broken markdown links to repo resources Co-authored-by: crickman <66376200+crickman@users.noreply.github.com> * Update README to rename .NET Workflows Samples section --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: crickman <66376200+crickman@users.noreply.github.com> * .NET Samples - Create `02-agents` learning path step (#4107) * .NET: Fix broken relative link in GroupChatToolApproval README (#4108) * Initial plan * Fix broken link in GroupChatToolApproval README Co-authored-by: crickman <66376200+crickman@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: crickman <66376200+crickman@users.noreply.github.com> * Update labeler configuration for workflow samples * .NET - Reorder Agents samples to start from Step01 instead of Step04 (#4110) * Fix solution * Resolve new sample paths * Move new AgentSkills and AgentWithMemory_Step04 samples * Fix link * Fix readme path * fix: update stale dotnet/samples/Durable path reference in AGENTS.md Co-authored-by: crickman <66376200+crickman@users.noreply.github.com> * Moved new sample * Update solution * Resolve merge (new sample) * Sync to new sample - FoundryAgents_Step21_BingCustomSearch * Updated README * .NET Samples - Configuration Naming Update (#4149) * .NET: Restore AzureFunctions index parity with ConsoleApps under DurableAgents samples (#4221) * Clean-up `05_host_your_agent` * Config setting consistency * Refine samples * AGENTS.md * Move new samples * Re-order samples * Move new project and fixup solution * Fixup model config * Fix up new UT project --------- Co-authored-by: Copilot <198982749+Copilot@users.noreply.github.com>
168 lines
5.8 KiB
C#
168 lines
5.8 KiB
C#
// Copyright (c) Microsoft. All rights reserved.
|
|
|
|
using System.ComponentModel;
|
|
|
|
namespace A2A;
|
|
|
|
/// <summary>
|
|
/// A simple invoice plugin that returns mock data.
|
|
/// </summary>
|
|
public class Product
|
|
{
|
|
public string Name { get; set; }
|
|
public int Quantity { get; set; }
|
|
public decimal Price { get; set; } // Price per unit
|
|
|
|
public Product(string name, int quantity, decimal price)
|
|
{
|
|
this.Name = name;
|
|
this.Quantity = quantity;
|
|
this.Price = price;
|
|
}
|
|
|
|
public decimal TotalPrice() => this.Quantity * this.Price; // Total price for this product
|
|
}
|
|
|
|
public class Invoice
|
|
{
|
|
public string TransactionId { get; set; }
|
|
public string InvoiceId { get; set; }
|
|
public string CompanyName { get; set; }
|
|
public DateTime InvoiceDate { get; set; }
|
|
public List<Product> Products { get; set; } // List of products
|
|
|
|
public Invoice(string transactionId, string invoiceId, string companyName, DateTime invoiceDate, List<Product> products)
|
|
{
|
|
this.TransactionId = transactionId;
|
|
this.InvoiceId = invoiceId;
|
|
this.CompanyName = companyName;
|
|
this.InvoiceDate = invoiceDate;
|
|
this.Products = products;
|
|
}
|
|
|
|
public decimal TotalInvoicePrice() => this.Products.Sum(product => product.TotalPrice()); // Total price of all products in the invoice
|
|
}
|
|
|
|
public class InvoiceQuery
|
|
{
|
|
private readonly List<Invoice> _invoices;
|
|
|
|
public InvoiceQuery()
|
|
{
|
|
// Extended mock data with quantities and prices
|
|
this._invoices =
|
|
[
|
|
new("TICKET-XYZ987", "INV789", "Contoso", GetRandomDateWithinLastTwoMonths(),
|
|
[
|
|
new("T-Shirts", 150, 10.00m),
|
|
new("Hats", 200, 15.00m),
|
|
new("Glasses", 300, 5.00m)
|
|
]),
|
|
new("TICKET-XYZ111", "INV111", "XStore", GetRandomDateWithinLastTwoMonths(),
|
|
[
|
|
new("T-Shirts", 2500, 12.00m),
|
|
new("Hats", 1500, 8.00m),
|
|
new("Glasses", 200, 20.00m)
|
|
]),
|
|
new("TICKET-XYZ222", "INV222", "Cymbal Direct", GetRandomDateWithinLastTwoMonths(),
|
|
[
|
|
new("T-Shirts", 1200, 14.00m),
|
|
new("Hats", 800, 7.00m),
|
|
new("Glasses", 500, 25.00m)
|
|
]),
|
|
new("TICKET-XYZ333", "INV333", "Contoso", GetRandomDateWithinLastTwoMonths(),
|
|
[
|
|
new("T-Shirts", 400, 11.00m),
|
|
new("Hats", 600, 15.00m),
|
|
new("Glasses", 700, 5.00m)
|
|
]),
|
|
new("TICKET-XYZ444", "INV444", "XStore", GetRandomDateWithinLastTwoMonths(),
|
|
[
|
|
new("T-Shirts", 800, 10.00m),
|
|
new("Hats", 500, 18.00m),
|
|
new("Glasses", 300, 22.00m)
|
|
]),
|
|
new("TICKET-XYZ555", "INV555", "Cymbal Direct", GetRandomDateWithinLastTwoMonths(),
|
|
[
|
|
new("T-Shirts", 1100, 9.00m),
|
|
new("Hats", 900, 12.00m),
|
|
new("Glasses", 1200, 15.00m)
|
|
]),
|
|
new("TICKET-XYZ666", "INV666", "Contoso", GetRandomDateWithinLastTwoMonths(),
|
|
[
|
|
new("T-Shirts", 2500, 8.00m),
|
|
new("Hats", 1200, 10.00m),
|
|
new("Glasses", 1000, 6.00m)
|
|
]),
|
|
new("TICKET-XYZ777", "INV777", "XStore", GetRandomDateWithinLastTwoMonths(),
|
|
[
|
|
new("T-Shirts", 1900, 13.00m),
|
|
new("Hats", 1300, 16.00m),
|
|
new("Glasses", 800, 19.00m)
|
|
]),
|
|
new("TICKET-XYZ888", "INV888", "Cymbal Direct", GetRandomDateWithinLastTwoMonths(),
|
|
[
|
|
new("T-Shirts", 2200, 11.00m),
|
|
new("Hats", 1700, 8.50m),
|
|
new("Glasses", 600, 21.00m)
|
|
]),
|
|
new("TICKET-XYZ999", "INV999", "Contoso", GetRandomDateWithinLastTwoMonths(),
|
|
[
|
|
new("T-Shirts", 1400, 10.50m),
|
|
new("Hats", 1100, 9.00m),
|
|
new("Glasses", 950, 12.00m)
|
|
])
|
|
];
|
|
}
|
|
|
|
public static DateTime GetRandomDateWithinLastTwoMonths()
|
|
{
|
|
// Get the current date and time
|
|
DateTime endDate = DateTime.UtcNow;
|
|
|
|
// Calculate the start date, which is two months before the current date
|
|
DateTime startDate = endDate.AddMonths(-2);
|
|
|
|
// Generate a random number of days between 0 and the total number of days in the range
|
|
int totalDays = (endDate - startDate).Days;
|
|
int randomDays = Random.Shared.Next(0, totalDays + 1); // +1 to include the end date
|
|
|
|
// Return the random date
|
|
return startDate.AddDays(randomDays);
|
|
}
|
|
|
|
[Description("Retrieves invoices for the specified company and optionally within the specified time range")]
|
|
public IEnumerable<Invoice> QueryInvoices(string companyName, DateTime? startDate = null, DateTime? endDate = null)
|
|
{
|
|
var query = this._invoices.Where(i => i.CompanyName.Equals(companyName, StringComparison.OrdinalIgnoreCase));
|
|
|
|
if (startDate.HasValue)
|
|
{
|
|
query = query.Where(i => i.InvoiceDate >= startDate.Value);
|
|
}
|
|
|
|
if (endDate.HasValue)
|
|
{
|
|
query = query.Where(i => i.InvoiceDate <= endDate.Value);
|
|
}
|
|
|
|
return query.ToList();
|
|
}
|
|
|
|
[Description("Retrieves invoice using the transaction id")]
|
|
public IEnumerable<Invoice> QueryByTransactionId(string transactionId)
|
|
{
|
|
var query = this._invoices.Where(i => i.TransactionId.Equals(transactionId, StringComparison.OrdinalIgnoreCase));
|
|
|
|
return query.ToList();
|
|
}
|
|
|
|
[Description("Retrieves invoice using the invoice id")]
|
|
public IEnumerable<Invoice> QueryByInvoiceId(string invoiceId)
|
|
{
|
|
var query = this._invoices.Where(i => i.InvoiceId.Equals(invoiceId, StringComparison.OrdinalIgnoreCase));
|
|
|
|
return query.ToList();
|
|
}
|
|
}
|