Instructions to use prajjwal1/ctrl_discovery_10 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use prajjwal1/ctrl_discovery_10 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="prajjwal1/ctrl_discovery_10")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("prajjwal1/ctrl_discovery_10") model = AutoModelForCausalLM.from_pretrained("prajjwal1/ctrl_discovery_10") - Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use prajjwal1/ctrl_discovery_10 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "prajjwal1/ctrl_discovery_10" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "prajjwal1/ctrl_discovery_10", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/prajjwal1/ctrl_discovery_10
- SGLang
How to use prajjwal1/ctrl_discovery_10 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 "prajjwal1/ctrl_discovery_10" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "prajjwal1/ctrl_discovery_10", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'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 "prajjwal1/ctrl_discovery_10" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "prajjwal1/ctrl_discovery_10", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use prajjwal1/ctrl_discovery_10 with Docker Model Runner:
docker model run hf.co/prajjwal1/ctrl_discovery_10
- Xet hash:
- 1646b1beb7120a389e36622b560a119a5991f16b7bf5e67c3ce737189c5e77ee
- Size of remote file:
- 6.55 GB
- SHA256:
- d4f6fb795d402e50b4b804e6dbf3f1f01688a11fb544a905b943aa7d37de8f9d
·
Xet efficiently stores Large Files inside Git, intelligently splitting files into unique chunks and accelerating uploads and downloads. More info.