Skip to content
This repository was archived by the owner on Jul 4, 2025. It is now read-only.

Commit 3f9f451

Browse files
committed
chore: fix conflicts
1 parent 06553db commit 3f9f451

File tree

2 files changed

+0
-22
lines changed

2 files changed

+0
-22
lines changed

docs/docs/capabilities/embeddings.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,6 @@ title: Embeddings
66
:::
77

88
cortex.cpp now support embeddings endpoint with fully OpenAI compatible.
9-
<<<<<<< HEAD
10-
11-
=======
12-
>>>>>>> a055f6906e43b3c3398874d540136425adae9114
139

1410
For embeddings API usage please refer to [API references](/api-reference#tag/chat/POST/v1/embeddings). This tutorial show you how to use embeddings in cortex with openai python SDK.
1511

@@ -105,7 +101,3 @@ response = client.embeddings.create(input = [12,44,123], model=MODEL)
105101
# input as array of arrays contain tokens
106102
response = client.embeddings.create(input = [[912,312,54],[12,433,1241]], model=MODEL)
107103
```
108-
<<<<<<< HEAD
109-
110-
=======
111-
>>>>>>> a055f6906e43b3c3398874d540136425adae9114

docs/static/openapi/cortex.json

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -209,11 +209,7 @@
209209
},
210210
{
211211
"type": "array",
212-
<<<<<<< HEAD
213-
"description" : "The array of strings that will be turned into an embedding.",
214-
=======
215212
"description": "The array of strings that will be turned into an embedding.",
216-
>>>>>>> a055f6906e43b3c3398874d540136425adae9114
217213
"items": {
218214
"type": "string"
219215
}
@@ -223,21 +219,11 @@
223219
"description": "The array of integers that will be turned into an embedding.",
224220
"items": {
225221
"type": "integer"
226-
<<<<<<< HEAD
227-
228-
=======
229-
>>>>>>> a055f6906e43b3c3398874d540136425adae9114
230222
}
231223
},
232224
{
233225
"type": "array",
234-
<<<<<<< HEAD
235-
236-
"description" : "The array of arrays containing integers that will be turned into an embedding.",
237-
238-
=======
239226
"description": "The array of arrays containing integers that will be turned into an embedding.",
240-
>>>>>>> a055f6906e43b3c3398874d540136425adae9114
241227
"items": {
242228
"type": "array",
243229
"items": {

0 commit comments

Comments
 (0)