Metadata-Version: 2.1
Name: pebblo
Version: 0.1.5
Summary: Pebblo Gen-AI Data Analyzer
Author-email: Pebblo Authors <pebblo@daxa.ai>
Maintainer-email: Pebblo Maintainer <pebblo@daxa.ai>
Project-URL: Homepage, https://github.com/daxa-ai/pebblo
Project-URL: Bug Reports, https://github.com/daxa-ai/pebblo/issues
Project-URL: Funding, https://donate.pypi.org
Project-URL: Source, https://github.com/daxa-ai/pebblo/
Keywords: langchain,ai,rag
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: Other/Proprietary License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Python: >=3.11
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: fastapi ==0.109.0
Requires-Dist: uvicorn ==0.25.0
Requires-Dist: pydantic ==1.10.0a1
Requires-Dist: presidio-analyzer ==2.2.351
Requires-Dist: presidio-anonymizer ==2.2.351
Requires-Dist: torch ==2.1.2
Requires-Dist: transformers ==4.36.2
Requires-Dist: jinja2 >=3.1.3
Requires-Dist: weasyprint ==60.2
Provides-Extra: dev
Requires-Dist: check-manifest ; extra == 'dev'
Provides-Extra: test
Requires-Dist: coverage ; extra == 'test'

# Pebblo

## Build

```sh
git clone https://github.com/daxa-ai/pebblo.git
pip3 install build
python3 -m build --wheel
```

Build artifact as wheel package will be available in `dist/pebblo-<version>-py3-none-any.whl`. See the instruction below on how to install.

## Installation

### Pre-requisites

#### Mac OSX

```sh
brew install pango
```

#### Linux (debian/ubuntu)

```sh
sudo apt-get install libpango-1.0-0 libpangoft2-1.0-0
```

### Pebblo Daemon

### From wheel distribution
```sh
# copy wheel pkg pebblo-<version>-py3-none-any.whl from the build location to the target machine / location
pip install pebblo-<version>-py3-none-any.whl
```

### From TestPyPi

```sh
pip install -i https://test.pypi.org/simple/ pebblo
```

Note: above step will install a runnable python script named `pebblo`


## Run Pebblo daemon

```sh
pebblo
```
