text
stringlengths
1
93.6k
# ^^^ Header, vvv pointer
assert s.pop_str_len(4) == "NCM0"
self.ndp_len = s.pop_uint16()
self.ndp_next_idx = s.pop_uint16()
max_ndps = (self.ndp_len - 8) // 4
# ^^^ using // because we want to truncate
for i in range(max_ndps):
dg_idx = s.pop_uint16()
dg_len = s.pop_uint16()
if dg_idx == 0 and dg_len == 0:
break
self.ndps.append((dg_idx, dg_len))
self.dgs.append(
Ether(raw(pkt)[0x20 + dg_idx:0x20 + dg_idx + dg_len]))
else:
print("MBIM construction is not yet implemented.")
def __iter__(self):
for dg in self.dgs:
yield dg
def __len__(self):
return len(self.dgs)
# <FILESEP>
from ctransformers import Config
from request_body import ChatCompletionRequestBody, CompletionRequestBody
from get_env import get_env, get_env_or_none
from get_default_thread import get_default_thread
from log import log
from const import DEFAULT_MAX_TOKENS, DEFAULT_CONTEXT_LENGTH
THREADS = int(get_env("THREADS", str(get_default_thread())))
def get_config(
body: CompletionRequestBody | ChatCompletionRequestBody,
) -> Config:
# ggml only, follow ctransformers defaults
TOP_K = int(get_env("TOP_K", "40"))
# OpenAI API defaults https://platform.openai.com/docs/api-reference/chat/create#chat/create-top_p
TOP_P = float(get_env("TOP_P", "1.0"))
# OpenAI API defaults https://platform.openai.com/docs/api-reference/chat/create#chat/create-temperature
TEMPERATURE = float(get_env("TEMPERATURE", "1"))
# ggml only, follow ctransformers defaults
REPETITION_PENALTY = float(get_env("REPETITION_PENALTY", "1.1"))
# ggml only, follow ctransformers defaults
LAST_N_TOKENS = int(get_env("LAST_N_TOKENS", "64"))
# ggml only, follow ctransformers defaults
SEED = int(get_env("SEED", "-1"))
# ggml only, follow ctransformers defaults
BATCH_SIZE = int(get_env("BATCH_SIZE", "8"))
# OpenAI API defaults https://platform.openai.com/docs/api-reference/chat/create#chat/create-max_tokens
MAX_TOKENS = int(get_env("MAX_TOKENS", DEFAULT_MAX_TOKENS))
CONTEXT_LENGTH = int(get_env("CONTEXT_LENGTH", DEFAULT_CONTEXT_LENGTH))
if MAX_TOKENS > CONTEXT_LENGTH:
log.warning(
"MAX_TOKENS is greater than CONTEXT_LENGTH, setting MAX_TOKENS < CONTEXT_LENGTH"
)
# OpenAI API defaults https://platform.openai.com/docs/api-reference/chat/create#chat/create-stop
STOP = get_env_or_none("STOP")
log.debug("TOP_K: %s", TOP_K)
log.debug("TOP_P: %s", TOP_P)
log.debug("TEMPERATURE: %s", TEMPERATURE)
log.debug("REPETITION_PENALTY: %s", REPETITION_PENALTY)
log.debug("LAST_N_TOKENS: %s", LAST_N_TOKENS)
log.debug("SEED: %s", SEED)
log.debug("BATCH_SIZE: %s", BATCH_SIZE)
log.debug("THREADS: %s", THREADS)
log.debug("MAX_TOKENS: %s", MAX_TOKENS)
log.debug("STOP: %s", STOP)
top_k = body.top_k if body.top_k else TOP_K
top_p = body.top_p if body.top_p else TOP_P
temperature = body.temperature if body.temperature else TEMPERATURE
repetition_penalty = (
body.frequency_penalty
if body.frequency_penalty
else (
body.repetition_penalty if body.repetition_penalty else REPETITION_PENALTY
)
)
last_n_tokens = body.last_n_tokens if body.last_n_tokens else LAST_N_TOKENS
seed = body.seed if body.seed else SEED
batch_size = body.batch_size if body.batch_size else BATCH_SIZE
threads = body.threads if body.threads else THREADS
max_new_tokens = body.max_tokens if body.max_tokens else MAX_TOKENS
stop = body.stop if body.stop else STOP
config = Config(
top_k=top_k,
top_p=top_p,
temperature=temperature,
repetition_penalty=repetition_penalty,
last_n_tokens=last_n_tokens,
seed=seed,
batch_size=batch_size,