ragas
ragas copied to clipboard
Evaluation framework for your Retrieval Augmented Generation (RAG) pipelines
# Problem - ragas is slow and unreliable 1. Ragas is not exploiting concurrency options provided via `ThreadPoolExecutor` and `asyncio` modules. This is because ragas took a batching approach to...
[x] I have checked the [documentation](https://docs.ragas.io/) and related resources and couldn't resolve my bug. **Describe the bug** I want to use a local language model with vllm to evaluate an...
lets say i am using llama2 model to evaluate my RAG Applications does ragas takes care to format the prompt how llama2 understands ? like wrapping the prompt something like...
**Describe the bug** I tried the simplest way to generate the datasets relevant to the specific document, but the progress hung. Ragas version: 0.1.4 Python version: 3.11 **Code to Reproduce**...
I am trying to generate syntetic data using Azure Open AI in a simple case: ``` test_dataset = generator.generate_with_langchain_docs( documents, test_size=1, with_debugging_logs=True, distributions={simple: 1}) ``` I have configured the Azure...
Hello, Firstly, thank you for this great framework and library! I installed your package and followed your notebook on using Ragas with Azure Open AI, but am running into an...
**Describe the bug** I am getting an error when using Bedrock embedding model with answer relevancy metric. Ragas version: 0.0.21 Python version: 3.10.8 **Code to Reproduce** from ragas import evaluate...
[ ] I have checked the [documentation](https://docs.ragas.io/) and related resources and couldn't resolve my bug. **Describe the bug** all instances in my evaluation set where context is [""], are getting...
**Describe the bug** I get ```NaN``` as faithfulness, because the json can't parse, also after several retries of the model. I think the cause is in the method `async def...
I am pretty newbie in RAGAS I'd like to evaluate the quality of summarization . I have long context and predicted summarization . How I can use RAGAS for this...