Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
aon-document
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
duanjinfei
aon-document
Commits
a7343fea
Commit
a7343fea
authored
Sep 08, 2024
by
duanjinfei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update model prediction
parent
169bf0df
Changes
19
Hide whitespace changes
Inline
Side-by-side
Showing
19 changed files
with
19 additions
and
19 deletions
+19
-19
Bark API Usage Guide.md
docs/publicModelsAPI/Bark API Usage Guide.md
+1
-1
Blip API Usage Guide.md
docs/publicModelsAPI/Blip API Usage Guide.md
+1
-1
Blip-2 API Usage Guide.md
docs/publicModelsAPI/Blip-2 API Usage Guide.md
+1
-1
Chattts API Usage Guide.md
docs/publicModelsAPI/Chattts API Usage Guide.md
+1
-1
Codeformer API Usage Guide.md
docs/publicModelsAPI/Codeformer API Usage Guide.md
+1
-1
Controlnet API Usage Guide.md
docs/publicModelsAPI/Controlnet API Usage Guide.md
+1
-1
Face Swap API Usage Guide.md
docs/publicModelsAPI/Face Swap API Usage Guide.md
+1
-1
Flux-Schnell API Usage Guide.md
docs/publicModelsAPI/Flux-Schnell API Usage Guide.md
+1
-1
Gfpgan API Usage Guide.md
docs/publicModelsAPI/Gfpgan API Usage Guide.md
+1
-1
IDM-VTON AI Model Usage Guide.md
docs/publicModelsAPI/IDM-VTON AI Model Usage Guide.md
+1
-1
MiniGpt-4 API Usage Guide.md
docs/publicModelsAPI/MiniGpt-4 API Usage Guide.md
+1
-1
Pulid AI Model Usage Guide.md
docs/publicModelsAPI/Pulid AI Model Usage Guide.md
+1
-1
Real-Esrgan API Usage Guide.md
docs/publicModelsAPI/Real-Esrgan API Usage Guide.md
+1
-1
SadTalker API Usage Guide.md
docs/publicModelsAPI/SadTalker API Usage Guide.md
+1
-1
Sdxl API Usage Guide.md
docs/publicModelsAPI/Sdxl API Usage Guide.md
+1
-1
Stable Diffusion 3 API Usage Guide.md
docs/publicModelsAPI/Stable Diffusion 3 API Usage Guide.md
+1
-1
Stable-Diffusion API Usage Guide.md
docs/publicModelsAPI/Stable-Diffusion API Usage Guide.md
+1
-1
Whisper API Usage Guide.md
docs/publicModelsAPI/Whisper API Usage Guide.md
+1
-1
XTTS-V2 API Usage Guide copy.md
docs/publicModelsAPI/XTTS-V2 API Usage Guide copy.md
+1
-1
No files found.
docs/publicModelsAPI/Bark API Usage Guide.md
View file @
a7343fea
...
...
@@ -51,7 +51,7 @@ const data = {
```
js
const
price
=
8
;
// Cost of the AI call
try
{
const
response
=
await
aonweb
.
prediction
(
"
/predictions/ai/bark
"
,
data
,
price
);
const
response
=
await
aonweb
.
prediction
(
"
/predictions/ai/bark
@suno-ai
"
,
data
,
price
);
// Handle response
console
.
log
(
"
Bark result:
"
,
response
);
}
catch
(
error
)
{
...
...
docs/publicModelsAPI/Blip API Usage Guide.md
View file @
a7343fea
...
...
@@ -72,7 +72,7 @@ const data = {
```
js
const
price
=
8
;
// Cost of the AI call
try
{
const
response
=
await
aonweb
.
prediction
(
"
/predictions/ai/blip
"
,
data
,
price
);
const
response
=
await
aonweb
.
prediction
(
"
/predictions/ai/blip
@salesforce
"
,
data
,
price
);
// Handle response
console
.
log
(
"
Blip result:
"
,
response
);
}
catch
(
error
)
{
...
...
docs/publicModelsAPI/Blip-2 API Usage Guide.md
View file @
a7343fea
...
...
@@ -84,7 +84,7 @@ const data = {
```
js
const
price
=
8
;
// Cost of the AI call
try
{
const
response
=
await
aonweb
.
prediction
(
"
/predictions/ai/blip-2
"
,
data
,
price
);
const
response
=
await
aonweb
.
prediction
(
"
/predictions/ai/blip-2
@andreasjansson
"
,
data
,
price
);
// Handle response
console
.
log
(
"
Blip-2 result:
"
,
response
);
}
catch
(
error
)
{
...
...
docs/publicModelsAPI/Chattts API Usage Guide.md
View file @
a7343fea
...
...
@@ -72,7 +72,7 @@ const data = {
```
js
const
price
=
8
;
// Cost of the AI call
try
{
const
response
=
await
aonweb
.
prediction
(
"
/predictions/ai/chat-tts
"
,
data
,
price
);
const
response
=
await
aonweb
.
prediction
(
"
/predictions/ai/chat-tts
@thlz998
"
,
data
,
price
);
// Handle response
console
.
log
(
"
Chattts result:
"
,
response
);
}
catch
(
error
)
{
...
...
docs/publicModelsAPI/Codeformer API Usage Guide.md
View file @
a7343fea
...
...
@@ -54,7 +54,7 @@ const data = {
```
js
const
price
=
8
;
// Cost of the AI call
try
{
const
response
=
await
aonweb
.
prediction
(
"
/predictions/ai/codeformer
"
,
data
,
price
);
const
response
=
await
aonweb
.
prediction
(
"
/predictions/ai/codeformer
@lucataco
"
,
data
,
price
);
// Handle response
console
.
log
(
"
Codeformer result:
"
,
response
);
}
catch
(
error
)
{
...
...
docs/publicModelsAPI/Controlnet API Usage Guide.md
View file @
a7343fea
...
...
@@ -90,7 +90,7 @@ const data = {
```
js
const
price
=
8
;
// Cost of the AI call
try
{
const
response
=
await
aonweb
.
prediction
(
"
/predictions/ai/controlnet
"
,
data
,
price
);
const
response
=
await
aonweb
.
prediction
(
"
/predictions/ai/controlnet
@jagilley
"
,
data
,
price
);
// Handle response
console
.
log
(
"
Controlnet result:
"
,
response
);
}
catch
(
error
)
{
...
...
docs/publicModelsAPI/Face Swap API Usage Guide.md
View file @
a7343fea
...
...
@@ -52,7 +52,7 @@ const data = {
```
js
const
price
=
8
;
// Cost of the AI call
try
{
const
response
=
await
aonweb
.
prediction
(
"
/predictions/ai/face-swap
"
,
data
,
price
);
const
response
=
await
aonweb
.
prediction
(
"
/predictions/ai/face-swap
@omniedgeio
"
,
data
,
price
);
// Handle response
console
.
log
(
"
Face swap result:
"
,
response
);
}
catch
(
error
)
{
...
...
docs/publicModelsAPI/Flux-Schnell API Usage Guide.md
View file @
a7343fea
...
...
@@ -79,7 +79,7 @@ const data = {
```
js
const
price
=
8
;
// Cost of the AI call
try
{
const
response
=
await
aonweb
.
prediction
(
"
/predictions/ai/flux-schnell
s
"
,
data
,
price
);
const
response
=
await
aonweb
.
prediction
(
"
/predictions/ai/flux-schnell
@iAON
"
,
data
,
price
);
// Handle response
console
.
log
(
"
Flux-Schnell result:
"
,
response
);
}
catch
(
error
)
{
...
...
docs/publicModelsAPI/Gfpgan API Usage Guide.md
View file @
a7343fea
...
...
@@ -52,7 +52,7 @@ const data = {
```
js
const
price
=
8
;
// Cost of the AI call
try
{
const
response
=
await
aonweb
.
prediction
(
"
/predictions/ai/gfpgan
"
,
data
,
price
);
const
response
=
await
aonweb
.
prediction
(
"
/predictions/ai/gfpgan
@lucataco
"
,
data
,
price
);
// Handle response
console
.
log
(
"
Gfpgan result:
"
,
response
);
}
catch
(
error
)
{
...
...
docs/publicModelsAPI/IDM-VTON AI Model Usage Guide.md
View file @
a7343fea
...
...
@@ -59,7 +59,7 @@ const data = {
```
js
const
price
=
8
;
// Cost of the AI call
try
{
const
response
=
await
aonweb
.
prediction
(
"
/predictions/ai/idm-vton
"
,
data
,
price
);
const
response
=
await
aonweb
.
prediction
(
"
/predictions/ai/idm-vton
@cuuupid
"
,
data
,
price
);
// Handle response
console
.
log
(
"
IDM-VTON Response:
"
,
response
);
}
catch
(
error
)
{
...
...
docs/publicModelsAPI/MiniGpt-4 API Usage Guide.md
View file @
a7343fea
...
...
@@ -57,7 +57,7 @@ const data = {
```
js
const
price
=
8
;
// Cost of the AI call
try
{
const
response
=
await
aonweb
.
prediction
(
"
/predictions/ai/minigpt-4
"
,
data
,
price
);
const
response
=
await
aonweb
.
prediction
(
"
/predictions/ai/minigpt-4
@daanelson
"
,
data
,
price
);
// Handle response
console
.
log
(
"
MiniGpt-4 result:
"
,
response
);
}
catch
(
error
)
{
...
...
docs/publicModelsAPI/Pulid AI Model Usage Guide.md
View file @
a7343fea
...
...
@@ -63,7 +63,7 @@ const data = {
```
js
const
price
=
8
;
// Cost of the AI call
try
{
const
response
=
await
aonweb
.
prediction
(
"
/predictions/ai/pulid
"
,
data
,
price
);
const
response
=
await
aonweb
.
prediction
(
"
/predictions/ai/pulid
@zsxkib
"
,
data
,
price
);
// Handle response
console
.
log
(
"
pulid result:
"
,
response
);
}
catch
(
error
)
{
...
...
docs/publicModelsAPI/Real-Esrgan API Usage Guide.md
View file @
a7343fea
...
...
@@ -52,7 +52,7 @@ const data = {
```
js
const
price
=
8
;
// Cost of the AI call
try
{
const
response
=
await
aonweb
.
prediction
(
"
/predictions/ai/real-esrgan
"
,
data
,
price
);
const
response
=
await
aonweb
.
prediction
(
"
/predictions/ai/real-esrgan
@lucataco
"
,
data
,
price
);
// Handle response
console
.
log
(
"
Real-Esrgan result:
"
,
response
);
}
catch
(
error
)
{
...
...
docs/publicModelsAPI/SadTalker API Usage Guide.md
View file @
a7343fea
...
...
@@ -55,7 +55,7 @@ const data = {
```
js
const
price
=
8
;
// Cost of the AI call
try
{
const
response
=
await
aonweb
.
prediction
(
"
/predictions/ai/sadtalker
"
,
data
,
price
);
const
response
=
await
aonweb
.
prediction
(
"
/predictions/ai/sadtalker
@lucataco
"
,
data
,
price
);
// Handle response
console
.
log
(
"
sadtalker result:
"
,
response
);
}
catch
(
error
)
{
...
...
docs/publicModelsAPI/Sdxl API Usage Guide.md
View file @
a7343fea
...
...
@@ -102,7 +102,7 @@ const data = {
```
js
const
price
=
8
;
// Cost of the AI call
try
{
const
response
=
await
aonweb
.
prediction
(
"
/predictions/ai/sdxl
"
,
data
,
price
);
const
response
=
await
aonweb
.
prediction
(
"
/predictions/ai/sdxl
@asiryan
"
,
data
,
price
);
// Handle response
console
.
log
(
"
Sdxl result:
"
,
response
);
}
catch
(
error
)
{
...
...
docs/publicModelsAPI/Stable Diffusion 3 API Usage Guide.md
View file @
a7343fea
...
...
@@ -55,7 +55,7 @@ const data = {
```
js
const
price
=
8
;
// Cost of the AI call
try
{
const
response
=
await
aonweb
.
prediction
(
"
/predictions/ai/stable-diffusion-3
"
,
data
,
price
);
const
response
=
await
aonweb
.
prediction
(
"
/predictions/ai/stable-diffusion-3
@stability-ai
"
,
data
,
price
);
// Handle response
}
catch
(
error
)
{
// Error handling
...
...
docs/publicModelsAPI/Stable-Diffusion API Usage Guide.md
View file @
a7343fea
...
...
@@ -89,7 +89,7 @@ const data = {
```
js
const
price
=
8
;
// Cost of the AI call
try
{
const
response
=
await
aonweb
.
prediction
(
"
/predictions/ai/stable-diffusion
"
,
data
,
price
);
const
response
=
await
aonweb
.
prediction
(
"
/predictions/ai/stable-diffusion
@stability-ai
"
,
data
,
price
);
// Handle response
console
.
log
(
"
Stable-Diffusion result:
"
,
response
);
}
catch
(
error
)
{
...
...
docs/publicModelsAPI/Whisper API Usage Guide.md
View file @
a7343fea
...
...
@@ -121,7 +121,7 @@ const data = {
```
js
const
price
=
8
;
// Cost of the AI call
try
{
const
response
=
await
aonweb
.
prediction
(
"
/predictions/ai/whisper
"
,
data
,
price
);
const
response
=
await
aonweb
.
prediction
(
"
/predictions/ai/whisper
@soykertje
"
,
data
,
price
);
// Handle response
console
.
log
(
"
Whisper result:
"
,
response
);
}
catch
(
error
)
{
...
...
docs/publicModelsAPI/XTTS-V2 API Usage Guide copy.md
View file @
a7343fea
...
...
@@ -54,7 +54,7 @@ const data = {
```
js
const
price
=
8
;
// Cost of the AI call
try
{
const
response
=
await
aonweb
.
prediction
(
"
/predictions/ai/xtts-v2
"
,
data
,
price
);
const
response
=
await
aonweb
.
prediction
(
"
/predictions/ai/xtts-v2
@lucataco
"
,
data
,
price
);
// Handle response
console
.
log
(
"
XTTS-V2 result:
"
,
response
);
}
catch
(
error
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment