Files
siemens_ragas/apps/sample_python
2026-06-12 14:02:15 +08:00
..
2026-06-12 14:02:15 +08:00
2026-06-12 14:02:15 +08:00

Sample Python Adapter

This directory shows the minimal shape expected by the python app adapter:

def run(question: str, **kwargs) -> dict:
    return {
        "answer": "...",
        "contexts": ["...", "..."],
        "raw_response": {...},
    }