Skip to content

Commit 888c0b6

Browse files
committed
improve example
1 parent aa1b4c9 commit 888c0b6

File tree

1 file changed

+16
-18
lines changed

1 file changed

+16
-18
lines changed

src/distilabel/llms/oneai.py

+16-18
Original file line numberDiff line numberDiff line change
@@ -60,31 +60,29 @@ class OneAI(AsyncLLM):
6060
6161
```python
6262
from distilabel.steps.tasks import TextGeneration
63+
from distilabel.pipeline import Pipeline
6364
from distilabel.llms.oneai import OneAI
6465
65-
text_gen = TextGeneration(
66-
llm = OneAI(api_key="api.key") # yi-large is the default model
67-
)
6866
69-
text_gen.load()
67+
with Pipeline(name="pipeline") as pipeline:
68+
text_gen = TextGeneration(
69+
llm = OneAI(api_key="sk-01ww0611-qitFVu88O6") # yi-large is the default model
70+
)
7071
71-
wordphrases = "During his presidency, a number of improvements to the campus were made. The Georgetown University Hospital was opened and the first patient was accepted."
72+
text_gen.load()
7273
73-
metadata_prompt = "WORD PHRASES:\n\n{wordphrases}\n\n you will recieve a text or a question, produce metadata operator pairs for the text . ONLY PROVIDE THE FINAL JSON , DO NOT PRODUCE ANY ADDITION INSTRUCTION , ONLY PRODUCE ONE METADATA STRING PER OPERATOR:"
74+
metadata_prompt = "WORD PHRASES:\n\nDuring his presidency, a number of improvements to the campus were made. The Georgetown University Hospital was opened and the first patient was accepted.\n\n you will recieve a text or a question, produce metadata operator pairs for the text . ONLY PROVIDE THE FINAL JSON , DO NOT PRODUCE ANY ADDITION INSTRUCTION , ONLY PRODUCE ONE METADATA STRING PER OPERATOR:"
7475
75-
result = next(
76-
text_gen.process(
77-
[{"instruction": metadata_prompt}]
76+
result = next(
77+
text_gen.process(
78+
[{"instruction": metadata_prompt}]
79+
)
7880
)
79-
)
80-
# result
81-
# [
82-
# {
83-
# 'instruction': 'your instruction',
84-
# 'model_name': 'yi-large',
85-
# 'generation': 'generation',
86-
# }
87-
# ]
81+
82+
print(result)
83+
# [{'instruction': 'WORD PHRASES:\n\nDuring his presidency, a number of improvements to the campus were made. The Georgetown University Hospital was opened and the first patient was accepted.\n\n you will recieve a text or a question, produce metadata operator pairs for the text . ONLY PROVIDE THE FINAL JSON , DO NOT PRODUCE ANY ADDITION INSTRUCTION , ONLY PRODUCE ONE METADATA STRING PER OPERATOR:', 'generation': '```json\n{\n "entities": [\n {\n "entity": "Georgetown University Hospital",\n "start": 4,\n "end": 27,\n "type": "Organization"\n },\n {\n "entity": "opened",\n "start": 28,\n "end": 34,\n "type": "Event"\n },\n {\n "entity": "the first patient",\n "start": 35,\n "end": 48,\n', 'distilabel_metadata': {'raw_output_text_generation_0': '```json\n{\n "entities": [\n {\n "entity": "Georgetown University Hospital",\n "start": 4,\n "end": 27,\n "type": "Organization"\n },\n {\n "entity": "opened",\n "start": 28,\n "end": 34,\n "type": "Event"\n },\n {\n "entity": "the first patient",\n "start": 35,\n "end": 48,\n'}, 'model_name': 'yi-large'}]
84+
85+
8886
```
8987
"""
9088

0 commit comments

Comments
 (0)