Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Microsoft.Extensions.AI; | |
using Azure.AI.Inference; | |
using Azure; | |
using ChatRole = Microsoft.Extensions.AI.ChatRole; | |
using Microsoft.Data.Analysis; | |
IChatClient client = | |
new ChatCompletionsClient( | |
endpoint: new Uri("https://models.inference.ai.azure.com"), | |
new AzureKeyCredential(Environment.GetEnvironmentVariable("GH_TOKEN"))) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Microsoft.Extensions.AI; | |
using Azure.AI.Inference; | |
using Azure; | |
using ChatRole = Microsoft.Extensions.AI.ChatRole; | |
IChatClient client = | |
new ChatCompletionsClient( | |
endpoint: new Uri("https://models.inference.ai.azure.com"), | |
new AzureKeyCredential(Environment.GetEnvironmentVariable("GH_TOKEN"))) | |
.AsChatClient("gpt-4o-mini"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#pragma warning disable | |
using System.Net.Http.Json; | |
using System.Text.Json; | |
using System.Numerics.Tensors; | |
using Microsoft.Extensions.DependencyInjection; | |
using Microsoft.SemanticKernel; | |
using Microsoft.SemanticKernel.Connectors.Ollama; | |
using Microsoft.SemanticKernel.Connectors.OpenAI; | |
using Microsoft.SemanticKernel.Embeddings; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
NewerOlder