@@ -14,18 +14,16 @@ export class Embeddings extends APIResource {
14
14
Core . debug ( 'request' , 'Sending request with arguments:' , { body, ...options } ) ;
15
15
16
16
const hasUserProvidedEncodingFormat = ! ! body . encoding_format ;
17
+ // No encoding_format specified, defaulting to base64 for performance reasons
18
+ // See https://github.com/openai/openai-node/pull/1312
17
19
let encoding_format : EmbeddingCreateParams [ 'encoding_format' ] =
18
20
hasUserProvidedEncodingFormat ? body . encoding_format : 'base64' ;
19
21
20
22
if ( hasUserProvidedEncodingFormat ) {
21
23
Core . debug ( 'Request' , 'User defined encoding_format:' , body . encoding_format ) ;
22
- } else {
23
- // No encoding_format specified, defaulting to base64 for performance reasons
24
- // See https://github.com/openai/openai-node/pull/1312
25
- encoding_format = 'base64' ;
26
24
}
27
25
28
- const response = this . _client . post ( '/embeddings' , {
26
+ const response : Core . APIPromise < CreateEmbeddingResponse > = this . _client . post ( '/embeddings' , {
29
27
body : {
30
28
...body ,
31
29
encoding_format : encoding_format as EmbeddingCreateParams [ 'encoding_format' ] ,
@@ -35,7 +33,7 @@ export class Embeddings extends APIResource {
35
33
36
34
// if the user specified an encoding_format, return the response as-is
37
35
if ( hasUserProvidedEncodingFormat ) {
38
- return response as Core . APIPromise < CreateEmbeddingResponse > ;
36
+ return response ;
39
37
}
40
38
41
39
// in this stage, we are sure the user did not specify an encoding_format
0 commit comments