-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from MGalaCyber/master
fixed tiktok not found | v2.1.9
- Loading branch information
Showing
15 changed files
with
61 additions
and
61 deletions.
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
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
module.exports = function(Api) { | ||
return { | ||
Model1: async (promt) => (await Api()).Get("v1/ai/blackbox/model1", { promt }), | ||
Model2v4: async (promt) => (await Api()).Get("v1/ai/blackbox/model2-v4", { promt }), | ||
Model1: async (prompt) => (await Api()).Get("v1/ai/blackbox/model1", { prompt }), | ||
Model2v4: async (prompt) => (await Api()).Get("v1/ai/blackbox/model2-v4", { prompt }), | ||
} | ||
}; |
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 |
---|---|---|
@@ -1,17 +1,17 @@ | ||
module.exports = function(Api) { | ||
return { | ||
Model1: async (promt) => (await Api()).Get("v1/ai/chatgpt/model1", { promt }), | ||
Model2: async (promt) => (await Api()).Get("v1/ai/chatgpt/model2", { promt }), | ||
Model3: async (promt) => (await Api()).Get("v1/ai/chatgpt/model3", { promt }), | ||
Model4: async (promt) => (await Api()).Get("v1/ai/chatgpt/model4", { promt }), | ||
Model5: async (promt) => (await Api()).Get("v1/ai/chatgpt/model5", { promt }), | ||
Model6: async (promt) => (await Api()).Get("v1/ai/chatgpt/model6", { promt }), | ||
Model7Go: async (promt) => (await Api()).Get("v1/ai/chatgpt/model7-go", { promt }), | ||
Model8Promt: async (promt, text) => (await Api()).Get("v1/ai/chatgpt/model8-promt", { promt, text }), | ||
Model9v4: async (promt) => (await Api()).Get("v1/ai/chatgpt/model9-v4", { promt }), | ||
Model10v4: async (promt) => (await Api()).Get("v1/ai/chatgpt/model10-v4", { promt }), | ||
Model11Dalle: async (promt) => (await Api()).Get("v1/ai/chatgpt/model11-dalle", { promt }), | ||
Model12Turbo: async (promt) => (await Api()).Get("v1/ai/chatgpt/model12-turbo", { promt }), | ||
Model13Turbo: async (promt) => (await Api()).Get("v1/ai/chatgpt/model13-turbo", { promt }), | ||
Model1: async (prompt) => (await Api()).Get("v1/ai/chatgpt/model1", { prompt }), | ||
Model2: async (prompt) => (await Api()).Get("v1/ai/chatgpt/model2", { prompt }), | ||
Model3: async (prompt) => (await Api()).Get("v1/ai/chatgpt/model3", { prompt }), | ||
Model4: async (prompt) => (await Api()).Get("v1/ai/chatgpt/model4", { prompt }), | ||
Model5: async (prompt) => (await Api()).Get("v1/ai/chatgpt/model5", { prompt }), | ||
Model6: async (prompt) => (await Api()).Get("v1/ai/chatgpt/model6", { prompt }), | ||
Model7Go: async (prompt) => (await Api()).Get("v1/ai/chatgpt/model7-go", { prompt }), | ||
Model8Prompt: async (prompt, text) => (await Api()).Get("v1/ai/chatgpt/model8-prompt", { prompt, text }), | ||
Model9v4: async (prompt) => (await Api()).Get("v1/ai/chatgpt/model9-v4", { prompt }), | ||
Model10v4: async (prompt) => (await Api()).Get("v1/ai/chatgpt/model10-v4", { prompt }), | ||
Model11Dalle: async (prompt) => (await Api()).Get("v1/ai/chatgpt/model11-dalle", { prompt }), | ||
Model12Turbo: async (prompt) => (await Api()).Get("v1/ai/chatgpt/model12-turbo", { prompt }), | ||
Model13Turbo: async (prompt) => (await Api()).Get("v1/ai/chatgpt/model13-turbo", { prompt }), | ||
} | ||
}; |
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 |
---|---|---|
@@ -1,13 +1,13 @@ | ||
module.exports = function(Api) { | ||
return { | ||
Gemini: { | ||
Pro: async (promt) => (await Api()).Get("v1/ai/google/gemini/pro", { promt }), | ||
ProVisionModelAttach: async (image, promt) => (await Api()).Post("v1/ai/google/gemini/pro-vision-attach", { image, promt }), | ||
ProVisionModelUrl: async (image, promt) => (await Api()).Get("v1/ai/google/gemini/pro-vision-url", { image, promt }) | ||
Pro: async (prompt) => (await Api()).Get("v1/ai/google/gemini/pro", { prompt }), | ||
ProVisionModelAttach: async (image, prompt) => (await Api()).Post("v1/ai/google/gemini/pro-vision-attach", { image, prompt }), | ||
ProVisionModelUrl: async (image, prompt) => (await Api()).Get("v1/ai/google/gemini/pro-vision-url", { image, prompt }) | ||
}, | ||
Bard: { | ||
Model1: async (promt) => (await Api()).Get("v1/ai/google/bard/model1", { promt }), | ||
Model2Image: async (url, promt) => (await Api()).Get("v1/ai/google/bard/model2-img", { url, promt }), | ||
Model1: async (prompt) => (await Api()).Get("v1/ai/google/bard/model1", { prompt }), | ||
Model2Image: async (url, prompt) => (await Api()).Get("v1/ai/google/bard/model2-img", { url, prompt }), | ||
} | ||
} | ||
}; |
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 |
---|---|---|
@@ -1,8 +1,8 @@ | ||
module.exports = function(Api) { | ||
return { | ||
Bing: { | ||
Model1: async (promt) => (await Api()).Get("v1/ai/microsoft/bing/model1", { promt }), | ||
Model2Image: async (url, promt) => (await Api()).Get("v1/ai/microsoft/bing/model2-img", { url, promt }), | ||
Model1: async (prompt) => (await Api()).Get("v1/ai/microsoft/bing/model1", { prompt }), | ||
Model2Image: async (url, prompt) => (await Api()).Get("v1/ai/microsoft/bing/model2-img", { url, prompt }), | ||
} | ||
} | ||
}; |
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
module.exports = function(Api) { | ||
return { | ||
Model1: async (promt) => (await Api()).Get("v1/ai/stablediffusion/model1", { promt }), | ||
Model1: async (prompt) => (await Api()).Get("v1/ai/stablediffusion/model1", { prompt }), | ||
} | ||
}; |
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 |
---|---|---|
@@ -1,10 +1,10 @@ | ||
module.exports = function(Api) { | ||
return { | ||
Model1: async (promt) => (await Api()).Get("v1/ai/text2img/model1", { promt }), | ||
Model2: async (promt) => (await Api()).Get("v1/ai/text2img/model2", { promt }), | ||
Model3: async (promt) => (await Api()).Get("v1/ai/text2img/model3", { promt }), | ||
Model4: async (promt) => (await Api()).Get("v1/ai/text2img/model4", { promt }), | ||
Model5: async (promt) => (await Api()).Get("v1/ai/text2img/model5", { promt }), | ||
Model6: async (promt) => (await Api()).Get("v1/ai/text2img/model6", { promt }), | ||
Model1: async (prompt) => (await Api()).Get("v1/ai/text2img/model1", { prompt }), | ||
Model2: async (prompt) => (await Api()).Get("v1/ai/text2img/model2", { prompt }), | ||
Model3: async (prompt) => (await Api()).Get("v1/ai/text2img/model3", { prompt }), | ||
Model4: async (prompt) => (await Api()).Get("v1/ai/text2img/model4", { prompt }), | ||
Model5: async (prompt) => (await Api()).Get("v1/ai/text2img/model5", { prompt }), | ||
Model6: async (prompt) => (await Api()).Get("v1/ai/text2img/model6", { prompt }), | ||
} | ||
}; |
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
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
export class Blackbox { | ||
Model1: (promt: string) => Promise<any>; | ||
Model2v4: (promt: string) => Promise<any>; | ||
Model1: (prompt: string) => Promise<any>; | ||
Model2v4: (prompt: string) => Promise<any>; | ||
} |
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 |
---|---|---|
@@ -1,15 +1,15 @@ | ||
export class ChatGPT { | ||
Model1: (promt: string) => Promise<any>; | ||
Model2: (promt: string) => Promise<any>; | ||
Model3: (promt: string) => Promise<any>; | ||
Model4: (promt: string) => Promise<any>; | ||
Model5: (promt: string) => Promise<any>; | ||
Model6: (promt: string) => Promise<any>; | ||
Model7Go: (promt: string) => Promise<any>; | ||
Model8Promt: (promt: string, text: string) => Promise<any>; | ||
Model9v4: (promt: string) => Promise<any>; | ||
Model10v4: (promt: string) => Promise<any>; | ||
Model11Dalle: (promt: string) => Promise<any>; | ||
Model12Turbo: (promt: string) => Promise<any>; | ||
Model13Turbo: (promt: string) => Promise<any>; | ||
Model1: (prompt: string) => Promise<any>; | ||
Model2: (prompt: string) => Promise<any>; | ||
Model3: (prompt: string) => Promise<any>; | ||
Model4: (prompt: string) => Promise<any>; | ||
Model5: (prompt: string) => Promise<any>; | ||
Model6: (prompt: string) => Promise<any>; | ||
Model7Go: (prompt: string) => Promise<any>; | ||
Model8Prompt: (prompt: string, text: string) => Promise<any>; | ||
Model9v4: (prompt: string) => Promise<any>; | ||
Model10v4: (prompt: string) => Promise<any>; | ||
Model11Dalle: (prompt: string) => Promise<any>; | ||
Model12Turbo: (prompt: string) => Promise<any>; | ||
Model13Turbo: (prompt: string) => Promise<any>; | ||
} |
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 |
---|---|---|
@@ -1,10 +1,10 @@ | ||
export class Gemini { | ||
Pro: (promt: string) => Promise<any>; | ||
ProVisionModelAttach: (image: string, promt: string) => Promise<any>; | ||
ProVisionModelUrl: (image: string, promt: string) => Promise<any>; | ||
Pro: (prompt: string) => Promise<any>; | ||
ProVisionModelAttach: (image: string, prompt: string) => Promise<any>; | ||
ProVisionModelUrl: (image: string, prompt: string) => Promise<any>; | ||
} | ||
|
||
export class Bard { | ||
Model1: (promt: string) => Promise<any>; | ||
Model2Image: (url: string, promt: string) => Promise<any>; | ||
Model1: (prompt: string) => Promise<any>; | ||
Model2Image: (url: string, prompt: string) => Promise<any>; | ||
} |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
export class Bing { | ||
Model1: (promt: string) => Promise<any>; | ||
Model2Image: (url: string, promt: string) => Promise<any>; | ||
Model1: (prompt: string) => Promise<any>; | ||
Model2Image: (url: string, prompt: string) => Promise<any>; | ||
} |
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
export class StableDiffusion { | ||
Model1: (promt: string) => Promise<any>; | ||
Model1: (prompt: string) => Promise<any>; | ||
} |
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 |
---|---|---|
@@ -1,8 +1,8 @@ | ||
export class TextToImage { | ||
Model1: (promt: string) => Promise<any>; | ||
Model2: (promt: string) => Promise<any>; | ||
Model3: (promt: string) => Promise<any>; | ||
Model4: (promt: string) => Promise<any>; | ||
Model5: (promt: string) => Promise<any>; | ||
Model6: (promt: string) => Promise<any>; | ||
Model1: (prompt: string) => Promise<any>; | ||
Model2: (prompt: string) => Promise<any>; | ||
Model3: (prompt: string) => Promise<any>; | ||
Model4: (prompt: string) => Promise<any>; | ||
Model5: (prompt: string) => Promise<any>; | ||
Model6: (prompt: string) => Promise<any>; | ||
} |
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