Text Generation
Transformers
Safetensors
PyTorch
English
llama
python
java
cpp
sql
function calling
unit tests
causalLM
codeLLAMA modified archi
document
code
code2doc
instruction_tuned
basemodel
docstring
documentation
text-generation-inference
plan
planner
conversational
Instructions to use PipableAI/pip-code-bandit with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use PipableAI/pip-code-bandit with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="PipableAI/pip-code-bandit") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("PipableAI/pip-code-bandit") model = AutoModelForCausalLM.from_pretrained("PipableAI/pip-code-bandit") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use PipableAI/pip-code-bandit with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "PipableAI/pip-code-bandit" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "PipableAI/pip-code-bandit", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/PipableAI/pip-code-bandit
- SGLang
How to use PipableAI/pip-code-bandit 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 "PipableAI/pip-code-bandit" \ --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": "PipableAI/pip-code-bandit", "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 "PipableAI/pip-code-bandit" \ --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": "PipableAI/pip-code-bandit", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use PipableAI/pip-code-bandit with Docker Model Runner:
docker model run hf.co/PipableAI/pip-code-bandit
Update README.md
Browse files
README.md
CHANGED
|
@@ -148,7 +148,13 @@ from transformers import AutoModelForCausalLM, AutoTokenizer
|
|
| 148 |
from accelerate import Accelerator
|
| 149 |
model =AutoModelForCausalLM.from_pretrained("PipableAI/pip-code-bandit",torch_dtype=torch.bfloat16,device_map="auto")
|
| 150 |
tokenizer = tokenizer = AutoTokenizer.from_pretrained("PipableAI/pip-code-bandit")
|
| 151 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 152 |
inputs = tokenizer(prompt, return_tensors="pt").to("cuda")
|
| 153 |
outputs = model.generate(**inputs, max_new_tokens=new_tokens)
|
| 154 |
out = (
|
|
@@ -159,8 +165,15 @@ out = (
|
|
| 159 |
|
| 160 |
### Prompt
|
| 161 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 162 |
|
| 163 |
-
|
|
|
|
|
|
|
|
|
|
| 164 |
|
| 165 |
### Team
|
| 166 |
|
|
|
|
| 148 |
from accelerate import Accelerator
|
| 149 |
model =AutoModelForCausalLM.from_pretrained("PipableAI/pip-code-bandit",torch_dtype=torch.bfloat16,device_map="auto")
|
| 150 |
tokenizer = tokenizer = AutoTokenizer.from_pretrained("PipableAI/pip-code-bandit")
|
| 151 |
+
new_tokens = 600
|
| 152 |
+
prompt = """
|
| 153 |
+
<question>
|
| 154 |
+
Generate a python function for adding two numbers.
|
| 155 |
+
</question>
|
| 156 |
+
<response>
|
| 157 |
+
"""
|
| 158 |
inputs = tokenizer(prompt, return_tensors="pt").to("cuda")
|
| 159 |
outputs = model.generate(**inputs, max_new_tokens=new_tokens)
|
| 160 |
out = (
|
|
|
|
| 165 |
|
| 166 |
### Prompt
|
| 167 |
|
| 168 |
+
```python
|
| 169 |
+
prompt = f"""<example_response>{--question , --query}</example_response><function_code>{code}</function_code>
|
| 170 |
+
<question>Give one line description of the python code above in natural language.</question>
|
| 171 |
+
<doc>"""
|
| 172 |
|
| 173 |
+
prompt = f"""<example_response>{example of some --question: , --query}</example_response><schema>{schema with cols described}</schema>
|
| 174 |
+
<question>Write a sql query to ....</question>
|
| 175 |
+
<sql>"""
|
| 176 |
+
```
|
| 177 |
|
| 178 |
### Team
|
| 179 |
|