get_comps
Find comparable Steam games for a given appid to validate revenue forecasts. Compares metadata like genres, tags, and platform support using vector similarity.
Instructions
Fetch top-K nearest-neighbor comparable Steam games for an appid.
Comps are surfaced via pgvector cosine-similarity over a 1024-dim BGE embedding of game metadata (genres, tags, language, platform support, multiplayer features). Useful for sanity-checking a forecast: if the nearest comps cluster in a tight revenue band, the cone is likely well-anchored; if they're dispersed, the cone correctly widens.
Args: appid: Steam app ID to find comps for. k: Number of comps to return (1-20, default 5).
Returns: Dict with appid + list of comps, each including release year, price, follower count, week-1 + lifetime revenue, cosine similarity.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| appid | Yes | ||
| k | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||