We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4bdd33 commit 7b64871Copy full SHA for 7b64871
src/resources/embeddings.ts
@@ -42,7 +42,6 @@ export class Embeddings extends APIResource {
42
// and we defaulted to base64 for performance reasons
43
// we are sure then that the response is base64 encoded, let's decode it
44
// the returned result will be a float32 array since this is OpenAI API's default encoding
45
- Core.debug('response', `User requested encoding_format=${encoding_format || 'default'}`);
46
Core.debug('response', 'Decoding base64 embeddings to float32 array');
47
48
return (response as Core.APIPromise<CreateEmbeddingResponse>)._thenUnwrap((response) => {
0 commit comments