— No reviews yet
0 installs
15 views
0.0% view→install
Install
$ agentstack add skill-togethercomputer-skills-together-embeddings ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Are you the author of Together Embeddings? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claimAbout
Together Embeddings & Reranking
Overview
Use this skill for semantic retrieval components:
- create embeddings
- batch embeddings
- build retrieval or RAG pipelines
- rerank retrieved candidates
This skill is for retrieval plumbing, not for the final language-model response itself.
When This Skill Wins
- Build vector search or semantic similarity features
- Add embedding generation to a data pipeline
- Improve retrieval quality with reranking
- Assemble a retrieval stage before calling a chat model
Hand Off To Another Skill
- Use
together-chat-completionsfor the final answer-generation step - Use
together-batch-inferencefor very large offline embedding backfills - Use
together-dedicated-endpointswhen reranking requires a dedicated deployment
Quick Routing
- Embeddings API usage
- Read [references/api-reference.md](references/api-reference.md)
- Start with [scripts/embedandrerank.py](scripts/embedandrerank.py) or [scripts/embedandrerank.ts](scripts/embedandrerank.ts)
- Semantic search (embed, store, query)
- Start with [scripts/semanticsearch.py](scripts/semanticsearch.py) -- includes an in-memory vector store, cosine-similarity retrieval, and optional rerank
- RAG pipeline composition
- Start with [scripts/ragpipeline.py](scripts/ragpipeline.py)
- Model selection and rerank constraints
- Read [references/models.md](references/models.md)
Workflow
- Confirm that the user needs vectors or retrieval, not direct generation.
- Choose the embedding model and batch shape.
- Generate embeddings for corpus and query paths consistently.
- Retrieve candidates. An in-memory cosine-similarity store works for prototyping and small corpora (see
semantic_search.py). Use a dedicated vector database for production scale. - Rerank only when the extra latency and endpoint requirement are justified. When no dedicated rerank endpoint is available, cosine-similarity ranking is a reasonable fallback.
High-Signal Rules
- Python scripts require the Together v2 SDK (
together>=2.0.0). If the user is on an older version, they must upgrade first:uv pip install --upgrade "together>=2.0.0". - Keep embeddings and reranking conceptually separate; rerank is a second-stage precision step.
- Reranking in this repo assumes a dedicated endpoint. Do not promise serverless rerank unless the product changes. When no endpoint is available, fall back to cosine-similarity ranking.
- The embedding model has a 514-token context limit. Chunk longer documents before embedding.
- The
rag_pipeline.pyexample demonstrates retrieval plus generation; treat generation as a hand-off to chat completions. - Preserve model consistency across indexing and querying.
Resource Map
- API details: [references/api-reference.md](references/api-reference.md)
- Model guide: [references/models.md](references/models.md)
- Python embeddings example: [scripts/embedandrerank.py](scripts/embedandrerank.py)
- TypeScript embeddings example: [scripts/embedandrerank.ts](scripts/embedandrerank.ts)
- Python semantic search: [scripts/semanticsearch.py](scripts/semanticsearch.py)
- Python RAG pipeline: [scripts/ragpipeline.py](scripts/ragpipeline.py)
Official Docs
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: togethercomputer
- Source: togethercomputer/skills
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.