You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: src/distilabel/llms/oneai.py
+45-17
Original file line number
Diff line number
Diff line change
@@ -29,10 +29,14 @@
29
29
30
30
31
31
classOneAI(AsyncLLM):
32
-
"""OneAI LLM implementation running the async API client of OpenAI.
32
+
"""The 01.AI API platform enables developers to integrate advanced natural language processing capabilities into their own applications. Developers can utilize the AI capabilities of the Yi series LLMs to perform a variety of tasks, such as text generation, language translation, content summarization, logical reasoning, mathematical calculation, and code generation.
33
+
34
+
The 01.AI API platform provides flexible calling methods, supports various programming languages, and can be customized with features to meet the needs of different scenarios. Both individual and enterprise developers can unlock new approaches to innovate, improve user experience and drive business growth.
35
+
36
+
In addition, the 01.AI API platform also provides detailed documentation and sample code to help developers quickly get started and utilize the capabilities of the Yi series LLMs effectively.
33
37
34
38
Attributes:
35
-
model: the model name to use for the LLM, e.g., `google/gemma-7b-it`.
39
+
model: the model name to use for the LLM, e.g., `yi-large`.
36
40
base_url: the base URL to use for the OneAI API requests. Defaults to `None`, which
37
41
means that the value set for the environment variable `01AI_BASE_URL` will be used, or
38
42
"https://api.01.ai/v1/chat/completions" if not set.
Generate Json Outputs you can use in "function call" pipelines:
60
+
61
+
```python
62
+
from distilabel.steps.tasks import TextGeneration
63
+
from distilabel.llms.huggingface import InferenceEndpointsLLM
64
+
65
+
text_gen = TextGeneration(
66
+
llm = OneAI(api_key="api.key") # yi-large is the default model
67
+
)
68
+
69
+
text_gen.load()
70
+
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
+
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:"
0 commit comments