8 lines
203 B
Python
8 lines
203 B
Python
|
|
import config, embedding
|
||
|
|
text = "Saya lupa password di HRIS AFMS2"
|
||
|
|
vector = embedding.embed_text(config.model_url, config.model_name, text)
|
||
|
|
print("Text:")
|
||
|
|
print(text)
|
||
|
|
print("Vector:")
|
||
|
|
print(str(vector))
|