-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathProgram.cs
53 lines (38 loc) · 1.11 KB
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
using MyOpenAIProject.Examples;
using MyOpenAIProject.Examples._05;
using OpenAI.Examples;
#region SimpleChatExample
//SimpleChatExample.Run();
//await SimpleChatExample.RunAsync();
#endregion
#region StreamingChatExample
//StreamingChatExample.Run();
//await StreamingChatExample.RunAsync();
#endregion
#region ToolsAndFunctionsExample
//ToolsAndFunctionsExample.Run();
#endregion
#region StructuredOutputs
//await StructuredOutputs.RunAsync();
#endregion
#region EmbeddingsExample
//EmbeddingsExample.SimpleEmbedding();
//await EmbeddingsExample.SimpleEmbeddingAsync();
//EmbeddingsExample.MultipleEmbeddings();
//await EmbeddingsExample.MultipleEmbeddingsAsync();
//await EmbeddingsExample.MultipleEmbeddingsAsync();
#endregion
#region ImageGenerateExample
//ImageGenerateExample.Run();
#endregion
#region AudioExample
//AudioExample.SimpleTextToSpeech();
//AudioExample.SimpleSpeechToText();
//AudioExample.Example02_SimpleTextToSpeech();
#endregion
#region RAGExample
//RAGExample.CreateAndRunEuro2024Assistant();
#endregion
#region GPT4VisionExample
////GPT4VisionExample.RunAssistantWithVision();
#endregion