Skip to content

Commit f0a0632

Browse files
committed
Revert "Adding signed byte support from cohere integration (#2398)"
This reverts commit 203108f.
1 parent 203108f commit f0a0632

File tree

3 files changed

+12
-27
lines changed

3 files changed

+12
-27
lines changed

output/schema/schema.json

Lines changed: 8 additions & 23 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/typescript/types.ts

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

specification/inference/_types/Results.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
* under the License.
1818
*/
1919

20-
import { float, byte } from '@_types/Numeric'
20+
import { float } from '@_types/Numeric'
2121
import { Dictionary } from '@spec_utils/Dictionary'
2222

2323
/**
@@ -28,9 +28,9 @@ export type SparseVector = Dictionary<string, float>
2828

2929
/**
3030
* Text Embedding results are represented as Dense Vectors
31-
* of floats or signed bytes.
31+
* of floats.
3232
*/
33-
export type DenseVector = Array<float> | Array<byte>
33+
export type DenseVector = Array<float>
3434

3535
export class SparseEmbeddingResult {
3636
embedding: SparseVector

0 commit comments

Comments
 (0)