Our flagship CHAT models
Collection
This is a collection of all our flagship chat models to make it more easy for you! • 3 items • Updated
llm.create_chat_completion(
messages = [
{
"role": "user",
"content": "What is the capital of France?"
}
]
)Improved facts, chat instructions and coding!
Hey there! Welcome to Apex 1.6 Instruct 350M! We finetuned our base model of Apex 1 350M again! We now used a 2:1 ratio between Alpaca-Cleaned and Fineweb-Edu-10BT for anti-forgetting.
You can download the apex_1.6.gguf or use ollama run hf.co/LH-Tech-AI/Apex-1.6-Instruct-350M. And you can also use it in LM Studio for example, just by searching for "Apex 1.6".
Have fun! :D
We're not able to determine the quantization variants.
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="LH-Tech-AI/Apex-1.6-Instruct-350M", filename="apex_1.6.gguf", )