-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Aleksandr Movchan
committed
Jul 19, 2024
1 parent
44caffd
commit 539c6cb
Showing
4 changed files
with
61 additions
and
16 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
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,32 @@ | ||
# Aana Deployments | ||
|
||
::: aana.deployments | ||
## AanaDeploymentHandle | ||
|
||
AanaDeploymentHandle is a class that allows you to interact with Aana deployments. | ||
|
||
::: aana.deployments.AanaDeploymentHandle | ||
|
||
## Base classes for deployments | ||
|
||
At the momemnt there are two base classes that you can use to create your own deployments: | ||
- BaseDeployment: This is the base class for all Aana deployments. | ||
- BaseTextGenerationDeployment: This is the base class for all text generation deployments (LLM deployments). | ||
|
||
::: aana.deployments.BaseDeployment | ||
::: aana.deployments.BaseTextGenerationDeployment | ||
|
||
## Text generation deployments | ||
|
||
### Hugging Face Text Generation Deployment | ||
|
||
Hugging Face Text Generation Deployment allows you to use Hugging Face transformers library to serve LLMs. | ||
|
||
::: aana.deployments.HfTextGenerationConfig | ||
::: aana.deployments.HfTextGenerationDeployment | ||
|
||
### VLLM Deployment | ||
|
||
VLLM Deployment allows you to use vLLM library to serve LLMs. | ||
|
||
::: aana.deployments.VLLMConfig | ||
::: aana.deployments.VLLMDeployment |
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