submit_agent_targeting
Persist targeting artifacts (keywords/subreddits) and return policy/preview. Prerequisites: - prompt pack must be acknowledged for `session_id` - artifacts should already be saved for best results Typical next step: - approve targeting (done automatically by `run_full_agentic_onboarding` when enabled) Formats: - keywords: list[str] - subreddit_groups: [{'subreddits': ['name1','name2']}]
Remote signal-found/reddit-outreach
Other tools also called submit_agent_targeting?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"keywords": {
"anyOf": [
{
"type": "array",
"items": {
"type": "string"
}
},
{
"type": "null"
}
],
"title": "Keywords",
"default": null
},
"client_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Client Id",
"default": null
},
"session_id": {
"type": "string",
"title": "Session Id"
},
"product_slug": {
"type": "string",
"title": "Product Slug"
},
"subreddit_groups": {
"anyOf": [
{
"type": "array",
"items": {
"type": "object",
"additionalProperties": true
}
},
{
"type": "null"
}
],
"title": "Subreddit Groups",
"default": null
},
"keyword_search_params": {
"anyOf": [
{
"type": "object",
"additionalProperties": true
},
{
"type": "null"
}
],
"title": "Keyword Search Params",
"default": null
}
}
}