@getabrain/mcp-server 0.1.2 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -65,7 +65,7 @@ var tools = [
|
|
|
65
65
|
},
|
|
66
66
|
{
|
|
67
67
|
name: "submit_query",
|
|
68
|
-
description: `
|
|
68
|
+
description: `Ask a human / add a human in the loop: submit a human-judgment query to real human workers and get its id back. Use this for any human-in-the-loop (HITL) step, human approval, or when your model needs a real human opinion. "type" is one of: ${QUERY_TYPES.join(", ")}. "content_data" is the type-specific payload (e.g. ab_test: {question, variant_a:{description}, variant_b:{description}}; yes_no: {question}; rating_scale: {question, scale_type, scale_min, scale_max}). Cost = (bid_amount_cents + bonus_amount_cents) * required_responses, deducted from your balance.`,
|
|
69
69
|
inputShape: {
|
|
70
70
|
type: z.enum(QUERY_TYPES),
|
|
71
71
|
title: z.string().min(5).max(255),
|