File tree Expand file tree Collapse file tree 8 files changed +17
-17
lines changed Expand file tree Collapse file tree 8 files changed +17
-17
lines changed Original file line number Diff line number Diff line change 2525 "outputs" : [],
2626 "source" : [
2727 " #| export\n " ,
28+ " import typing as t\n " ,
29+ " \n " ,
2830 " from ragas_experimental.backends.ragas_api_client import RagasApiClient"
2931 ]
3032 },
7072 ],
7173 "metadata" : {
7274 "kernelspec" : {
73- "display_name" : " .venv " ,
75+ "display_name" : " python3 " ,
7476 "language" : " python" ,
7577 "name" : " python3"
76- },
77- "language_info" : {
78- "name" : " python" ,
79- "version" : " 3.12.8"
8078 }
8179 },
8280 "nbformat" : 4 ,
Original file line number Diff line number Diff line change 22 output-dir : _docs
33
44website :
5- title : " ragas_annotator "
5+ title : " ragas_experimental "
66 site-url : " https://explodinggradients.github.io/ragas_annotator"
77 description : " Experimental Ragas Evaluation UI and Library"
88 repo-branch : main
Original file line number Diff line number Diff line change 66__all__ = ['RagasApiClientFactory' ]
77
88# %% ../../nbs/backends/factory.ipynb 2
9+ import typing as t
10+
911from .ragas_api_client import RagasApiClient
1012
1113# %% ../../nbs/backends/factory.ipynb 3
Original file line number Diff line number Diff line change 1- from ragas_annotator .embedding .base import BaseEmbedding
2- from ragas_annotator .embedding .base import ragas_embedding
1+ from ragas_experimental .embedding .base import BaseEmbedding
2+ from ragas_experimental .embedding .base import ragas_embedding
33
44__all__ = ['ragas_embedding' ,'BaseEmbedding' ]
Original file line number Diff line number Diff line change 1- from ragas_annotator .llm .llm import RagasLLM , ragas_llm
1+ from ragas_experimental .llm .llm import RagasLLM , ragas_llm
22
33__all__ = ["RagasLLM" , "ragas_llm" ]
Original file line number Diff line number Diff line change 1- from ragas_annotator .metric .result import MetricResult
2- from ragas_annotator .metric .base import Metric
3- from ragas_annotator .metric .discrete import DiscreteMetric
4- from ragas_annotator .metric .numeric import NumericMetric
5- from ragas_annotator .metric .ranking import RankingMetric
1+ from ragas_experimental .metric .result import MetricResult
2+ from ragas_experimental .metric .base import Metric
3+ from ragas_experimental .metric .discrete import DiscreteMetric
4+ from ragas_experimental .metric .numeric import NumericMetric
5+ from ragas_experimental .metric .ranking import RankingMetric
66
77__all__ = ['MetricResult' ,
88 'Metric' ,
Original file line number Diff line number Diff line change 1414
1515from .core import Project
1616from ..model .notion_model import NotionModel
17- import ragas_annotator .model .notion_typing as nmt
17+ import ragas_experimental .model .notion_typing as nmt
1818from ..experiment import Experiment
1919from ..dataset import Dataset
2020
Original file line number Diff line number Diff line change 1- from ragas_annotator .prompt .base import Prompt
2- from ragas_annotator .prompt .dynamic_few_shot import DynamicFewShotPrompt
1+ from ragas_experimental .prompt .base import Prompt
2+ from ragas_experimental .prompt .dynamic_few_shot import DynamicFewShotPrompt
33
44
55__all__ = ['Prompt' , 'DynamicFewShotPrompt' ]
You can’t perform that action at this time.
0 commit comments