Metadata-Version: 2.4
Name: ragas_experimental
Version: 0.3.1
Summary: Experimental extensions for Ragas
Author-email: jjmachan <jithin@explodinggradients.com>, ikka <shahul@explodinggradients.com>
License: Apache-2.0
Keywords: jupyter,notebook,python,evaluation,llm,ragas
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
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
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: tqdm
Requires-Dist: instructor
Requires-Dist: pydantic
Requires-Dist: numpy
Requires-Dist: gitpython
Requires-Dist: typer
Requires-Dist: rich
Provides-Extra: all
Requires-Dist: pandas; extra == "all"
Provides-Extra: examples
Requires-Dist: openai>=1.0.0; extra == "examples"
Provides-Extra: tracing
Requires-Dist: langfuse; extra == "tracing"
Requires-Dist: mlflow; extra == "tracing"
Provides-Extra: gdrive
Requires-Dist: google-api-python-client>=2.0.0; extra == "gdrive"
Requires-Dist: google-auth>=2.0.0; extra == "gdrive"
Requires-Dist: google-auth-oauthlib>=1.0.0; extra == "gdrive"

# 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
```
