Metadata-Version: 2.4
Name: llama-index-tools-globalcheck
Version: 0.1.0
Summary: llama-index tools globalcheck integration
Author: Your Name
Author-email: hello@globalcheck.ai
Requires-Python: >=3.8.1,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Requires-Dist: llama-index-core (>=0.10.1,<0.11.0)
Requires-Dist: requests (>=2.31.0,<3.0.0)
Description-Content-Type: text/markdown

# GlobalCheck Tool

This tool allows LlamaIndex agents to deterministically verify international trade compliance before executing purchases or shipments.

## Usage

This tool requires an API Key for GlobalCheck (available on RapidAPI).

```python
from llama_index.tools.globalcheck import GlobalCheckToolSpec
from llama_index.agent.openai import OpenAIAgent

tool_spec = GlobalCheckToolSpec(api_key="your-rapidapi-key")

agent = OpenAIAgent.from_tools(tool_spec.to_tool_list())

agent.chat("Can I ship 50 lithium batteries from CN to the US?")
```

