mirror of
https://github.com/Hopiu/llm.git
synced 2026-05-13 00:03:11 +00:00
7 lines
146 B
Python
7 lines
146 B
Python
|
|
import llm
|
||
|
|
|
||
|
|
|
||
|
|
def test_demo_plugin():
|
||
|
|
model = llm.get_embedding_model("embed-demo")
|
||
|
|
assert model.embed("hello world") == [5, 5] + [0] * 14
|