Files
letta-server/memgpt/local_llm/constants.py

17 lines
546 B
Python

import memgpt.local_llm.llm_chat_completion_wrappers.airoboros as airoboros
DEFAULT_ENDPOINTS = {
"koboldcpp": "http://localhost:5001",
"llamacpp": "http://localhost:8080",
"lmstudio": "http://localhost:1234",
"ollama": "http://localhost:11434",
"webui-legacy": "http://localhost:5000",
"webui": "http://localhost:5000",
"vllm": "http://localhost:8000",
}
DEFAULT_OLLAMA_MODEL = "dolphin2.2-mistral:7b-q6_K"
DEFAULT_WRAPPER = airoboros.Airoboros21InnerMonologueWrapper
DEFAULT_WRAPPER_NAME = "airoboros-l2-70b-2.1"