Text Generation
Transformers
Safetensors
PEFT
English
code
code-generation
code-explanation
bug-detection
lora
4bit
qlora
fullstack
python
javascript
fastapi
codementor
conversational
Instructions to use likithyadavv/codementor-v2-fullstack with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use likithyadavv/codementor-v2-fullstack with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="likithyadavv/codementor-v2-fullstack") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("likithyadavv/codementor-v2-fullstack", dtype="auto") - PEFT
How to use likithyadavv/codementor-v2-fullstack with PEFT:
Task type is invalid.
- Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use likithyadavv/codementor-v2-fullstack with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "likithyadavv/codementor-v2-fullstack" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "likithyadavv/codementor-v2-fullstack", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/likithyadavv/codementor-v2-fullstack
- SGLang
How to use likithyadavv/codementor-v2-fullstack with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "likithyadavv/codementor-v2-fullstack" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "likithyadavv/codementor-v2-fullstack", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "likithyadavv/codementor-v2-fullstack" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "likithyadavv/codementor-v2-fullstack", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use likithyadavv/codementor-v2-fullstack with Docker Model Runner:
docker model run hf.co/likithyadavv/codementor-v2-fullstack
- Xet hash:
- d3f835122bddb470f53048ff36f1a5116791b8f3a003f9d17b3b03b0b81cc5fe
- Size of remote file:
- 11.4 MB
- SHA256:
- 3fd169731d2cbde95e10bf356d66d5997fd885dd8dbb6fb4684da3f23b2585d8
·
Xet efficiently stores Large Files inside Git, intelligently splitting files into unique chunks and accelerating uploads and downloads. More info.