| 2973 | } |
| 2974 | type Ai_Cf_Baai_Bge_M3_Output = BGEM3OuputQuery | BGEM3OutputEmbeddingForContexts | BGEM3OuputEmbedding; |
| 2975 | interface BGEM3OuputQuery { |
| 2976 | response?: { |
| 2977 | /** |
| 2978 | * Index of the context in the request |
| 2979 | */ |
| 2980 | id?: number; |
| 2981 | /** |
| 2982 | * Score of the context under the index. |
| 2983 | */ |
| 2984 | score?: number; |
| 2985 | }[]; |
| 2986 | } |
| 2987 | interface BGEM3OutputEmbeddingForContexts { |
| 2988 | response?: number[][]; |
| 2989 | shape?: number[]; |
nothing calls this directly
no outgoing calls
no test coverage detected