Skip to content

Commit 6022423

Browse files
authored
Merge pull request #20 from jjmachan/fix/settings
Fix/settings
2 parents 84b59c0 + f145e46 commit 6022423

26 files changed

+995
-760
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,5 @@ $ pip install ragas_experimental
2323
## Getting Started
2424

2525
First lets init a
26-
[`Project`](https://explodinggradients.github.io/ragas_annotator/project/core.html#project)
26+
[`Project`](https://explodinggradients.github.io/ragas_experimental/project/core.html#project)
2727
from notion.

nbs/nbdev.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ project:
33

44
website:
55
title: "ragas_experimental"
6-
site-url: "https://explodinggradients.github.io/ragas_annotator"
6+
site-url: "https://explodinggradients.github.io/ragas_experimental"
77
description: "Experimental Ragas Evaluation UI and Library"
88
repo-branch: main
9-
repo-url: "https://github.com/explodinggradients/ragas_annotator"
9+
repo-url: "https://github.com/explodinggradients/ragas_experimental"

ragas_experimental/__init__.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@
88
from .project.core import Project
99
import ragas_experimental.model.notion_typing as nmt
1010
from .model.notion_model import NotionModel
11-
from .model.pydantic_model import ExtendedPydanticBaseModel as BaseModel
11+
from ragas_experimental.model.pydantic_model import (
12+
ExtendedPydanticBaseModel as BaseModel,
13+
)
1214

1315
# just import to run the module
1416
import ragas_experimental.project.experiments

ragas_experimental/_modidx.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# Autogenerated by nbdev
22

33
d = { 'settings': { 'branch': 'main',
4-
'doc_baseurl': '/ragas_annotator',
4+
'doc_baseurl': '/ragas_experimental',
55
'doc_host': 'https://explodinggradients.github.io',
6-
'git_url': 'https://github.com/explodinggradients/ragas_annotator',
6+
'git_url': 'https://github.com/explodinggradients/ragas_experimental',
77
'lib_path': 'ragas_experimental'},
88
'syms': { 'ragas_experimental.backends.factory': { 'ragas_experimental.backends.factory.RagasApiClientFactory': ( 'backends/factory.html#ragasapiclientfactory',
99
'ragas_experimental/backends/factory.py'),

ragas_experimental/backends/factory.py

-1
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,3 @@ def create(
4242
base_url = "https://api.dev.app.ragas.io"
4343

4444
return RagasApiClient(app_token=app_token, base_url=base_url)
45-

0 commit comments

Comments
 (0)