-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7a93590
commit 3407e59
Showing
6 changed files
with
53 additions
and
18 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
**Useful Links** | ||
- https://platform.openai.com/docs/overview | ||
- Generate API Key: https://platform.openai.com/api-keys | ||
- Select Available Models for API: https://platform.openai.com/settings/proj_ABtkl6IvMcTADnrDL1jhRkjQ/limits | ||
- API Credits: https://platform.openai.com/settings/organization/billing/overview | ||
|
||
**Library** | ||
- https://www.nuget.org/packages/OpenAI | ||
- https://github.com/openai/openai-dotnet | ||
|
||
**Snippet** | ||
|
||
```csharp | ||
var prompt = @"some prompt"; | ||
ChatClient client = new(model: "gpt-4o", "open-api-key"); | ||
ChatCompletion completion = client.CompleteChat(prompt); | ||
Console.WriteLine($"{completion.Content[0].Text}"); | ||
``` |
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
1 change: 1 addition & 0 deletions
1
...Management/Microsoft.FeatureManagement.md → ...ing Management/Feature Flag Management.md
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
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
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