search_ai_ml_jobs
Search for AI and machine learning job opportunities including internships and full-time roles across multiple job platforms with location filtering and keyword targeting.
Instructions
Search for AI/ML internships and full-time roles across multiple job sites
Input Schema
Name | Required | Description | Default |
---|---|---|---|
includeFullTime | No | Include full-time positions | |
includeInternships | No | Include internship positions | |
keywords | No | Additional keywords to search for (e.g., ["machine learning", "deep learning", "NLP"]) | |
location | No | Job location (e.g., "Remote", "San Francisco, CA", "New York, NY") | Remote |
maxResults | No | Maximum number of results to return |
Input Schema (JSON Schema)
{
"properties": {
"includeFullTime": {
"default": true,
"description": "Include full-time positions",
"type": "boolean"
},
"includeInternships": {
"default": true,
"description": "Include internship positions",
"type": "boolean"
},
"keywords": {
"default": [],
"description": "Additional keywords to search for (e.g., [\"machine learning\", \"deep learning\", \"NLP\"])",
"items": {
"type": "string"
},
"type": "array"
},
"location": {
"default": "Remote",
"description": "Job location (e.g., \"Remote\", \"San Francisco, CA\", \"New York, NY\")",
"type": "string"
},
"maxResults": {
"default": 50,
"description": "Maximum number of results to return",
"type": "number"
}
},
"required": [],
"type": "object"
}