8 lines
236 B
Python
8 lines
236 B
Python
import config, lib.ragroleplay as ragroleplay
|
|
text = "Saya lupa password"
|
|
vector = ragroleplay.embed_text(config.ragroleplay_model_url, config.ragroleplay_model_name, text)
|
|
print("Text:")
|
|
print(text)
|
|
print("Vector:")
|
|
print(str(vector))
|