-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathProgram.cs
46 lines (39 loc) · 1.46 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
// Copyright 2024 Deepgram .NET SDK contributors. All Rights Reserved.
// Use of this source code is governed by a MIT license that can be found in the LICENSE file.
// SPDX-License-Identifier: MIT
using Deepgram.Logger;
using Deepgram.Models.Analyze.v1;
namespace PreRecorded
{
class Program
{
static async Task Main(string[] args)
{
// Initialize Library with default logging
// Normal logging is "Info" level
Library.Initialize();
// OR very chatty logging
//Library.Initialize(LogLevel.Verbose); // LogLevel.Default, LogLevel.Debug, LogLevel.Verbose
// use the client factory with a API Key set with the "DEEPGRAM_API_KEY" environment variable
var deepgramClient = new AnalyzeClient();
// check to see if the file exists
if (!File.Exists(@"conversation.txt"))
{
Console.WriteLine("Error: File 'conversation.txt' not found.");
return;
}
var audioData = File.ReadAllBytes(@"conversation.txt");
var response = await deepgramClient.AnalyzeFile(
audioData,
new AnalyzeSchema()
{
Language = "en",
Topics = true,
});
Console.WriteLine(response);
Console.ReadKey();
// Teardown Library
Library.Terminate();
}
}
}