Class: DeepInfraEmbedding
DeepInfraEmbedding is an alias for DeepInfra that implements the BaseEmbedding interface.
Extends
Constructors
new DeepInfraEmbedding()
new DeepInfraEmbedding(
init
?):DeepInfraEmbedding
Parameters
• init?: Partial
<DeepInfraEmbedding
>
Returns
Overrides
Source
packages/core/src/embeddings/DeepInfraEmbedding.ts:76
Properties
apiToken
apiToken:
string
DeepInfra API token
See
https://deepinfra.com/dash/api_keys
If not provided, it will try to get the token from the environment variable DEEPINFRA_API_TOKEN
Source
packages/core/src/embeddings/DeepInfraEmbedding.ts:50
embedBatchSize
embedBatchSize:
number
=DEFAULT_EMBED_BATCH_SIZE
Inherited from
BaseEmbedding
. embedBatchSize
Source
packages/core/src/embeddings/types.ts:13
maxRetries
maxRetries:
number
Default
5
Source
packages/core/src/embeddings/DeepInfraEmbedding.ts:68
model
model:
string
DeepInfra model to use
Default
"sentence-transformers/clip-ViT-B-32"
See
https://deepinfra.com/models/embeddings
Source
packages/core/src/embeddings/DeepInfraEmbedding.ts:42
queryPrefix
queryPrefix:
string
Prefix to add to the query
Default
""
Source
packages/core/src/embeddings/DeepInfraEmbedding.ts:56
textPrefix
textPrefix:
string
Prefix to add to the text
Default
""
Source
packages/core/src/embeddings/DeepInfraEmbedding.ts:62
timeout
timeout:
number
Default
60 * 1000
Source
packages/core/src/embeddings/DeepInfraEmbedding.ts:74
Methods
getDeepInfraEmbedding()
private
getDeepInfraEmbedding(inputs
):Promise
<number
[][]>