Metadata-Version: 2.4
Name: neurocore-skill-tavily
Version: 0.1.0
Summary: Tavily smart web search skill for NeuroCore
Author: NeuroCore Contributors
License-Expression: Apache-2.0
Keywords: ai,neurocore,research,search,skill,tavily
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: Typing :: Typed
Requires-Python: >=3.13
Requires-Dist: neurocore-ai>=0.2.0
Requires-Dist: tavily-python>=0.5
Provides-Extra: dev
Requires-Dist: mypy>=1.8; extra == 'dev'
Requires-Dist: pytest-asyncio>=0.24; extra == 'dev'
Requires-Dist: pytest>=9.0.2; extra == 'dev'
Requires-Dist: ruff>=0.8; extra == 'dev'
Description-Content-Type: text/markdown

# neurocore-skill-tavily

Smart web search for NeuroCore via the [Tavily API](https://tavily.com).

```bash
pip install neurocore-skill-tavily
export TAVILY_API_KEY=tvly-...
```

```yaml
components:
  - name: search
    type: tavily
    config:
      max_results: 5
      search_depth: advanced
flow:
  type: sequential
  steps:
    - component: search
```

Reads `tavily_query`; writes `tavily_results` (list of `{title, url, content}`).
