跳至橫幅的結尾
前往橫幅的開頭

範例 - Embedding

跳至中繼資料的結尾
前往中繼資料的開頭

您正在檢視此頁面的舊版本。請檢視目前版本

比較目前 檢視頁面歷程記錄

« 上一頁 版本 2 下一步 »

您可以使用內建 Function: emb 來創建自己的plugin

from pyodide.http import pyfetch
import asyncio

params = await infer_params(
    conversation=CURRENT_CONVERSATION,
    description="""Using embedding model to generate emgedding for input text""",
    parameters={
        "type": "object",
        "properties": {
            "text_to_embed": {
                "type": "string",
                "description": "text to be embedded",
            }
        },
        "required": ["text_to_embed"],
    },
)

print(await emb(params['text_to_embed']))
  • 無標籤