-
Notifications
You must be signed in to change notification settings - Fork 666
Expand file tree
/
Copy pathlfm2.py
More file actions
30 lines (27 loc) · 685 Bytes
/
Copy pathlfm2.py
File metadata and controls
30 lines (27 loc) · 685 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
"""
LiquidAI LFM2.5 text generation with the Python SDK.
"""
from mistralrs import Architecture, ChatCompletionRequest, Runner, Which
runner = Runner(
which=Which.Plain(
model_id="LiquidAI/LFM2.5-230M",
arch=Architecture.Lfm2,
),
)
res = runner.send_chat_completion_request(
ChatCompletionRequest(
model="default",
messages=[
{
"role": "user",
"content": "Explain what graphene is in two short paragraphs.",
}
],
max_tokens=256,
presence_penalty=1.0,
top_p=0.1,
temperature=0.1,
)
)
print(res.choices[0].message.content)
print(res.usage)