-
Notifications
You must be signed in to change notification settings - Fork 28
/
main.go
63 lines (51 loc) · 1.42 KB
/
main.go
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
52
53
54
55
56
57
58
59
60
61
62
63
// Copyright 2023-2024 Deepgram 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
package main
import (
"context"
"encoding/json"
"fmt"
"os"
prettyjson "github.com/hokaccha/go-prettyjson"
analyze "github.com/deepgram/deepgram-go-sdk/pkg/api/analyze/v1"
client "github.com/deepgram/deepgram-go-sdk/pkg/client/analyze"
interfaces "github.com/deepgram/deepgram-go-sdk/pkg/client/interfaces"
)
const (
filePath string = "./conversation.txt"
)
func main() {
// init library
client.Init(client.InitLib{
LogLevel: client.LogLevelStandard, // LogLevelStandard / LogLevelFull / LogLevelTrace
})
// Go context
ctx := context.Background()
// set the anaylze options
rOptions := &interfaces.AnalyzeOptions{
Language: "en",
Sentiment: true,
}
// create a Deepgram client
c := client.NewWithDefaults()
dg := analyze.New(c)
// send/process file to Deepgram
res, err := dg.FromFile(ctx, filePath, rOptions)
if err != nil {
fmt.Printf("FromFile failed. Err: %v\n", err)
os.Exit(1)
}
data, err := json.Marshal(res)
if err != nil {
fmt.Printf("json.Marshal failed. Err: %v\n", err)
os.Exit(1)
}
// make the JSON pretty
prettyJSON, err := prettyjson.Format(data)
if err != nil {
fmt.Printf("prettyjson.Marshal failed. Err: %v\n", err)
os.Exit(1)
}
fmt.Printf("\n\nResult:\n%s\n\n", prettyJSON)
}