Source code for tooluniverse.tools.OpenAIRE_search_publications

"""
OpenAIRE_search_publications

Search OpenAIRE Explore for research products including publications, datasets, and software. Ope...
"""

from typing import Any, Optional, Callable
from ._shared_client import get_shared_client


[docs] def OpenAIRE_search_publications( query: str, max_results: int, type: str, *, stream_callback: Optional[Callable[[str], None]] = None, use_cache: bool = False, validate: bool = True, ) -> list[Any]: """ Search OpenAIRE Explore for research products including publications, datasets, and software. Ope... Parameters ---------- query : str Search query for OpenAIRE research products. Use keywords to search across ti... max_results : int Maximum number of results to return. Default is 10, maximum is 100. type : str Type of research product to search: 'publications', 'datasets', or 'software'... stream_callback : Callable, optional Callback for streaming output use_cache : bool, default False Enable caching validate : bool, default True Validate parameters Returns ------- list[Any] """ # Handle mutable defaults to avoid B006 linting error return get_shared_client().run_one_function( { "name": "OpenAIRE_search_publications", "arguments": {"query": query, "max_results": max_results, "type": type}, }, stream_callback=stream_callback, use_cache=use_cache, validate=validate, )
__all__ = ["OpenAIRE_search_publications"]