Skip to content

Commit f7ff998

Browse files
elevenlabs analyzer (#3850)
* added analyzer initial working structure * restructured the resources * added history read api * added history delete api * fixed http method issue * added delete dubbing api and refactored the code * added dubbing read api * optimized requests and added projects api * added pronunciation dictionaries apis * fixed linter * added models,audionative,workspace apis * added some last apis * Deleted \ * fixed linter * few more enhancements and test cases added * added go generate command * optimized the code and resolved the comments * fixed linter * fixed indentation * resolved comments * kicked imposter print statement * formatted cli.go * Update pkg/analyzer/analyzers/elevenlabs/elevenlabs.go Co-authored-by: Eng Zer Jun <[email protected]> * resolved comments * added secret info methods which safely append and read permission and resources --------- Co-authored-by: Eng Zer Jun <[email protected]>
1 parent 03e8af1 commit f7ff998

File tree

11 files changed

+1986
-3
lines changed

11 files changed

+1986
-3
lines changed

pkg/analyzer/analyzers/analyzers.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ const (
6565
AnalyzerTypeAsana
6666
AnalyzerTypeBitbucket
6767
AnalyzerTypeDockerHub
68+
AnalyzerTypeElevenLabs
6869
AnalyzerTypeGitHub
6970
AnalyzerTypeGitLab
7071
AnalyzerTypeHuggingFace
@@ -97,7 +98,9 @@ var analyzerTypeStrings = map[AnalyzerType]string{
9798
AnalyzerAnthropic: "Anthropic",
9899
AnalyzerTypeAsana: "Asana",
99100
AnalyzerTypeBitbucket: "Bitbucket",
101+
AnalyzerTypeDigitalOcean: "DigitalOcean",
100102
AnalyzerTypeDockerHub: "DockerHub",
103+
AnalyzerTypeElevenLabs: "ElevenLabs",
101104
AnalyzerTypeGitHub: "GitHub",
102105
AnalyzerTypeGitLab: "GitLab",
103106
AnalyzerTypeHuggingFace: "HuggingFace",
@@ -117,7 +120,6 @@ var analyzerTypeStrings = map[AnalyzerType]string{
117120
AnalyzerTypeTwilio: "Twilio",
118121
AnalyzerTypePrivateKey: "PrivateKey",
119122
AnalyzerTypeNotion: "Notion",
120-
AnalyzerTypeDigitalOcean: "DigitalOcean",
121123
// Add new mappings here
122124
}
123125

0 commit comments

Comments
 (0)