agently-embeddings

Installation
SKILL.md

Agently Embeddings

This skill covers embedding requests in Agently. It focuses on OpenAICompatible embeddings setup, request shape, input batching, async usage, parsed vector results, and the embedding-agent handoff used by vector-store integrations. It does not cover general chat/completions setup, structured output control, prompt-template management, or full retrieval pipeline design.

Prerequisite: Agently >= 4.0.8.5.

Agently is async-first at the runtime layer. Prefer async_start() or async_get_data() when the caller can use async APIs. Use batching first for texts that belong to one embeddings job, then use async concurrency for overlapping embedding jobs.

Scope

Use this skill for:

  • configuring OpenAICompatible with model_type="embeddings"
  • choosing between base_url, full_url, auth, proxy, timeout, client_options, and request_options for embeddings
  • understanding that embeddings requests are built from input, not from chat-style prompt assembly
  • sending one text or a batch of texts through input(...)
  • understanding how non-scalar input is serialized before it is sent
  • consuming parsed embedding vectors through start(), get_data(), async_start(), or async_get_data()
  • understanding the parsed result shape for single-input and batch-input requests
Related skills

More from agentera/agently-skills

Installs
1
GitHub Stars
8
First Seen
Mar 11, 2026