├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── notebooks ├── README.md ├── agent-framework │ ├── README.md │ └── dotnet │ │ ├── agentframework-101.dib │ │ └── resources │ │ └── parking-sign.jpg ├── azure-openai │ ├── README.md │ ├── dotnet │ │ ├── Utilities.cs │ │ └── gen-ai-for-devs.ipynb │ └── python │ │ └── deepresearch-agent.ipynb └── semantic-kernel │ ├── Plugins │ ├── BudgetAdvisor │ │ └── BudgetAdvisor.cs │ ├── CityPlugin │ │ └── GetCity │ │ │ ├── config.json │ │ │ └── skprompt.txt │ ├── FlightTrackerPlugin │ │ └── GetIATANameFunction │ │ │ ├── config.json │ │ │ └── skprompt.txt │ ├── FoodPlugin │ │ ├── GetOptions │ │ │ ├── config.json │ │ │ └── skprompt.txt │ │ └── GetRecipe │ │ │ ├── config.json │ │ │ └── skprompt.txt │ ├── GuessPlugin │ │ ├── GetRiddle │ │ │ ├── config.json │ │ │ └── skprompt.txt │ │ └── GuessWhat │ │ │ ├── config.json │ │ │ └── skprompt.txt │ └── ShoppingPlugin │ │ └── GetGroceryList │ │ ├── config.json │ │ └── skprompt.txt │ ├── README.md │ ├── Resources │ ├── HR Policies.md │ ├── HiEnterprise Troubleshooting Guide.docx │ ├── Leave and Attendance Records.pdf │ ├── Policy Document.pdf │ ├── agent_performance_metrics.txt │ ├── historical_customer_interactions.txt │ └── sales_data.txt │ └── dotnet │ ├── Helpers │ ├── GettingStarted.cs │ ├── JsonResultTranslator.cs │ ├── Settings.cs │ └── Utilities.cs │ ├── aifoundry-agents.dib │ ├── semantickernel-101.ipynb │ └── semantickernel-agents.dib └── samples ├── README.md └── dotnet ├── A2A-CustomerService ├── .github │ └── dependabot.yml ├── .gitignore ├── README.md ├── backend │ ├── .gitignore │ ├── A2ACustomerService.csproj │ ├── Configuration │ │ └── ServiceConfiguration.cs │ ├── Controllers │ │ └── CustomerServiceController.cs │ ├── Interfaces │ │ ├── IConfigurationService.cs │ │ ├── ILLMService.cs │ │ └── ITicketService.cs │ ├── Models │ │ ├── AgentResponse.cs │ │ ├── ApiModels.cs │ │ └── CustomerTicket.cs │ ├── Program.cs │ ├── README.md │ ├── Services │ │ ├── A2ATicketService.cs │ │ ├── A2ATransportClient.cs │ │ ├── AgentCardFactory.cs │ │ ├── Agents │ │ │ └── A2AAgents.cs │ │ ├── ConfigurationService.cs │ │ ├── LLMService.cs │ │ └── MockTicketService.cs │ ├── appsettings.Development.json │ └── appsettings.json └── frontend │ ├── components.json │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── public │ └── favicon.svg │ ├── src │ ├── App.tsx │ ├── ErrorFallback.tsx │ ├── components │ │ ├── BackendIntegration.tsx │ │ ├── ImplementationToggle.tsx │ │ └── ui │ │ │ ├── alert.tsx │ │ │ ├── badge.tsx │ │ │ ├── button.tsx │ │ │ ├── card.tsx │ │ │ ├── collapsible.tsx │ │ │ ├── form.tsx │ │ │ ├── input.tsx │ │ │ ├── label.tsx │ │ │ ├── progress.tsx │ │ │ ├── separator.tsx │ │ │ ├── sonner.tsx │ │ │ ├── switch.tsx │ │ │ ├── textarea.tsx │ │ │ └── toggle.tsx │ ├── hooks │ │ └── useCustomerServiceAPI.ts │ ├── index.css │ ├── lib │ │ ├── spark-mock.ts │ │ └── utils.ts │ ├── main.css │ ├── main.tsx │ ├── services │ │ └── api.ts │ ├── styles │ │ └── theme.css │ └── vite-end.d.ts │ ├── tailwind.config.js │ ├── theme.json │ ├── tsconfig.json │ └── vite.config.ts ├── ConvertHeicMCP ├── ConvertHeicMCP.csproj ├── ConvertHeicMCP.sln ├── HeicConverter.cs ├── HeicTools.cs └── Program.cs ├── CustomCopilot ├── CustomCopilot.csproj ├── CustomCopilot.sln ├── Plugins │ ├── FlightTracker │ │ └── FlightTracker.cs │ ├── PlaceSuggestions │ │ └── PlaceSuggestions.cs │ └── Weather │ │ └── Weather.cs └── Program.cs ├── local-rag-sk ├── Documents │ └── HR Policy.docx ├── Helpers │ ├── MemoryHelper.cs │ └── OnnxRuntimeGenAITextCompletionService.cs ├── Program.cs ├── README.md ├── local-rag-sk.csproj └── local-rag-sk.sln ├── microsoft-agent-sk ├── Agents │ └── TravelAgent.cs ├── BotHandler.cs ├── Controllers │ └── BotController.cs ├── Helpers │ └── FlightResponse.cs ├── Plugins │ └── TimePlugin.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── README.md ├── ServiceCollectionExtensions.cs ├── appsettings.Development.json ├── appsettings.json ├── microsoft-agent-sk.csproj ├── microsoft-agent-sk.csproj.user └── microsoft-agent-sk.sln ├── openai-multimodal-chat ├── AOI-Demo.sln ├── ServiceHelper │ ├── AOIHelper.cs │ └── ServiceHelper.csproj ├── SpeechChat │ ├── Program.cs │ └── SpeechChat.csproj └── TextChat │ ├── Program.cs │ └── TextChat.csproj ├── spend-dashboard ├── README.md ├── backend │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ └── SpendDashboard.Api.csproj └── frontend │ ├── .env │ ├── .env.example │ ├── LICENSE │ ├── components.json │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── public │ └── favicon.svg │ ├── src │ ├── App.tsx │ ├── ErrorFallback.tsx │ ├── components │ │ ├── AppShell.tsx │ │ ├── ApprovalModal.tsx │ │ ├── InvoicesTable.tsx │ │ ├── StatusBadge.tsx │ │ ├── StatusPanel.tsx │ │ └── ui │ │ │ ├── accordion.tsx │ │ │ ├── alert-dialog.tsx │ │ │ ├── alert.tsx │ │ │ ├── aspect-ratio.tsx │ │ │ ├── avatar.tsx │ │ │ ├── badge.tsx │ │ │ ├── breadcrumb.tsx │ │ │ ├── button.tsx │ │ │ ├── calendar.tsx │ │ │ ├── card.tsx │ │ │ ├── carousel.tsx │ │ │ ├── chart.tsx │ │ │ ├── checkbox.tsx │ │ │ ├── collapsible.tsx │ │ │ ├── command.tsx │ │ │ ├── context-menu.tsx │ │ │ ├── dialog.tsx │ │ │ ├── drawer.tsx │ │ │ ├── dropdown-menu.tsx │ │ │ ├── form.tsx │ │ │ ├── hover-card.tsx │ │ │ ├── input-otp.tsx │ │ │ ├── input.tsx │ │ │ ├── label.tsx │ │ │ ├── menubar.tsx │ │ │ ├── navigation-menu.tsx │ │ │ ├── pagination.tsx │ │ │ ├── popover.tsx │ │ │ ├── progress.tsx │ │ │ ├── radio-group.tsx │ │ │ ├── resizable.tsx │ │ │ ├── scroll-area.tsx │ │ │ ├── select.tsx │ │ │ ├── separator.tsx │ │ │ ├── sheet.tsx │ │ │ ├── sidebar.tsx │ │ │ ├── skeleton.tsx │ │ │ ├── slider.tsx │ │ │ ├── sonner.tsx │ │ │ ├── switch.tsx │ │ │ ├── table.tsx │ │ │ ├── tabs.tsx │ │ │ ├── textarea.tsx │ │ │ ├── toggle-group.tsx │ │ │ ├── toggle.tsx │ │ │ └── tooltip.tsx │ ├── hooks │ │ └── use-mobile.ts │ ├── index.css │ ├── lib │ │ ├── api.ts │ │ ├── types.ts │ │ └── utils.ts │ ├── main.css │ ├── main.tsx │ ├── styles │ │ └── theme.css │ └── vite-end.d.ts │ ├── tailwind.config.js │ ├── theme.json │ ├── tsconfig.json │ └── vite.config.ts └── techmart-portal ├── README.md ├── backend ├── Directory.Packages.props ├── TechMart.AgentHost │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ └── TechMart.AgentHost.csproj ├── TechMart.AppHost │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ └── TechMart.AppHost.csproj ├── TechMart.FinanceAgent │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ └── TechMart.FinanceAgent.csproj ├── TechMart.InventoryAgent │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ └── TechMart.InventoryAgent.csproj ├── TechMart.ServiceDefaults │ ├── Extensions.cs │ └── TechMart.ServiceDefaults.csproj ├── TechMart.SupportAgent │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ └── TechMart.SupportAgent.csproj ├── TechMart.sln └── nuget.config └── frontend ├── .eslintrc.json ├── .gitignore ├── README.md ├── next.config.mjs ├── package-lock.json ├── package.json ├── postcss.config.mjs ├── src └── app │ ├── api │ └── copilotkit │ │ └── route.ts │ ├── favicon.ico │ ├── fonts │ ├── GeistMonoVF.woff │ └── GeistVF.woff │ ├── globals.css │ ├── layout.tsx │ └── page.tsx ├── tailwind.config.ts └── tsconfig.json /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/README.md -------------------------------------------------------------------------------- /notebooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/notebooks/README.md -------------------------------------------------------------------------------- /notebooks/agent-framework/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/notebooks/agent-framework/README.md -------------------------------------------------------------------------------- /notebooks/agent-framework/dotnet/agentframework-101.dib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/notebooks/agent-framework/dotnet/agentframework-101.dib -------------------------------------------------------------------------------- /notebooks/agent-framework/dotnet/resources/parking-sign.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/notebooks/agent-framework/dotnet/resources/parking-sign.jpg -------------------------------------------------------------------------------- /notebooks/azure-openai/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/notebooks/azure-openai/README.md -------------------------------------------------------------------------------- /notebooks/azure-openai/dotnet/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/notebooks/azure-openai/dotnet/Utilities.cs -------------------------------------------------------------------------------- /notebooks/azure-openai/dotnet/gen-ai-for-devs.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/notebooks/azure-openai/dotnet/gen-ai-for-devs.ipynb -------------------------------------------------------------------------------- /notebooks/azure-openai/python/deepresearch-agent.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/notebooks/azure-openai/python/deepresearch-agent.ipynb -------------------------------------------------------------------------------- /notebooks/semantic-kernel/Plugins/BudgetAdvisor/BudgetAdvisor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/notebooks/semantic-kernel/Plugins/BudgetAdvisor/BudgetAdvisor.cs -------------------------------------------------------------------------------- /notebooks/semantic-kernel/Plugins/CityPlugin/GetCity/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/notebooks/semantic-kernel/Plugins/CityPlugin/GetCity/config.json -------------------------------------------------------------------------------- /notebooks/semantic-kernel/Plugins/CityPlugin/GetCity/skprompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/notebooks/semantic-kernel/Plugins/CityPlugin/GetCity/skprompt.txt -------------------------------------------------------------------------------- /notebooks/semantic-kernel/Plugins/FlightTrackerPlugin/GetIATANameFunction/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/notebooks/semantic-kernel/Plugins/FlightTrackerPlugin/GetIATANameFunction/config.json -------------------------------------------------------------------------------- /notebooks/semantic-kernel/Plugins/FlightTrackerPlugin/GetIATANameFunction/skprompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/notebooks/semantic-kernel/Plugins/FlightTrackerPlugin/GetIATANameFunction/skprompt.txt -------------------------------------------------------------------------------- /notebooks/semantic-kernel/Plugins/FoodPlugin/GetOptions/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/notebooks/semantic-kernel/Plugins/FoodPlugin/GetOptions/config.json -------------------------------------------------------------------------------- /notebooks/semantic-kernel/Plugins/FoodPlugin/GetOptions/skprompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/notebooks/semantic-kernel/Plugins/FoodPlugin/GetOptions/skprompt.txt -------------------------------------------------------------------------------- /notebooks/semantic-kernel/Plugins/FoodPlugin/GetRecipe/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/notebooks/semantic-kernel/Plugins/FoodPlugin/GetRecipe/config.json -------------------------------------------------------------------------------- /notebooks/semantic-kernel/Plugins/FoodPlugin/GetRecipe/skprompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/notebooks/semantic-kernel/Plugins/FoodPlugin/GetRecipe/skprompt.txt -------------------------------------------------------------------------------- /notebooks/semantic-kernel/Plugins/GuessPlugin/GetRiddle/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/notebooks/semantic-kernel/Plugins/GuessPlugin/GetRiddle/config.json -------------------------------------------------------------------------------- /notebooks/semantic-kernel/Plugins/GuessPlugin/GetRiddle/skprompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/notebooks/semantic-kernel/Plugins/GuessPlugin/GetRiddle/skprompt.txt -------------------------------------------------------------------------------- /notebooks/semantic-kernel/Plugins/GuessPlugin/GuessWhat/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/notebooks/semantic-kernel/Plugins/GuessPlugin/GuessWhat/config.json -------------------------------------------------------------------------------- /notebooks/semantic-kernel/Plugins/GuessPlugin/GuessWhat/skprompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/notebooks/semantic-kernel/Plugins/GuessPlugin/GuessWhat/skprompt.txt -------------------------------------------------------------------------------- /notebooks/semantic-kernel/Plugins/ShoppingPlugin/GetGroceryList/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/notebooks/semantic-kernel/Plugins/ShoppingPlugin/GetGroceryList/config.json -------------------------------------------------------------------------------- /notebooks/semantic-kernel/Plugins/ShoppingPlugin/GetGroceryList/skprompt.txt: -------------------------------------------------------------------------------- 1 | Generate a grocery list for {{$input}} -------------------------------------------------------------------------------- /notebooks/semantic-kernel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/notebooks/semantic-kernel/README.md -------------------------------------------------------------------------------- /notebooks/semantic-kernel/Resources/HR Policies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/notebooks/semantic-kernel/Resources/HR Policies.md -------------------------------------------------------------------------------- /notebooks/semantic-kernel/Resources/HiEnterprise Troubleshooting Guide.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/notebooks/semantic-kernel/Resources/HiEnterprise Troubleshooting Guide.docx -------------------------------------------------------------------------------- /notebooks/semantic-kernel/Resources/Leave and Attendance Records.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/notebooks/semantic-kernel/Resources/Leave and Attendance Records.pdf -------------------------------------------------------------------------------- /notebooks/semantic-kernel/Resources/Policy Document.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/notebooks/semantic-kernel/Resources/Policy Document.pdf -------------------------------------------------------------------------------- /notebooks/semantic-kernel/Resources/agent_performance_metrics.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/notebooks/semantic-kernel/Resources/agent_performance_metrics.txt -------------------------------------------------------------------------------- /notebooks/semantic-kernel/Resources/historical_customer_interactions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/notebooks/semantic-kernel/Resources/historical_customer_interactions.txt -------------------------------------------------------------------------------- /notebooks/semantic-kernel/Resources/sales_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/notebooks/semantic-kernel/Resources/sales_data.txt -------------------------------------------------------------------------------- /notebooks/semantic-kernel/dotnet/Helpers/GettingStarted.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/notebooks/semantic-kernel/dotnet/Helpers/GettingStarted.cs -------------------------------------------------------------------------------- /notebooks/semantic-kernel/dotnet/Helpers/JsonResultTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/notebooks/semantic-kernel/dotnet/Helpers/JsonResultTranslator.cs -------------------------------------------------------------------------------- /notebooks/semantic-kernel/dotnet/Helpers/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/notebooks/semantic-kernel/dotnet/Helpers/Settings.cs -------------------------------------------------------------------------------- /notebooks/semantic-kernel/dotnet/Helpers/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/notebooks/semantic-kernel/dotnet/Helpers/Utilities.cs -------------------------------------------------------------------------------- /notebooks/semantic-kernel/dotnet/aifoundry-agents.dib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/notebooks/semantic-kernel/dotnet/aifoundry-agents.dib -------------------------------------------------------------------------------- /notebooks/semantic-kernel/dotnet/semantickernel-101.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/notebooks/semantic-kernel/dotnet/semantickernel-101.ipynb -------------------------------------------------------------------------------- /notebooks/semantic-kernel/dotnet/semantickernel-agents.dib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/notebooks/semantic-kernel/dotnet/semantickernel-agents.dib -------------------------------------------------------------------------------- /samples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/README.md -------------------------------------------------------------------------------- /samples/dotnet/A2A-CustomerService/.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/A2A-CustomerService/.github/dependabot.yml -------------------------------------------------------------------------------- /samples/dotnet/A2A-CustomerService/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/A2A-CustomerService/.gitignore -------------------------------------------------------------------------------- /samples/dotnet/A2A-CustomerService/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/A2A-CustomerService/README.md -------------------------------------------------------------------------------- /samples/dotnet/A2A-CustomerService/backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/A2A-CustomerService/backend/.gitignore -------------------------------------------------------------------------------- /samples/dotnet/A2A-CustomerService/backend/A2ACustomerService.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/A2A-CustomerService/backend/A2ACustomerService.csproj -------------------------------------------------------------------------------- /samples/dotnet/A2A-CustomerService/backend/Configuration/ServiceConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/A2A-CustomerService/backend/Configuration/ServiceConfiguration.cs -------------------------------------------------------------------------------- /samples/dotnet/A2A-CustomerService/backend/Controllers/CustomerServiceController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/A2A-CustomerService/backend/Controllers/CustomerServiceController.cs -------------------------------------------------------------------------------- /samples/dotnet/A2A-CustomerService/backend/Interfaces/IConfigurationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/A2A-CustomerService/backend/Interfaces/IConfigurationService.cs -------------------------------------------------------------------------------- /samples/dotnet/A2A-CustomerService/backend/Interfaces/ILLMService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/A2A-CustomerService/backend/Interfaces/ILLMService.cs -------------------------------------------------------------------------------- /samples/dotnet/A2A-CustomerService/backend/Interfaces/ITicketService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/A2A-CustomerService/backend/Interfaces/ITicketService.cs -------------------------------------------------------------------------------- /samples/dotnet/A2A-CustomerService/backend/Models/AgentResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/A2A-CustomerService/backend/Models/AgentResponse.cs -------------------------------------------------------------------------------- /samples/dotnet/A2A-CustomerService/backend/Models/ApiModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/A2A-CustomerService/backend/Models/ApiModels.cs -------------------------------------------------------------------------------- /samples/dotnet/A2A-CustomerService/backend/Models/CustomerTicket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/A2A-CustomerService/backend/Models/CustomerTicket.cs -------------------------------------------------------------------------------- /samples/dotnet/A2A-CustomerService/backend/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/A2A-CustomerService/backend/Program.cs -------------------------------------------------------------------------------- /samples/dotnet/A2A-CustomerService/backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/A2A-CustomerService/backend/README.md -------------------------------------------------------------------------------- /samples/dotnet/A2A-CustomerService/backend/Services/A2ATicketService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/A2A-CustomerService/backend/Services/A2ATicketService.cs -------------------------------------------------------------------------------- /samples/dotnet/A2A-CustomerService/backend/Services/A2ATransportClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/A2A-CustomerService/backend/Services/A2ATransportClient.cs -------------------------------------------------------------------------------- /samples/dotnet/A2A-CustomerService/backend/Services/AgentCardFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/A2A-CustomerService/backend/Services/AgentCardFactory.cs -------------------------------------------------------------------------------- /samples/dotnet/A2A-CustomerService/backend/Services/Agents/A2AAgents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/A2A-CustomerService/backend/Services/Agents/A2AAgents.cs -------------------------------------------------------------------------------- /samples/dotnet/A2A-CustomerService/backend/Services/ConfigurationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/A2A-CustomerService/backend/Services/ConfigurationService.cs -------------------------------------------------------------------------------- /samples/dotnet/A2A-CustomerService/backend/Services/LLMService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/A2A-CustomerService/backend/Services/LLMService.cs -------------------------------------------------------------------------------- /samples/dotnet/A2A-CustomerService/backend/Services/MockTicketService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/A2A-CustomerService/backend/Services/MockTicketService.cs -------------------------------------------------------------------------------- /samples/dotnet/A2A-CustomerService/backend/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/A2A-CustomerService/backend/appsettings.Development.json -------------------------------------------------------------------------------- /samples/dotnet/A2A-CustomerService/backend/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/A2A-CustomerService/backend/appsettings.json -------------------------------------------------------------------------------- /samples/dotnet/A2A-CustomerService/frontend/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/A2A-CustomerService/frontend/components.json -------------------------------------------------------------------------------- /samples/dotnet/A2A-CustomerService/frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/A2A-CustomerService/frontend/index.html -------------------------------------------------------------------------------- /samples/dotnet/A2A-CustomerService/frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/A2A-CustomerService/frontend/package-lock.json -------------------------------------------------------------------------------- /samples/dotnet/A2A-CustomerService/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/A2A-CustomerService/frontend/package.json -------------------------------------------------------------------------------- /samples/dotnet/A2A-CustomerService/frontend/public/favicon.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/dotnet/A2A-CustomerService/frontend/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/A2A-CustomerService/frontend/src/App.tsx -------------------------------------------------------------------------------- /samples/dotnet/A2A-CustomerService/frontend/src/ErrorFallback.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/A2A-CustomerService/frontend/src/ErrorFallback.tsx -------------------------------------------------------------------------------- /samples/dotnet/A2A-CustomerService/frontend/src/components/BackendIntegration.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/A2A-CustomerService/frontend/src/components/BackendIntegration.tsx -------------------------------------------------------------------------------- /samples/dotnet/A2A-CustomerService/frontend/src/components/ImplementationToggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/A2A-CustomerService/frontend/src/components/ImplementationToggle.tsx -------------------------------------------------------------------------------- /samples/dotnet/A2A-CustomerService/frontend/src/components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/A2A-CustomerService/frontend/src/components/ui/alert.tsx -------------------------------------------------------------------------------- /samples/dotnet/A2A-CustomerService/frontend/src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/A2A-CustomerService/frontend/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /samples/dotnet/A2A-CustomerService/frontend/src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/A2A-CustomerService/frontend/src/components/ui/button.tsx -------------------------------------------------------------------------------- /samples/dotnet/A2A-CustomerService/frontend/src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/A2A-CustomerService/frontend/src/components/ui/card.tsx -------------------------------------------------------------------------------- /samples/dotnet/A2A-CustomerService/frontend/src/components/ui/collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/A2A-CustomerService/frontend/src/components/ui/collapsible.tsx -------------------------------------------------------------------------------- /samples/dotnet/A2A-CustomerService/frontend/src/components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/A2A-CustomerService/frontend/src/components/ui/form.tsx -------------------------------------------------------------------------------- /samples/dotnet/A2A-CustomerService/frontend/src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/A2A-CustomerService/frontend/src/components/ui/input.tsx -------------------------------------------------------------------------------- /samples/dotnet/A2A-CustomerService/frontend/src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/A2A-CustomerService/frontend/src/components/ui/label.tsx -------------------------------------------------------------------------------- /samples/dotnet/A2A-CustomerService/frontend/src/components/ui/progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/A2A-CustomerService/frontend/src/components/ui/progress.tsx -------------------------------------------------------------------------------- /samples/dotnet/A2A-CustomerService/frontend/src/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/A2A-CustomerService/frontend/src/components/ui/separator.tsx -------------------------------------------------------------------------------- /samples/dotnet/A2A-CustomerService/frontend/src/components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/A2A-CustomerService/frontend/src/components/ui/sonner.tsx -------------------------------------------------------------------------------- /samples/dotnet/A2A-CustomerService/frontend/src/components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/A2A-CustomerService/frontend/src/components/ui/switch.tsx -------------------------------------------------------------------------------- /samples/dotnet/A2A-CustomerService/frontend/src/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/A2A-CustomerService/frontend/src/components/ui/textarea.tsx -------------------------------------------------------------------------------- /samples/dotnet/A2A-CustomerService/frontend/src/components/ui/toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/A2A-CustomerService/frontend/src/components/ui/toggle.tsx -------------------------------------------------------------------------------- /samples/dotnet/A2A-CustomerService/frontend/src/hooks/useCustomerServiceAPI.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/dotnet/A2A-CustomerService/frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/A2A-CustomerService/frontend/src/index.css -------------------------------------------------------------------------------- /samples/dotnet/A2A-CustomerService/frontend/src/lib/spark-mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/A2A-CustomerService/frontend/src/lib/spark-mock.ts -------------------------------------------------------------------------------- /samples/dotnet/A2A-CustomerService/frontend/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/A2A-CustomerService/frontend/src/lib/utils.ts -------------------------------------------------------------------------------- /samples/dotnet/A2A-CustomerService/frontend/src/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/A2A-CustomerService/frontend/src/main.css -------------------------------------------------------------------------------- /samples/dotnet/A2A-CustomerService/frontend/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/A2A-CustomerService/frontend/src/main.tsx -------------------------------------------------------------------------------- /samples/dotnet/A2A-CustomerService/frontend/src/services/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/A2A-CustomerService/frontend/src/services/api.ts -------------------------------------------------------------------------------- /samples/dotnet/A2A-CustomerService/frontend/src/styles/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/A2A-CustomerService/frontend/src/styles/theme.css -------------------------------------------------------------------------------- /samples/dotnet/A2A-CustomerService/frontend/src/vite-end.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/A2A-CustomerService/frontend/src/vite-end.d.ts -------------------------------------------------------------------------------- /samples/dotnet/A2A-CustomerService/frontend/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/A2A-CustomerService/frontend/tailwind.config.js -------------------------------------------------------------------------------- /samples/dotnet/A2A-CustomerService/frontend/theme.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /samples/dotnet/A2A-CustomerService/frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/A2A-CustomerService/frontend/tsconfig.json -------------------------------------------------------------------------------- /samples/dotnet/A2A-CustomerService/frontend/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/A2A-CustomerService/frontend/vite.config.ts -------------------------------------------------------------------------------- /samples/dotnet/ConvertHeicMCP/ConvertHeicMCP.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/ConvertHeicMCP/ConvertHeicMCP.csproj -------------------------------------------------------------------------------- /samples/dotnet/ConvertHeicMCP/ConvertHeicMCP.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/ConvertHeicMCP/ConvertHeicMCP.sln -------------------------------------------------------------------------------- /samples/dotnet/ConvertHeicMCP/HeicConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/ConvertHeicMCP/HeicConverter.cs -------------------------------------------------------------------------------- /samples/dotnet/ConvertHeicMCP/HeicTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/ConvertHeicMCP/HeicTools.cs -------------------------------------------------------------------------------- /samples/dotnet/ConvertHeicMCP/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/ConvertHeicMCP/Program.cs -------------------------------------------------------------------------------- /samples/dotnet/CustomCopilot/CustomCopilot.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/CustomCopilot/CustomCopilot.csproj -------------------------------------------------------------------------------- /samples/dotnet/CustomCopilot/CustomCopilot.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/CustomCopilot/CustomCopilot.sln -------------------------------------------------------------------------------- /samples/dotnet/CustomCopilot/Plugins/FlightTracker/FlightTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/CustomCopilot/Plugins/FlightTracker/FlightTracker.cs -------------------------------------------------------------------------------- /samples/dotnet/CustomCopilot/Plugins/PlaceSuggestions/PlaceSuggestions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/CustomCopilot/Plugins/PlaceSuggestions/PlaceSuggestions.cs -------------------------------------------------------------------------------- /samples/dotnet/CustomCopilot/Plugins/Weather/Weather.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/CustomCopilot/Plugins/Weather/Weather.cs -------------------------------------------------------------------------------- /samples/dotnet/CustomCopilot/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/CustomCopilot/Program.cs -------------------------------------------------------------------------------- /samples/dotnet/local-rag-sk/Documents/HR Policy.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/local-rag-sk/Documents/HR Policy.docx -------------------------------------------------------------------------------- /samples/dotnet/local-rag-sk/Helpers/MemoryHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/local-rag-sk/Helpers/MemoryHelper.cs -------------------------------------------------------------------------------- /samples/dotnet/local-rag-sk/Helpers/OnnxRuntimeGenAITextCompletionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/local-rag-sk/Helpers/OnnxRuntimeGenAITextCompletionService.cs -------------------------------------------------------------------------------- /samples/dotnet/local-rag-sk/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/local-rag-sk/Program.cs -------------------------------------------------------------------------------- /samples/dotnet/local-rag-sk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/local-rag-sk/README.md -------------------------------------------------------------------------------- /samples/dotnet/local-rag-sk/local-rag-sk.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/local-rag-sk/local-rag-sk.csproj -------------------------------------------------------------------------------- /samples/dotnet/local-rag-sk/local-rag-sk.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/local-rag-sk/local-rag-sk.sln -------------------------------------------------------------------------------- /samples/dotnet/microsoft-agent-sk/Agents/TravelAgent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/microsoft-agent-sk/Agents/TravelAgent.cs -------------------------------------------------------------------------------- /samples/dotnet/microsoft-agent-sk/BotHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/microsoft-agent-sk/BotHandler.cs -------------------------------------------------------------------------------- /samples/dotnet/microsoft-agent-sk/Controllers/BotController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/microsoft-agent-sk/Controllers/BotController.cs -------------------------------------------------------------------------------- /samples/dotnet/microsoft-agent-sk/Helpers/FlightResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/microsoft-agent-sk/Helpers/FlightResponse.cs -------------------------------------------------------------------------------- /samples/dotnet/microsoft-agent-sk/Plugins/TimePlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/microsoft-agent-sk/Plugins/TimePlugin.cs -------------------------------------------------------------------------------- /samples/dotnet/microsoft-agent-sk/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/microsoft-agent-sk/Program.cs -------------------------------------------------------------------------------- /samples/dotnet/microsoft-agent-sk/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/microsoft-agent-sk/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/dotnet/microsoft-agent-sk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/microsoft-agent-sk/README.md -------------------------------------------------------------------------------- /samples/dotnet/microsoft-agent-sk/ServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/microsoft-agent-sk/ServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /samples/dotnet/microsoft-agent-sk/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/microsoft-agent-sk/appsettings.Development.json -------------------------------------------------------------------------------- /samples/dotnet/microsoft-agent-sk/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/microsoft-agent-sk/appsettings.json -------------------------------------------------------------------------------- /samples/dotnet/microsoft-agent-sk/microsoft-agent-sk.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/microsoft-agent-sk/microsoft-agent-sk.csproj -------------------------------------------------------------------------------- /samples/dotnet/microsoft-agent-sk/microsoft-agent-sk.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/microsoft-agent-sk/microsoft-agent-sk.csproj.user -------------------------------------------------------------------------------- /samples/dotnet/microsoft-agent-sk/microsoft-agent-sk.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/microsoft-agent-sk/microsoft-agent-sk.sln -------------------------------------------------------------------------------- /samples/dotnet/openai-multimodal-chat/AOI-Demo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/openai-multimodal-chat/AOI-Demo.sln -------------------------------------------------------------------------------- /samples/dotnet/openai-multimodal-chat/ServiceHelper/AOIHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/openai-multimodal-chat/ServiceHelper/AOIHelper.cs -------------------------------------------------------------------------------- /samples/dotnet/openai-multimodal-chat/ServiceHelper/ServiceHelper.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/openai-multimodal-chat/ServiceHelper/ServiceHelper.csproj -------------------------------------------------------------------------------- /samples/dotnet/openai-multimodal-chat/SpeechChat/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/openai-multimodal-chat/SpeechChat/Program.cs -------------------------------------------------------------------------------- /samples/dotnet/openai-multimodal-chat/SpeechChat/SpeechChat.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/openai-multimodal-chat/SpeechChat/SpeechChat.csproj -------------------------------------------------------------------------------- /samples/dotnet/openai-multimodal-chat/TextChat/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/openai-multimodal-chat/TextChat/Program.cs -------------------------------------------------------------------------------- /samples/dotnet/openai-multimodal-chat/TextChat/TextChat.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/openai-multimodal-chat/TextChat/TextChat.csproj -------------------------------------------------------------------------------- /samples/dotnet/spend-dashboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/spend-dashboard/README.md -------------------------------------------------------------------------------- /samples/dotnet/spend-dashboard/backend/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/spend-dashboard/backend/Program.cs -------------------------------------------------------------------------------- /samples/dotnet/spend-dashboard/backend/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/spend-dashboard/backend/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/dotnet/spend-dashboard/backend/SpendDashboard.Api.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/spend-dashboard/backend/SpendDashboard.Api.csproj -------------------------------------------------------------------------------- /samples/dotnet/spend-dashboard/frontend/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/spend-dashboard/frontend/.env -------------------------------------------------------------------------------- /samples/dotnet/spend-dashboard/frontend/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/spend-dashboard/frontend/.env.example -------------------------------------------------------------------------------- /samples/dotnet/spend-dashboard/frontend/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/spend-dashboard/frontend/LICENSE -------------------------------------------------------------------------------- /samples/dotnet/spend-dashboard/frontend/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/spend-dashboard/frontend/components.json -------------------------------------------------------------------------------- /samples/dotnet/spend-dashboard/frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/spend-dashboard/frontend/index.html -------------------------------------------------------------------------------- /samples/dotnet/spend-dashboard/frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/spend-dashboard/frontend/package-lock.json -------------------------------------------------------------------------------- /samples/dotnet/spend-dashboard/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/spend-dashboard/frontend/package.json -------------------------------------------------------------------------------- /samples/dotnet/spend-dashboard/frontend/public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/spend-dashboard/frontend/public/favicon.svg -------------------------------------------------------------------------------- /samples/dotnet/spend-dashboard/frontend/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/spend-dashboard/frontend/src/App.tsx -------------------------------------------------------------------------------- /samples/dotnet/spend-dashboard/frontend/src/ErrorFallback.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/spend-dashboard/frontend/src/ErrorFallback.tsx -------------------------------------------------------------------------------- /samples/dotnet/spend-dashboard/frontend/src/components/AppShell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/spend-dashboard/frontend/src/components/AppShell.tsx -------------------------------------------------------------------------------- /samples/dotnet/spend-dashboard/frontend/src/components/ApprovalModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/spend-dashboard/frontend/src/components/ApprovalModal.tsx -------------------------------------------------------------------------------- /samples/dotnet/spend-dashboard/frontend/src/components/InvoicesTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/spend-dashboard/frontend/src/components/InvoicesTable.tsx -------------------------------------------------------------------------------- /samples/dotnet/spend-dashboard/frontend/src/components/StatusBadge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/spend-dashboard/frontend/src/components/StatusBadge.tsx -------------------------------------------------------------------------------- /samples/dotnet/spend-dashboard/frontend/src/components/StatusPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/spend-dashboard/frontend/src/components/StatusPanel.tsx -------------------------------------------------------------------------------- /samples/dotnet/spend-dashboard/frontend/src/components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/spend-dashboard/frontend/src/components/ui/accordion.tsx -------------------------------------------------------------------------------- /samples/dotnet/spend-dashboard/frontend/src/components/ui/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/spend-dashboard/frontend/src/components/ui/alert-dialog.tsx -------------------------------------------------------------------------------- /samples/dotnet/spend-dashboard/frontend/src/components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/spend-dashboard/frontend/src/components/ui/alert.tsx -------------------------------------------------------------------------------- /samples/dotnet/spend-dashboard/frontend/src/components/ui/aspect-ratio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/spend-dashboard/frontend/src/components/ui/aspect-ratio.tsx -------------------------------------------------------------------------------- /samples/dotnet/spend-dashboard/frontend/src/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/spend-dashboard/frontend/src/components/ui/avatar.tsx -------------------------------------------------------------------------------- /samples/dotnet/spend-dashboard/frontend/src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/spend-dashboard/frontend/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /samples/dotnet/spend-dashboard/frontend/src/components/ui/breadcrumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/spend-dashboard/frontend/src/components/ui/breadcrumb.tsx -------------------------------------------------------------------------------- /samples/dotnet/spend-dashboard/frontend/src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/spend-dashboard/frontend/src/components/ui/button.tsx -------------------------------------------------------------------------------- /samples/dotnet/spend-dashboard/frontend/src/components/ui/calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/spend-dashboard/frontend/src/components/ui/calendar.tsx -------------------------------------------------------------------------------- /samples/dotnet/spend-dashboard/frontend/src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/spend-dashboard/frontend/src/components/ui/card.tsx -------------------------------------------------------------------------------- /samples/dotnet/spend-dashboard/frontend/src/components/ui/carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/spend-dashboard/frontend/src/components/ui/carousel.tsx -------------------------------------------------------------------------------- /samples/dotnet/spend-dashboard/frontend/src/components/ui/chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/spend-dashboard/frontend/src/components/ui/chart.tsx -------------------------------------------------------------------------------- /samples/dotnet/spend-dashboard/frontend/src/components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/spend-dashboard/frontend/src/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /samples/dotnet/spend-dashboard/frontend/src/components/ui/collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/spend-dashboard/frontend/src/components/ui/collapsible.tsx -------------------------------------------------------------------------------- /samples/dotnet/spend-dashboard/frontend/src/components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/spend-dashboard/frontend/src/components/ui/command.tsx -------------------------------------------------------------------------------- /samples/dotnet/spend-dashboard/frontend/src/components/ui/context-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/spend-dashboard/frontend/src/components/ui/context-menu.tsx -------------------------------------------------------------------------------- /samples/dotnet/spend-dashboard/frontend/src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/spend-dashboard/frontend/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /samples/dotnet/spend-dashboard/frontend/src/components/ui/drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/spend-dashboard/frontend/src/components/ui/drawer.tsx -------------------------------------------------------------------------------- /samples/dotnet/spend-dashboard/frontend/src/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/spend-dashboard/frontend/src/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /samples/dotnet/spend-dashboard/frontend/src/components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/spend-dashboard/frontend/src/components/ui/form.tsx -------------------------------------------------------------------------------- /samples/dotnet/spend-dashboard/frontend/src/components/ui/hover-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/spend-dashboard/frontend/src/components/ui/hover-card.tsx -------------------------------------------------------------------------------- /samples/dotnet/spend-dashboard/frontend/src/components/ui/input-otp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/spend-dashboard/frontend/src/components/ui/input-otp.tsx -------------------------------------------------------------------------------- /samples/dotnet/spend-dashboard/frontend/src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/spend-dashboard/frontend/src/components/ui/input.tsx -------------------------------------------------------------------------------- /samples/dotnet/spend-dashboard/frontend/src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/spend-dashboard/frontend/src/components/ui/label.tsx -------------------------------------------------------------------------------- /samples/dotnet/spend-dashboard/frontend/src/components/ui/menubar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/spend-dashboard/frontend/src/components/ui/menubar.tsx -------------------------------------------------------------------------------- /samples/dotnet/spend-dashboard/frontend/src/components/ui/navigation-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/spend-dashboard/frontend/src/components/ui/navigation-menu.tsx -------------------------------------------------------------------------------- /samples/dotnet/spend-dashboard/frontend/src/components/ui/pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/spend-dashboard/frontend/src/components/ui/pagination.tsx -------------------------------------------------------------------------------- /samples/dotnet/spend-dashboard/frontend/src/components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/spend-dashboard/frontend/src/components/ui/popover.tsx -------------------------------------------------------------------------------- /samples/dotnet/spend-dashboard/frontend/src/components/ui/progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/spend-dashboard/frontend/src/components/ui/progress.tsx -------------------------------------------------------------------------------- /samples/dotnet/spend-dashboard/frontend/src/components/ui/radio-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/spend-dashboard/frontend/src/components/ui/radio-group.tsx -------------------------------------------------------------------------------- /samples/dotnet/spend-dashboard/frontend/src/components/ui/resizable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/spend-dashboard/frontend/src/components/ui/resizable.tsx -------------------------------------------------------------------------------- /samples/dotnet/spend-dashboard/frontend/src/components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/spend-dashboard/frontend/src/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /samples/dotnet/spend-dashboard/frontend/src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/spend-dashboard/frontend/src/components/ui/select.tsx -------------------------------------------------------------------------------- /samples/dotnet/spend-dashboard/frontend/src/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/spend-dashboard/frontend/src/components/ui/separator.tsx -------------------------------------------------------------------------------- /samples/dotnet/spend-dashboard/frontend/src/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/spend-dashboard/frontend/src/components/ui/sheet.tsx -------------------------------------------------------------------------------- /samples/dotnet/spend-dashboard/frontend/src/components/ui/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/spend-dashboard/frontend/src/components/ui/sidebar.tsx -------------------------------------------------------------------------------- /samples/dotnet/spend-dashboard/frontend/src/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/spend-dashboard/frontend/src/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /samples/dotnet/spend-dashboard/frontend/src/components/ui/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/spend-dashboard/frontend/src/components/ui/slider.tsx -------------------------------------------------------------------------------- /samples/dotnet/spend-dashboard/frontend/src/components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/spend-dashboard/frontend/src/components/ui/sonner.tsx -------------------------------------------------------------------------------- /samples/dotnet/spend-dashboard/frontend/src/components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/spend-dashboard/frontend/src/components/ui/switch.tsx -------------------------------------------------------------------------------- /samples/dotnet/spend-dashboard/frontend/src/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/spend-dashboard/frontend/src/components/ui/table.tsx -------------------------------------------------------------------------------- /samples/dotnet/spend-dashboard/frontend/src/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/spend-dashboard/frontend/src/components/ui/tabs.tsx -------------------------------------------------------------------------------- /samples/dotnet/spend-dashboard/frontend/src/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/spend-dashboard/frontend/src/components/ui/textarea.tsx -------------------------------------------------------------------------------- /samples/dotnet/spend-dashboard/frontend/src/components/ui/toggle-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/spend-dashboard/frontend/src/components/ui/toggle-group.tsx -------------------------------------------------------------------------------- /samples/dotnet/spend-dashboard/frontend/src/components/ui/toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/spend-dashboard/frontend/src/components/ui/toggle.tsx -------------------------------------------------------------------------------- /samples/dotnet/spend-dashboard/frontend/src/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/spend-dashboard/frontend/src/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /samples/dotnet/spend-dashboard/frontend/src/hooks/use-mobile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/spend-dashboard/frontend/src/hooks/use-mobile.ts -------------------------------------------------------------------------------- /samples/dotnet/spend-dashboard/frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/spend-dashboard/frontend/src/index.css -------------------------------------------------------------------------------- /samples/dotnet/spend-dashboard/frontend/src/lib/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/spend-dashboard/frontend/src/lib/api.ts -------------------------------------------------------------------------------- /samples/dotnet/spend-dashboard/frontend/src/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/spend-dashboard/frontend/src/lib/types.ts -------------------------------------------------------------------------------- /samples/dotnet/spend-dashboard/frontend/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/spend-dashboard/frontend/src/lib/utils.ts -------------------------------------------------------------------------------- /samples/dotnet/spend-dashboard/frontend/src/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/spend-dashboard/frontend/src/main.css -------------------------------------------------------------------------------- /samples/dotnet/spend-dashboard/frontend/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/spend-dashboard/frontend/src/main.tsx -------------------------------------------------------------------------------- /samples/dotnet/spend-dashboard/frontend/src/styles/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/spend-dashboard/frontend/src/styles/theme.css -------------------------------------------------------------------------------- /samples/dotnet/spend-dashboard/frontend/src/vite-end.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/spend-dashboard/frontend/src/vite-end.d.ts -------------------------------------------------------------------------------- /samples/dotnet/spend-dashboard/frontend/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/spend-dashboard/frontend/tailwind.config.js -------------------------------------------------------------------------------- /samples/dotnet/spend-dashboard/frontend/theme.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /samples/dotnet/spend-dashboard/frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/spend-dashboard/frontend/tsconfig.json -------------------------------------------------------------------------------- /samples/dotnet/spend-dashboard/frontend/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/spend-dashboard/frontend/vite.config.ts -------------------------------------------------------------------------------- /samples/dotnet/techmart-portal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/techmart-portal/README.md -------------------------------------------------------------------------------- /samples/dotnet/techmart-portal/backend/Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/techmart-portal/backend/Directory.Packages.props -------------------------------------------------------------------------------- /samples/dotnet/techmart-portal/backend/TechMart.AgentHost/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/techmart-portal/backend/TechMart.AgentHost/Program.cs -------------------------------------------------------------------------------- /samples/dotnet/techmart-portal/backend/TechMart.AgentHost/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/techmart-portal/backend/TechMart.AgentHost/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/dotnet/techmart-portal/backend/TechMart.AgentHost/TechMart.AgentHost.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/techmart-portal/backend/TechMart.AgentHost/TechMart.AgentHost.csproj -------------------------------------------------------------------------------- /samples/dotnet/techmart-portal/backend/TechMart.AppHost/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/techmart-portal/backend/TechMart.AppHost/Program.cs -------------------------------------------------------------------------------- /samples/dotnet/techmart-portal/backend/TechMart.AppHost/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/techmart-portal/backend/TechMart.AppHost/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/dotnet/techmart-portal/backend/TechMart.AppHost/TechMart.AppHost.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/techmart-portal/backend/TechMart.AppHost/TechMart.AppHost.csproj -------------------------------------------------------------------------------- /samples/dotnet/techmart-portal/backend/TechMart.FinanceAgent/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/techmart-portal/backend/TechMart.FinanceAgent/Program.cs -------------------------------------------------------------------------------- /samples/dotnet/techmart-portal/backend/TechMart.FinanceAgent/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/techmart-portal/backend/TechMart.FinanceAgent/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/dotnet/techmart-portal/backend/TechMart.FinanceAgent/TechMart.FinanceAgent.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/techmart-portal/backend/TechMart.FinanceAgent/TechMart.FinanceAgent.csproj -------------------------------------------------------------------------------- /samples/dotnet/techmart-portal/backend/TechMart.InventoryAgent/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/techmart-portal/backend/TechMart.InventoryAgent/Program.cs -------------------------------------------------------------------------------- /samples/dotnet/techmart-portal/backend/TechMart.InventoryAgent/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/techmart-portal/backend/TechMart.InventoryAgent/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/dotnet/techmart-portal/backend/TechMart.InventoryAgent/TechMart.InventoryAgent.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/techmart-portal/backend/TechMart.InventoryAgent/TechMart.InventoryAgent.csproj -------------------------------------------------------------------------------- /samples/dotnet/techmart-portal/backend/TechMart.ServiceDefaults/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/techmart-portal/backend/TechMart.ServiceDefaults/Extensions.cs -------------------------------------------------------------------------------- /samples/dotnet/techmart-portal/backend/TechMart.ServiceDefaults/TechMart.ServiceDefaults.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/techmart-portal/backend/TechMart.ServiceDefaults/TechMart.ServiceDefaults.csproj -------------------------------------------------------------------------------- /samples/dotnet/techmart-portal/backend/TechMart.SupportAgent/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/techmart-portal/backend/TechMart.SupportAgent/Program.cs -------------------------------------------------------------------------------- /samples/dotnet/techmart-portal/backend/TechMart.SupportAgent/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/techmart-portal/backend/TechMart.SupportAgent/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/dotnet/techmart-portal/backend/TechMart.SupportAgent/TechMart.SupportAgent.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/techmart-portal/backend/TechMart.SupportAgent/TechMart.SupportAgent.csproj -------------------------------------------------------------------------------- /samples/dotnet/techmart-portal/backend/TechMart.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/techmart-portal/backend/TechMart.sln -------------------------------------------------------------------------------- /samples/dotnet/techmart-portal/backend/nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/techmart-portal/backend/nuget.config -------------------------------------------------------------------------------- /samples/dotnet/techmart-portal/frontend/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/techmart-portal/frontend/.eslintrc.json -------------------------------------------------------------------------------- /samples/dotnet/techmart-portal/frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/techmart-portal/frontend/.gitignore -------------------------------------------------------------------------------- /samples/dotnet/techmart-portal/frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/techmart-portal/frontend/README.md -------------------------------------------------------------------------------- /samples/dotnet/techmart-portal/frontend/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/techmart-portal/frontend/next.config.mjs -------------------------------------------------------------------------------- /samples/dotnet/techmart-portal/frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/techmart-portal/frontend/package-lock.json -------------------------------------------------------------------------------- /samples/dotnet/techmart-portal/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/techmart-portal/frontend/package.json -------------------------------------------------------------------------------- /samples/dotnet/techmart-portal/frontend/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/techmart-portal/frontend/postcss.config.mjs -------------------------------------------------------------------------------- /samples/dotnet/techmart-portal/frontend/src/app/api/copilotkit/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/techmart-portal/frontend/src/app/api/copilotkit/route.ts -------------------------------------------------------------------------------- /samples/dotnet/techmart-portal/frontend/src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/techmart-portal/frontend/src/app/favicon.ico -------------------------------------------------------------------------------- /samples/dotnet/techmart-portal/frontend/src/app/fonts/GeistMonoVF.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/techmart-portal/frontend/src/app/fonts/GeistMonoVF.woff -------------------------------------------------------------------------------- /samples/dotnet/techmart-portal/frontend/src/app/fonts/GeistVF.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/techmart-portal/frontend/src/app/fonts/GeistVF.woff -------------------------------------------------------------------------------- /samples/dotnet/techmart-portal/frontend/src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/techmart-portal/frontend/src/app/globals.css -------------------------------------------------------------------------------- /samples/dotnet/techmart-portal/frontend/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/techmart-portal/frontend/src/app/layout.tsx -------------------------------------------------------------------------------- /samples/dotnet/techmart-portal/frontend/src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/techmart-portal/frontend/src/app/page.tsx -------------------------------------------------------------------------------- /samples/dotnet/techmart-portal/frontend/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/techmart-portal/frontend/tailwind.config.ts -------------------------------------------------------------------------------- /samples/dotnet/techmart-portal/frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arafattehsin/generative-ai/HEAD/samples/dotnet/techmart-portal/frontend/tsconfig.json --------------------------------------------------------------------------------