https://github.com/baloise/ai-pylib
Python library for artificial intelligence
https://github.com/baloise/ai-pylib
Last synced: 8 days ago
JSON representation
Python library for artificial intelligence
- Host: GitHub
- URL: https://github.com/baloise/ai-pylib
- Owner: baloise
- License: apache-2.0
- Created: 2024-09-06T14:44:52.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-17T14:57:36.000Z (almost 2 years ago)
- Last Synced: 2025-02-22T21:27:00.544Z (over 1 year ago)
- Language: Python
- Size: 36.1 KB
- Stars: 0
- Watchers: 5
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# AI-PyLib
Python library for artificial intelligence
# Usage
```
pip install git+https://github.com/baloise/AI-PyLib.git
```
```python
from baloise_ai_pylib import ai_service
ais = ai_service.AIService()
print(ais.banner())
```
# Setup development environment
```
python3 -m venv .venv
. .venv/bin/activate
pip install --upgrade build
python3 -m build
pip install --editable .
```