Skip to content

Commit f111519

Browse files
authored
docs: fix quickstart and readme (#55)
1 parent fc09372 commit f111519

File tree

2 files changed

+13
-21
lines changed

2 files changed

+13
-21
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -91,9 +91,9 @@ To read more about our metrics, checkout [docs](/docs/metrics.md).
9191
If you want to get more involved with Ragas, check out our [discord server](https://discord.gg/5djav8GGNZ). It's a fun community where we geek out about LLM, Retrieval, Production issues and more.
9292

9393
## 🔍 Open Analytics
94-
We track very basic usage metrics to guide us to figure out what our users want, what is working and what's not. As a young startup, we have to be brutally honest about this which is why we are tracking these metrics. But as an Open Startup we open-source all the data we collect. You can read more about this [here](https://github.com/explodinggradients/ragas/issues/49). If you want to take a look at exactly what we track, feel free to check the [code](./src/ragas/_analytics.py)
94+
We track very basic usage metrics to guide us to figure out what our users want, what is working and what's not. As a young startup, we have to be brutally honest about this which is why we are tracking these metrics. But as an Open Startup we open-source all the data we collect. You can read more about this [here](https://github.com/explodinggradients/ragas/issues/49). **Ragas doesnot track any information that can be used to identify you or your company**. You can take a look at exactly what we track in the [code](./src/ragas/_analytics.py)
9595

96-
You can disable usage-tracking if you want by setting the `RAGAS_DO_NOT_TRACK` flag to true.
96+
To disable usage-tracking you set the `RAGAS_DO_NOT_TRACK` flag to true.
9797

9898

9999
## :raising_hand_man: FAQ

docs/quickstart.ipynb

+11-19
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,15 @@
55
"id": "2e63f667",
66
"metadata": {},
77
"source": [
8-
"<a href=\"https://colab.research.google.com/github/explodinggradients/ragas/blob/main/docs/quickstart.ipynb\">\n",
9-
" <img alt=\"Open In Colab\" \n",
10-
" align=\"left\"\n",
11-
" src=\"https://colab.research.google.com/assets/colab-badge.svg\">\n",
12-
"</a>\n",
13-
"# Quickstart\n",
8+
"<p>\n",
9+
" <a href=\"https://colab.research.google.com/github/explodinggradients/ragas/blob/main/docs/quickstart.ipynb\">\n",
10+
" <img alt=\"Open In Colab\" \n",
11+
" align=\"left\"\n",
12+
" src=\"https://colab.research.google.com/assets/colab-badge.svg\">\n",
13+
" </a>\n",
14+
" <br>\n",
15+
" <h1> Quickstart </h1>\n",
16+
"</p>\n",
1417
"\n",
1518
"welcome to the ragas quickstart. We're going to get you up and running with ragas as qickly as you can so that you can go back to improving your Retrieval Augmented Generation pipelines while this library makes sure your changes are improving your entire pipeline.\n",
1619
"\n",
@@ -20,31 +23,20 @@
2023
{
2124
"cell_type": "code",
2225
"execution_count": 1,
23-
"id": "18274e1f",
26+
"id": "57585b55",
2427
"metadata": {},
2528
"outputs": [],
2629
"source": [
2730
"# if using colab uncomment this\n",
2831
"#!pip install ragas"
2932
]
3033
},
31-
{
32-
"cell_type": "code",
33-
"execution_count": 1,
34-
"id": "57585b55",
35-
"metadata": {},
36-
"outputs": [],
37-
"source": [
38-
"%load_ext autoreload\n",
39-
"%autoreload 2"
40-
]
41-
},
4234
{
4335
"cell_type": "markdown",
4436
"id": "c77789bb",
4537
"metadata": {},
4638
"source": [
47-
"Ragas also uses OpenAI for running a metric so make sure you have your openai key ready and available in your environment"
39+
"Ragas also uses OpenAI for running some metrics so make sure you have your openai key ready and available in your environment"
4840
]
4941
},
5042
{

0 commit comments

Comments
 (0)