qwen3_embedding_0_6b
Creates, updates, deletes, gets or lists a qwen3_embedding_0_6b resource.
Overview
| Name | qwen3_embedding_0_6b |
| Type | Resource |
| Id | cloudflare.ai.qwen3_embedding_0_6b |
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_qwen_qwen3_embedding_0_6b | insert | account_id | queueRequest, tags | Runs inference on the @cf/qwen/qwen3-embedding-0.6b 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_qwen_qwen3_embedding_0_6b
- Manifest
Runs inference on the @cf/qwen/qwen3-embedding-0.6b model.
INSERT INTO cloudflare.ai.qwen3_embedding_0_6b (
documents,
instruction,
queries,
text,
account_id,
queueRequest,
tags
)
SELECT
'{{ documents }}',
'{{ instruction }}',
'{{ queries }}',
'{{ text }}',
'{{ account_id }}',
'{{ queueRequest }}',
'{{ tags }}'
;
# Description fields are for documentation purposes
- name: qwen3_embedding_0_6b
props:
- name: account_id
value: "{{ account_id }}"
description: Required parameter for the qwen3_embedding_0_6b resource.
- name: documents
value: "{{ documents }}"
description: |
A single document string
- name: instruction
value: "{{ instruction }}"
description: |
Optional instruction for the task
default: Given a web search query, retrieve relevant passages that answer the query
- name: queries
value: "{{ queries }}"
description: |
A single query string
- name: text
value: "{{ text }}"
description: |
Alias for documents: a single text string
- name: queueRequest
value: "{{ queueRequest }}"
- name: tags
value: "{{ tags }}"