Spaces:
No application file
No application file
Commit
Β·
e16fb71
1
Parent(s):
924790f
Update README.md to rename toolkit and refine short description
Browse files- .python-version +1 -0
- README.md +2 -2
- hello.py +0 -0
- pyproject.toml +13 -0
- uv.lock +0 -0
.python-version
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
3.12
|
README.md
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
---
|
2 |
-
title:
|
3 |
emoji: π
|
4 |
colorFrom: gray
|
5 |
colorTo: green
|
@@ -7,7 +7,7 @@ sdk: gradio
|
|
7 |
sdk_version: 5.25.0
|
8 |
app_file: app.py
|
9 |
pinned: false
|
10 |
-
short_description: Quickly generate test sets and evaluate any RAG
|
11 |
---
|
12 |
|
13 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
1 |
---
|
2 |
+
title: RAG Evaluation Toolkit (RAGET)
|
3 |
emoji: π
|
4 |
colorFrom: gray
|
5 |
colorTo: green
|
|
|
7 |
sdk_version: 5.25.0
|
8 |
app_file: app.py
|
9 |
pinned: false
|
10 |
+
short_description: Quickly generate test sets and evaluate any RAG pipeline!
|
11 |
---
|
12 |
|
13 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
hello.py
ADDED
File without changes
|
pyproject.toml
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[project]
|
2 |
+
name = "rag-evaluation-toolkit"
|
3 |
+
version = "0.1.0"
|
4 |
+
description = "Add your description here"
|
5 |
+
readme = "README.md"
|
6 |
+
requires-python = ">=3.12"
|
7 |
+
dependencies = [
|
8 |
+
"docling>=2.30.0",
|
9 |
+
"giskard[rag]>=2.16.2",
|
10 |
+
"gradio[oauth]>=5.25.0",
|
11 |
+
"huggingface-hub>=0.30.2",
|
12 |
+
"llama-index>=0.12.30",
|
13 |
+
]
|
uv.lock
ADDED
The diff for this file is too large to render.
See raw diff
|
|