Skip to content

Commit 0e2f15b

Browse files
committed
add yi-large default model
1 parent 7960342 commit 0e2f15b

File tree

2 files changed

+48
-17
lines changed

2 files changed

+48
-17
lines changed

docs/api/llm/01ai.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# 01ai API
2+
3+
::: distilabel.llms.oneai

src/distilabel/llms/oneai.py

+45-17
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,14 @@
2929

3030

3131
class OneAI(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.
3337
3438
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`.
3640
base_url: the base URL to use for the OneAI API requests. Defaults to `None`, which
3741
means that the value set for the environment variable `01AI_BASE_URL` will be used, or
3842
"https://api.01.ai/v1/chat/completions" if not set.
@@ -46,21 +50,45 @@ class OneAI(AsyncLLM):
4650
It is meant to be used internally.
4751
4852
Examples:
49-
50-
Generate text:
51-
52-
```python
53-
from distilabel.llms import OneAI
54-
55-
llm = OneAI(model="google/gemma-7b-it", api_key="api.key")
56-
57-
llm.load()
58-
59-
output = llm.generate(inputs=[[{"role": "user", "content": "Hello world!"}]])
60-
```
53+
Set Your API Key :
54+
55+
```sh
56+
EXPORT 01AI_BASE_URL "your_01ai_yi-api_key"
57+
```
58+
59+
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:"
74+
75+
result = next(
76+
text_gen.process(
77+
[{"instruction": metadata_prompt}]
78+
)
79+
)
80+
# result
81+
# [
82+
# {
83+
# 'instruction': 'your instruction',
84+
# 'model_name': 'yi-large',
85+
# 'generation': 'generation',
86+
# }
87+
# ]
88+
```
6189
"""
6290

63-
model: str
91+
model: Optional[str] = "yi-large"
6492
base_url: Optional[RuntimeParameter[str]] = Field(
6593
default_factory=lambda: os.getenv(
6694
"01AI_BASE_URL", "https://api.01.ai/v1/chat/completions"
@@ -94,7 +122,7 @@ def load(self) -> None:
94122
from openai import AsyncOpenAI
95123
except ImportError as ie:
96124
raise ImportError(
97-
"OpenAI Python client is not installed. Please install it using `pip install openai`."
125+
"01ai in Distillabel relies on the OpenAI Python client which is not installed. Please install it using `pip install openai`."
98126
) from ie
99127

100128
if self.api_key is None:
@@ -186,7 +214,7 @@ async def agenerate(
186214
for choice in completion.choices:
187215
if (content := choice.message.content) is None:
188216
self._logger.warning(
189-
f"Received no response using OpenAI client (model: '{self.model}')."
217+
f"Received no response using the 01ai client (model: '{self.model}')."
190218
f" Finish reason was: {choice.finish_reason}"
191219
)
192220
generations.append(content)

0 commit comments

Comments
 (0)