Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions output/openapi/elasticsearch-openapi.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions output/openapi/elasticsearch-serverless-openapi.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions output/schema/schema.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
# summary:
description: Run `PUT _inference/text_embedding/llama-text-embedding` to create a Llama inference endpoint that performs a `text_embedding` task.
description:
Run `PUT _inference/text_embedding/llama-text-embedding` to create a Llama inference endpoint that performs a
`text_embedding` task.
method_request: 'PUT _inference/text_embedding/llama-text-embedding'
# type: "request"
value: |-
{
"service": "llama",
"service_settings": {
"url": "http://localhost:8321/v1/inference/embeddings"
"url": "http://localhost:8321/v1/inference/embeddings",
"dimensions": 384,
"model_id": "all-MiniLM-L6-v2"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ value: |-
{
"service": "llama",
"service_settings": {
"url": "http://localhost:8321/v1/openai/v1/chat/completions"
"url": "http://localhost:8321/v1/openai/v1/chat/completions",
"model_id": "llama3.2:3b"
}
}
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
# summary:
description: Run `PUT _inference/chat-completion/llama-chat-completion` to create a Llama inference endpoint that performs a `chat_completion` task.
description:
Run `PUT _inference/chat-completion/llama-chat-completion` to create a Llama inference endpoint that performs a
`chat_completion` task.
method_request: 'PUT _inference/chat-completion/llama-chat-completion'
# type: "request"
value: |-
{
"service": "llama",
"service_settings": {
"url": "http://localhost:8321/v1/openai/v1/chat/completions"
"url": "http://localhost:8321/v1/openai/v1/chat/completions",
"model_id": "llama3.2:3b"
}
}