Metadata-Version: 2.4
Name: hikigai-core
Version: 0.1.5
Summary: Shared foundation library for the Hikigai SDK ecosystem. Provides the core HTTP API client, structured exception hierarchy, and platform constants used by both hikigai-agentsdk and hikigai-appsdk. Not intended for direct use — install hikigai-agentsdk or hikigai-appsdk instead.
Project-URL: Homepage, https://hikigai.ai
Author-email: Sai Daya Shankar <sshankar@hikigai.ai>
License: MIT License
        
        Copyright (c) 2026 Hikigai
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
License-File: LICENSE
Keywords: agents,ai,hikigai,llm
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.10
Requires-Dist: httpx>=0.25.0
Requires-Dist: pydantic>=2.0.0
Requires-Dist: tenacity>=8.2.0
Description-Content-Type: text/markdown

# hikigai-core

Core utilities and shared components for Hikigai SDK ecosystem.

This package provides:
- HTTP client with connection pooling and retry logic
- Base exception classes
- Common type definitions
- Constants and configuration

**Note**: This is an internal library used by `hikigai-agentsdk` and `hikigai-appsdk`. 
Most users should install one of those packages directly instead of this core library.

## Installation

```bash
pip install hikigai-core
```

## Components

- `hikigai.core.api.client`: Optimized HTTP client (`APIClient`)
- `hikigai.core.exceptions`: Base exception hierarchy
- `hikigai.core.constants`: Shared constants
