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") - 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 ·
1f18ffa
1
Parent(s): 3e9c897
Update README.md
Browse files
README.md
CHANGED
|
@@ -22,7 +22,7 @@ starcoder-toolbench is a 15 billion parameter model used for api based action ge
|
|
| 22 |
### Basic Information
|
| 23 |
|
| 24 |
<!-- Provide the basic links for the model. -->
|
| 25 |
-
- **Paper**: [link]
|
| 26 |
- **Github**: [link](https://github.com/sambanova/toolbench)
|
| 27 |
|
| 28 |
|
|
@@ -85,7 +85,7 @@ I have the following set of API:\n\n# To set the location for hotel search, give
|
|
| 85 |
|
| 86 |
<!-- This should link to a Data Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
|
| 87 |
|
| 88 |
-
The training data is curated for the 8 tasks in ToolBench. See Appendix A of the [paper](
|
| 89 |
|
| 90 |
|
| 91 |
### Training Procedure
|
|
|
|
| 22 |
### Basic Information
|
| 23 |
|
| 24 |
<!-- Provide the basic links for the model. -->
|
| 25 |
+
- **Paper**: [link](https://arxiv.org/abs/2305.16504)
|
| 26 |
- **Github**: [link](https://github.com/sambanova/toolbench)
|
| 27 |
|
| 28 |
|
|
|
|
| 85 |
|
| 86 |
<!-- This should link to a Data Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
|
| 87 |
|
| 88 |
+
The training data is curated for the 8 tasks in ToolBench. See Appendix A of the [paper](https://arxiv.org/abs/2305.16504) for task details and Appendix C.1 for the training data curation details. In total, there are 9704 training samples, organized in all-shot format as described in Appendix C.2. Here is the [download link](https://drive.google.com/file/d/1lUatLGnSVhfy1uVIPEQ7qCoLtnCIXi2O/view?usp=sharing) to the training data.
|
| 89 |
|
| 90 |
|
| 91 |
### Training Procedure
|