Skip to content

Commit 19e3b5c

Browse files
committed
Add images to AI Server docs
1 parent dc1223d commit 19e3b5c

29 files changed

+94
-9
lines changed

MyApp/_pages/ai-server/chat.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,17 @@ title: AI Server API Usage
44

55
AI Server provides a unified API to process requests for AI services to access LLMs, Image Generation, Transcription, and more. The API is designed to be simple to use and easy to integrate into your applications providing many supported languages and frameworks.
66

7+
## Chat UI
8+
9+
AI Server's Chat UI lets upi send Open AI Chat requests with custom system prompts to any of its active LLMs:
10+
11+
<div class="not-prose">
12+
<h3 class="text-4xl text-center text-indigo-800 pb-3"><span class="text-gray-300">https://localhost:5006</span>/Chat
13+
</h3>
14+
</div>
15+
16+
![](/img/pages/ai-server/uis/Chat.webp)
17+
718
## Making a Chat Request
819

920
To make a chat request to AI Server, you can use the `/api/OpenAiChatCompletion` endpoint. This endpoint requires a `OpenAiChatCompletion` request DTO that contains a property matching the `OpenAI` API.

MyApp/_pages/ai-server/image-to-image.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@
22
title: Image to Image
33
---
44

5+
## Image to Image UI
6+
7+
AI Server's Image to Image UI lets you create custom Images from a blueprint image from its active Comfy UI Agents:
8+
9+
<div class="not-prose">
10+
<h3 class="text-4xl text-center text-indigo-800 pb-3">
11+
<span class="text-gray-300">https://localhost:5006</span>/ImageToImage
12+
</h3>
13+
</div>
14+
15+
![](/img/pages/ai-server/uis/ImageToImage.webp)
16+
517
## Using Image to Image Endpoints
618

719
::include ai-server/endpoint-usage.md::

MyApp/_pages/ai-server/image-to-text.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@
22
title: Image to Text
33
---
44

5+
## Image to Text UI
6+
7+
AI Server's Image to Text UI lets you request image classifications from its active Comfy UI Agents:
8+
9+
<div class="not-prose">
10+
<h3 class="text-4xl text-center text-indigo-800 pb-3">
11+
<span class="text-gray-300">https://localhost:5006</span>/ImageToText
12+
</h3>
13+
</div>
14+
15+
![](/img/pages/ai-server/uis/ImageToText.webp)
16+
517
## Using Image to Text Endpoints
618

719
::include ai-server/endpoint-usage.md::

MyApp/_pages/ai-server/image-upscale.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@
22
title: Image Upscale
33
---
44

5+
## Image Upscale UI
6+
7+
AI Server's Image Upscale UI lets you use AI to 2x upscale and image from its active Comfy UI Agents:
8+
9+
<div class="not-prose">
10+
<h3 class="text-4xl text-center text-indigo-800 pb-3">
11+
<span class="text-gray-300">https://localhost:5006</span>/ImageUpscale
12+
</h3>
13+
</div>
14+
15+
![](/img/pages/ai-server/uis/ImageUpscale.webp)
16+
517
## Using Image Upscale Endpoints
618

719
::include ai-server/endpoint-usage.md::

MyApp/_pages/ai-server/index.md

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -48,14 +48,16 @@ If your server also has a GPU you can ask the installer to also install the [Com
4848

4949
The ComfyUI Agent is a separate Docker agent for running [ComfyUI](https://www.comfy.org),
5050
[Whisper](https://github.com/openai/whisper) and [FFmpeg](https://www.ffmpeg.org) on servers with GPUs to handle
51-
AI Server's Media transformations and Media Requests, including:
52-
53-
- Text to Image
54-
- Image to Text
55-
- Image to Image
56-
- Image Upscale
57-
- Speech to Text
58-
- Text to Speech
51+
AI Server's [Image](/ai-server/transform/image) and
52+
[Video transformations](/ai-server/transform/video) and Media Requests, including:
53+
54+
- [Text to Image](/ai-server/text-to-image)
55+
- [Image to Text](/ai-server/image-to-text)
56+
- [Image to Image](/ai-server/image-to-image)
57+
- [Image with Mask](/ai-server/image-with-mask)
58+
- [Image Upscale](/ai-server/image-upscale)
59+
- [Speech to Text](/ai-server/speech-to-text)
60+
- [Text to Speech](/ai-server/text-to-speech)
5961

6062
#### Comfy UI Agent Installer
6163

MyApp/_pages/ai-server/speech-to-text.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,18 @@ title: Speech to Text
44

55
AI Server can transcribe audio files to text using the Speech-to-Text provider. This is powered by the Whisper model and is hosted on your own ComfyUI Agent.
66

7+
## Speech to Text UI
8+
9+
AI Server's Speech to Text UI lets you transcribe audio files from its active Comfy UI Agents:
10+
11+
<div class="not-prose">
12+
<h3 class="text-4xl text-center text-indigo-800 pb-3">
13+
<span class="text-gray-300">https://localhost:5006</span>/SpeechToText
14+
</h3>
15+
</div>
16+
17+
![](/img/pages/ai-server/uis/SpeechToText.webp)
18+
719
## Using Speech to Text Endpoints
820

921
::include ai-server/endpoint-usage.md::

MyApp/_pages/ai-server/text-to-image.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,19 @@
22
title: Text to Image
33
---
44

5+
## Text to Image UI
6+
7+
AI Server's Text to Image UI lets send Text to Image requests to any of its active Comfy UI Agents Models, Diffusion
8+
or DALL·E 3 API Providers:
9+
10+
<div class="not-prose">
11+
<h3 class="text-4xl text-center text-indigo-800 pb-3">
12+
<span class="text-gray-300">https://localhost:5006</span>/TextToImage
13+
</h3>
14+
</div>
15+
16+
![](/img/pages/ai-server/uis/TextToImage.webp)
17+
518
## Using Text to Image Endpoints
619

720
::include ai-server/endpoint-usage.md::

MyApp/_pages/ai-server/text-to-speech.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,19 @@
22
title: Text to Speech
33
---
44

5-
## Using Text to Speech Endpoints
5+
## Text to Speech UI
6+
7+
AI Server's Text to Speech UI lets you create audio files from its active Comfy UI Agents or Open AI Text to Speech models:
8+
9+
<div class="not-prose">
10+
<h3 class="text-4xl text-center text-indigo-800 pb-3">
11+
<span class="text-gray-300">https://localhost:5006</span>/TextToSpeech
12+
</h3>
13+
</div>
614

15+
![](/img/pages/ai-server/uis/TextToSpeech.webp)
16+
17+
## Using Text to Speech Endpoints
718

819
::include ai-server/endpoint-usage.md::
920

194 KB
Loading
206 KB
Loading

0 commit comments

Comments
 (0)