nonomni_bge_m3
Creates, updates, deletes, gets or lists a nonomni_bge_m3 resource.
Overview
| Name | nonomni_bge_m3 |
| Type | Resource |
| Id | cloudflare.ai.nonomni_bge_m3 |
Fields
The following fields are returned by SELECT queries:
SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
workers_ai_post_run_cf_baai_nonomni_bge_m3 | insert | account_id | queueRequest, tags | Runs inference on the @cf/baai/nonomni-bge-m3 model. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
account_id | string | The Cloudflare account ID. |
queueRequest | string | |
tags | string |
INSERT examples
- workers_ai_post_run_cf_baai_nonomni_bge_m3
- Manifest
Runs inference on the @cf/baai/nonomni-bge-m3 model.
INSERT INTO cloudflare.ai.nonomni_bge_m3 (
contexts,
query,
truncate_inputs,
text,
requests,
account_id,
queueRequest,
tags
)
SELECT
'{{ contexts }}',
'{{ query }}',
{{ truncate_inputs }},
'{{ text }}',
'{{ requests }}',
'{{ account_id }}',
'{{ queueRequest }}',
'{{ tags }}'
;
# Description fields are for documentation purposes
- name: nonomni_bge_m3
props:
- name: account_id
value: "{{ account_id }}"
description: Required parameter for the nonomni_bge_m3 resource.
- name: contexts
description: |
List of provided contexts. Note that the index in this array is important, as the response will refer to it.
value:
- text: "{{ text }}"
- name: query
value: "{{ query }}"
description: |
A query you wish to perform against the provided contexts. If no query is provided the model with respond with embeddings for contexts
- name: truncate_inputs
value: {{ truncate_inputs }}
description: |
When provided with too long context should the model error out or truncate the context to fit?
default: false
- name: text
value: "{{ text }}"
description: |
The text to embed
- name: requests
description: |
Batch of the embeddings requests to run using async-queue
value:
- contexts: "{{ contexts }}"
query: "{{ query }}"
truncate_inputs: {{ truncate_inputs }}
text: "{{ text }}"
- name: queueRequest
value: "{{ queueRequest }}"
- name: tags
value: "{{ tags }}"