mirror of
https://github.com/katanemo/plano.git
synced 2026-04-29 02:46:28 +02:00
* first init * fix * fix test * new implemenetation * fix bug * fix bug * fix bug * address issue * address issues * address comments * fix test * fix * move constatns * remove consts
38 lines
1.2 KiB
Python
38 lines
1.2 KiB
Python
import app.commons.globals as glb
|
|
import app.commons.utilities as utils
|
|
import app.loader as loader
|
|
|
|
from app.function_calling.model_handler import ArchFunctionHandler
|
|
from app.prompt_guard.model_handler import ArchGuardHanlder
|
|
|
|
logger = utils.get_model_server_logger()
|
|
|
|
arch_function_hanlder = ArchFunctionHandler()
|
|
PREFILL_LIST = ["May", "Could", "Sure", "Definitely", "Certainly", "Of course", "Can"]
|
|
PREFILL_ENABLED = True
|
|
TOOL_CALL_TOKEN = "<tool_call>"
|
|
arch_function_endpoint = "https://api.fc.archgw.com/v1"
|
|
arch_function_client = utils.get_client(arch_function_endpoint)
|
|
arch_function_generation_params = {
|
|
"temperature": 0.2,
|
|
"top_p": 1.0,
|
|
"top_k": 50,
|
|
"max_tokens": 512,
|
|
"stop_token_ids": [151645],
|
|
# "top_logprobs": 10,
|
|
}
|
|
|
|
arch_guard_model_type = {
|
|
"cpu": "katanemo/Arch-Guard-cpu",
|
|
"cuda": "katanemo/Arch-Guard",
|
|
"mps": "katanemo/Arch-Guard",
|
|
}
|
|
|
|
# Model definition
|
|
embedding_model = loader.get_embedding_model()
|
|
zero_shot_model = loader.get_zero_shot_model()
|
|
|
|
prompt_guard_dict = loader.get_prompt_guard(arch_guard_model_type[glb.DEVICE])
|
|
|
|
arch_guard_handler = ArchGuardHanlder(model_dict=prompt_guard_dict)
|
|
# Patterns for function name and parameter parsing
|