Commit
•
2f12409
1
Parent(s):
2b4b309
fix: update import paths
Browse files- README.md +1 -1
- app.py +1 -1
- src/distilabel_dataset_generator/sft.py +1 -1
README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
---
|
2 |
title: Distilabel Dataset Generator
|
3 |
-
emoji:
|
4 |
colorFrom: purple
|
5 |
colorTo: gray
|
6 |
sdk: gradio
|
|
|
1 |
---
|
2 |
title: Distilabel Dataset Generator
|
3 |
+
emoji: ⚗️
|
4 |
colorFrom: purple
|
5 |
colorTo: gray
|
6 |
sdk: gradio
|
app.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
import gradio as gr
|
2 |
|
3 |
-
from distilabel_dataset_generator.sft import demo
|
4 |
|
5 |
demo = gr.TabbedInterface(
|
6 |
[demo],
|
|
|
1 |
import gradio as gr
|
2 |
|
3 |
+
from src.distilabel_dataset_generator.sft import demo
|
4 |
|
5 |
demo = gr.TabbedInterface(
|
6 |
[demo],
|
src/distilabel_dataset_generator/sft.py
CHANGED
@@ -6,7 +6,7 @@ from distilabel.llms import InferenceEndpointsLLM
|
|
6 |
from distilabel.pipeline import Pipeline
|
7 |
from distilabel.steps.tasks import MagpieGenerator, TextGeneration
|
8 |
|
9 |
-
from distilabel_dataset_generator.utils import OAuthToken, get_login_button
|
10 |
|
11 |
INFORMATION_SEEKING_PROMPT = (
|
12 |
"You are an AI assistant designed to provide accurate and concise information on a wide"
|
|
|
6 |
from distilabel.pipeline import Pipeline
|
7 |
from distilabel.steps.tasks import MagpieGenerator, TextGeneration
|
8 |
|
9 |
+
from src.distilabel_dataset_generator.utils import OAuthToken, get_login_button
|
10 |
|
11 |
INFORMATION_SEEKING_PROMPT = (
|
12 |
"You are an AI assistant designed to provide accurate and concise information on a wide"
|