embeddinggemma_300m
Creates, updates, deletes, gets or lists an embeddinggemma_300m resource.
Overview
| Name | embeddinggemma_300m |
| Type | Resource |
| Id | cloudflare.ai.embeddinggemma_300m |
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_google_embeddinggemma_300m | insert | account_id, text | queueRequest, tags | Runs inference on the @cf/google/embeddinggemma-300m 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_google_embeddinggemma_300m
- Manifest
Runs inference on the @cf/google/embeddinggemma-300m model.
INSERT INTO cloudflare.ai.embeddinggemma_300m (
text,
account_id,
queueRequest,
tags
)
SELECT
'{{ text }}' /* required */,
'{{ account_id }}',
'{{ queueRequest }}',
'{{ tags }}'
;
# Description fields are for documentation purposes
- name: embeddinggemma_300m
props:
- name: account_id
value: "{{ account_id }}"
description: Required parameter for the embeddinggemma_300m resource.
- name: text
value: "{{ text }}"
description: |
The text to embed
- name: queueRequest
value: "{{ queueRequest }}"
- name: tags
value: "{{ tags }}"