mirror of
https://github.com/katanemo/plano.git
synced 2026-04-25 00:36:34 +02:00
* integration * mopdify docker file * add params and fix python lint * fix empty context and tool calls * address comments * revert port * fix bug merge * fix environment * fix bug * fix compose * fix merge
13 lines
283 B
Python
13 lines
283 B
Python
from load_models import (
|
|
load_transformers,
|
|
load_ner_models,
|
|
load_toxic_model,
|
|
load_jailbreak_model,
|
|
)
|
|
|
|
print("installing transformers")
|
|
load_transformers()
|
|
print("installing ner models")
|
|
load_ner_models()
|
|
print("installing jailbreak models")
|
|
load_jailbreak_model()
|