Instructions to use sambanovasystems/starcoder-toolbench with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use sambanovasystems/starcoder-toolbench with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="sambanovasystems/starcoder-toolbench")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("sambanovasystems/starcoder-toolbench") model = AutoModelForCausalLM.from_pretrained("sambanovasystems/starcoder-toolbench", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use sambanovasystems/starcoder-toolbench with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "sambanovasystems/starcoder-toolbench" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "sambanovasystems/starcoder-toolbench", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/sambanovasystems/starcoder-toolbench
- SGLang
How to use sambanovasystems/starcoder-toolbench 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 "sambanovasystems/starcoder-toolbench" \ --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": "sambanovasystems/starcoder-toolbench", "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 "sambanovasystems/starcoder-toolbench" \ --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": "sambanovasystems/starcoder-toolbench", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use sambanovasystems/starcoder-toolbench with Docker Model Runner:
docker model run hf.co/sambanovasystems/starcoder-toolbench
Commit ·
3e9c897
1
Parent(s): ffdc02f
Update README.md
Browse files
README.md
CHANGED
|
@@ -119,5 +119,12 @@ We would like to express our gratitude to the great work done in [StarCoder: may
|
|
| 119 |
|
| 120 |
## Cite starcoder-toolbench
|
| 121 |
```
|
| 122 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 123 |
```
|
|
|
|
| 119 |
|
| 120 |
## Cite starcoder-toolbench
|
| 121 |
```
|
| 122 |
+
@misc{xu2023tool,
|
| 123 |
+
title={On the Tool Manipulation Capability of Open-source Large Language Models},
|
| 124 |
+
author={Qiantong Xu and Fenglu Hong and Bo Li and Changran Hu and Zhengyu Chen and Jian Zhang},
|
| 125 |
+
year={2023},
|
| 126 |
+
eprint={2305.16504},
|
| 127 |
+
archivePrefix={arXiv},
|
| 128 |
+
primaryClass={cs.CL}
|
| 129 |
+
}
|
| 130 |
```
|