tune-basic-toolset
Version:
Basic toolset for tune
25 lines (24 loc) • 567 B
JSON
{
"description": "Does a websearch using llm",
"parameters": {
"type": "object",
"properties": {
"text": {
"type": "string",
"description": "web search query"
},
"model": {
"type": "string",
"enum": [
"perplexity/sonar",
"perplexity/sonar-pro",
"gpt-5-search-api",
"gpt-4o-search-preview",
"gpt-4o-mini-search-preview"
],
"description": "model to do websearch, default is perplexity/sonar"
}
},
"required": ["text"]
}
}