Documentation Index
Fetch the complete documentation index at: https://docs.simular.ai/llms.txt
Use this file to discover all available pages before exploring further.
Class: GroundingModel
Defined in: index.d.ts:436 A visual-language grounding model that can locate concepts on images.Constructors
Constructor
new GroundingModel(): GroundingModel
Returns
GroundingModel
Accessors
name
Get Signature
get name(): string
Defined in: index.d.ts:466
The wire-level model identifier sent in the request body.
Returns
string
Methods
ground()
ground(Defined in: index.d.ts:480 Locatetarget,concept): [number,number]
concept on target and return zero-based pixel coordinates
[x, y]:
- If
targetis anImage, coordinates are in image-space. Normalized model outputs are scaled linearly onto[0, width - 1]and[0, height - 1]. - If
targetis aScreenshot, coordinates are in global physical screen space — suitable to feed directly into primitives that expect global screen coordinates (e.g.moveTo,clickAt).
target.ground(model, concept).
Parameters
target
Image | Screenshot
concept
string
Returns
[number, number]
availableAliases()
Defined in: index.d.ts:464 Every VLM model alias accepted bystaticavailableAliases():string[]
byAlias on this machine, deduplicated
and sorted alphabetically. Use to discover what aliases the loaded config
(bundled defaults plus any user provider files advertises.
Returns
string[]
byAlias()
Defined in: index.d.ts:448 Resolve a model alias against the loaded config (e.g.staticbyAlias(alias):GroundingModel
"ui_venus_30b",
"ui_tars_7b", or any alias declared by a user provider). Throws if
the alias is unknown.
Parameters
alias
string
Returns
GroundingModel
default()
Defined in: index.d.ts:442 First VLM model advertised by the first VLM provider in the loaded config. Throws if no provider in the loaded config advertises a VLM service.staticdefault():GroundingModel
Returns
GroundingModel
uiTars7B()
Defined in: index.d.ts:453 Convenience shim for the bundledstaticuiTars7B():GroundingModel
ui_tars_7b alias. Throws if no
provider advertises that alias.
Returns
GroundingModel
uiVenus30B()
Defined in: index.d.ts:458 Convenience shim for the bundledstaticuiVenus30B():GroundingModel
ui_venus_30b alias. Throws if no
provider advertises that alias.
Returns
GroundingModel
