File size: 216 Bytes
af25c62
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/env python
"""
RGB RAG Evaluation - Main Entry Point
Evaluates LLM abilities for RAG using the RGB benchmark with Groq's free API.
"""

from src.pipeline import main

if __name__ == "__main__":
    main()