plamo_embedding_1b
Creates, updates, deletes, gets or lists a plamo_embedding_1b resource.
Overview
| Name | plamo_embedding_1b |
| Type | Resource |
| Id | cloudflare.ai.plamo_embedding_1b |
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_pfnet_plamo_embedding_1b | insert | account_id, text | queueRequest, tags | Runs inference on the @cf/pfnet/plamo-embedding-1b 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_pfnet_plamo_embedding_1b
- Manifest
Runs inference on the @cf/pfnet/plamo-embedding-1b model.
INSERT INTO cloudflare.ai.plamo_embedding_1b (
text,
account_id,
queueRequest,
tags
)
SELECT
'{{ text }}' /* required */,
'{{ account_id }}',
'{{ queueRequest }}',
'{{ tags }}'
;
# Description fields are for documentation purposes
- name: plamo_embedding_1b
props:
- name: account_id
value: "{{ account_id }}"
description: Required parameter for the plamo_embedding_1b resource.
- name: text
value: "{{ text }}"
description: |
Input text to embed. Can be a single string or a list of strings.
- name: queueRequest
value: "{{ queueRequest }}"
- name: tags
value: "{{ tags }}"