-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
elevenlabs analyzer #3850
Open
kashifkhan0771
wants to merge
37
commits into
trufflesecurity:main
Choose a base branch
from
kashifkhan0771:feat/oss-97-elevenlabs-analyzer
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
elevenlabs analyzer #3850
Changes from 34 commits
Commits
Show all changes
37 commits
Select commit
Hold shift + click to select a range
81005b9
added analyzer initial working structure
kashifkhan0771 794d176
restructured the resources
kashifkhan0771 f6c146c
added history read api
kashifkhan0771 75071f4
added history delete api
kashifkhan0771 f61faf2
fixed http method issue
kashifkhan0771 759d9c7
added delete dubbing api and refactored the code
kashifkhan0771 de93b9b
added dubbing read api
kashifkhan0771 1704ba2
Merge branch 'main' into feat/oss-97-elevenlabs-analyzer
kashifkhan0771 3cb54ca
optimized requests and added projects api
kashifkhan0771 6e2bfaf
added pronunciation dictionaries apis
kashifkhan0771 0c79411
fixed linter
kashifkhan0771 96dc34b
added models,audionative,workspace apis
kashifkhan0771 cb957aa
added some last apis
kashifkhan0771 58f1736
Deleted \
kashifkhan0771 5fd9705
fixed linter
kashifkhan0771 f05f2fa
Merge branch 'main' into feat/oss-97-elevenlabs-analyzer
kashifkhan0771 b36caf3
few more enhancements and test cases added
kashifkhan0771 1937f36
added go generate command
kashifkhan0771 3da2a78
optimized the code and resolved the comments
kashifkhan0771 4975781
Merge branch 'main' into feat/oss-97-elevenlabs-analyzer
kashifkhan0771 3fa4402
fixed linter
kashifkhan0771 6fa3a2e
Merge branch 'main' into feat/oss-97-elevenlabs-analyzer
kashifkhan0771 8e3716d
Merge branch 'main' into feat/oss-97-elevenlabs-analyzer
kashifkhan0771 8280b40
Merge branch 'main' into feat/oss-97-elevenlabs-analyzer
kashifkhan0771 dda4747
Merge branch 'main' into feat/oss-97-elevenlabs-analyzer
kashifkhan0771 a2cf1f4
Merge branch 'main' into feat/oss-97-elevenlabs-analyzer
kashifkhan0771 16b8bc1
Merge branch 'main' into feat/oss-97-elevenlabs-analyzer
kashifkhan0771 aeac476
Merge branch 'main' into feat/oss-97-elevenlabs-analyzer
kashifkhan0771 39f50e0
Merge branch 'main' into feat/oss-97-elevenlabs-analyzer
kashifkhan0771 2241037
Merge branch 'main' into feat/oss-97-elevenlabs-analyzer
kashifkhan0771 9b88fb1
Merge branch 'main' into feat/oss-97-elevenlabs-analyzer
kashifkhan0771 a4d9a77
Merge branch 'main' into feat/oss-97-elevenlabs-analyzer
kashifkhan0771 7fac258
Merge branch 'main' into feat/oss-97-elevenlabs-analyzer
kashifkhan0771 31504c1
Merge branch 'main' into feat/oss-97-elevenlabs-analyzer
kashifkhan0771 0f47864
Merge branch 'main' into feat/oss-97-elevenlabs-analyzer
kashifkhan0771 fe99586
fixed indentation
kashifkhan0771 703cd0b
Merge branch 'main' into feat/oss-97-elevenlabs-analyzer
kashifkhan0771 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -65,6 +65,7 @@ const ( | |
AnalyzerTypeAsana | ||
AnalyzerTypeBitbucket | ||
AnalyzerTypeDockerHub | ||
AnalyzerTypeElevenLabs | ||
AnalyzerTypeGitHub | ||
AnalyzerTypeGitLab | ||
AnalyzerTypeHuggingFace | ||
|
@@ -95,6 +96,7 @@ var analyzerTypeStrings = map[AnalyzerType]string{ | |
AnalyzerTypeAsana: "Asana", | ||
AnalyzerTypeBitbucket: "Bitbucket", | ||
AnalyzerTypeDockerHub: "DockerHub", | ||
AnalyzerTypeElevenLabs: "ElevenLabs", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. nit: indentation |
||
AnalyzerTypeGitHub: "GitHub", | ||
AnalyzerTypeGitLab: "GitLab", | ||
AnalyzerTypeHuggingFace: "HuggingFace", | ||
|
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: indentation