Metadata-Version: 2.4
Name: ragas_experimental
Version: 0.0.4
Summary: Experimental Ragas Evaluation UI and Library
Home-page: https://github.com/explodinggradients/ragas_experimental
Author: jjmachan
Author-email: jamesjithin97@gmail.com
License: Apache Software License 2.0
Keywords: nbdev jupyter notebook python
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
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: License :: OSI Approved :: Apache Software License
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: fastcore
Requires-Dist: tqdm
Requires-Dist: langfuse
Requires-Dist: instructor
Requires-Dist: pydantic
Requires-Dist: numpy
Requires-Dist: plotly
Requires-Dist: mlflow
Requires-Dist: gitpython
Provides-Extra: dev
Requires-Dist: pytest; extra == "dev"
Requires-Dist: black; extra == "dev"
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: keywords
Dynamic: license
Dynamic: license-file
Dynamic: provides-extra
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# Ragas Experimental


<!-- WARNING: THIS FILE WAS AUTOGENERATED! DO NOT EDIT! -->

## Usage

### Installation

Install latest from the GitHub
[repository](https://github.com/explodinggradients/ragas_experimental):

``` sh
$ pip install git+https://github.com/explodinggradients/ragas_experimental.git
```

or from [pypi](https://pypi.org/project/ragas_experimental/)

``` sh
$ pip install ragas_experimental
```

## Getting Started

First do signup to [beta.app.ragas.io](https://beta.app.ragas.io/) and
generate the App Token and put it in the as the env variable
`RAGAS_APP_TOKEN`.

``` python
import os
# ideally you load this from a .env file so as to not commit it to the repo
os.environ["RAGAS_APP_TOKEN"] = "api-key"
```

Now lets init a
[`Project`](https://explodinggradients.github.io/ragas_experimental/project/core.html#project)
in the App

``` python
from ragas_experimental import Project

project = Project.create("my-project")
project
```
