neurometric/text-to-sql
Compare every TrustedRouter route for neurometric/text-to-sql, including token pricing, context limits, privacy policy, regional availability, measured uptime, and API support.
neurometric/text-to-sql
| Publisher | Neurometric AIneurometric |
|---|---|
| AI IQ | No AI IQ profile matched yet. |
| Context | 32,768 tokens |
| Providers | |
| Credits routes | 1 provider route |
| Modes | chat US providers |
| Billing | Credits |
How to use neurometric/text-to-sql
Converts a natural-language question into one read-only SQL query using only the database dialect and schema supplied by the caller.
| Input | Put plain text in the user message with three labeled sections: DIALECT, SCHEMA, and QUESTION. DIALECT identifies the SQL engine. SCHEMA contains the relevant tables, columns, keys, and relationships. QUESTION states the requested result, including exact output columns and ordering when required. |
|---|---|
| Output | Returns SQL text only. The output is exactly one read-only SELECT or WITH statement grounded in the supplied schema. Write operations and multiple statements are rejected. Applications should still validate the query and execute it using read-only database credentials. |
Example input
DIALECT: SQLite
SCHEMA:
CREATE TABLE customers (
id INTEGER PRIMARY KEY,
name TEXT,
plan TEXT
);
QUESTION:
How many enterprise customers are there?
Example output
SELECT COUNT(*) AS enterprise_customer_count
FROM customers
WHERE plan = 'enterprise'
Current route evidence
Live leaderboardRecent provider-route uptime spans not enough data across 1 route and 1 provider. Price comes from the current Credits catalog. Speed and uptime come from routed probes rather than vendor claims.
Providers serving this model
Sorted by lowest combined prompt and completion price. Use
"provider": {"sort": "throughput"} in the request body
(or append :nitro to the model id) to route to the
fastest provider instead.
Trust boundary: TR router attestation verifies the TrustedRouter gateway only. Provider policy separately describes the upstream model host's retention, confidential compute, and E2EE posture.
| Provider | Input | Cached input | Output | TR router attested | Provider policy |
|---|---|---|---|---|---|
| Neurometric AIneurometric | $0.05275/1M | Not published | $0.1266/1M | yes | no verified privacy claim |
Endpoint JSON: https://api.trustedrouter.com/v1/models/neurometric/text-to-sql/endpoints
Compare neurometric/text-to-sql
All comparisons- DeepSeek: DeepSeek V4 Flash 0423 vs neurometric/text-to-sql18 combined provider routes
Questions
What model ID should I use for neurometric/text-to-sql?
Use neurometric/text-to-sql as the model field with the TrustedRouter OpenAI-compatible API. Credits routing and provider fallback happen behind that model ID.
Which providers serve neurometric/text-to-sql?
TrustedRouter currently lists Neurometric AI for neurometric/text-to-sql. Provider availability and routing eligibility can change as catalog and health data update.
How much does neurometric/text-to-sql cost through TrustedRouter?
The current lowest Credits input price is $0.05275/1M and the lowest Credits output price is $0.1266/1M. Prices are per one million tokens and come from the current route catalog.
How do I require zero data retention for neurometric/text-to-sql?
Set provider.min_privacy to zdr on the request. TrustedRouter considers only routes with a recorded zero-data-retention posture and fails closed if no eligible route remains.