File size: 495 Bytes
c6907ac
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import pprint
from ragas.testset.evolutions import simple, reasoning, multi_context
class RagasState:
    def __init__(self):
        self.chunk_size = 600
        self.chunk_overlap = 50
        self.chunks = []
        self.generator_llm = "gpt-4"
        self.critic_llm = "gpt-4o-mini"
        self.distributions = {
            simple: 0.5,
            multi_context: 0.4,
            reasoning: 0.1
        }
        self.num_questions = 3
        self.testset_df = None