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 Settings
- 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
|
@@ -45,10 +45,15 @@ widget:
|
|
| 45 |
|
| 46 |

|
| 47 |
|
| 48 |
-
Given a goal and tools can Ai intelligently use the tools to reach the goal ?
|
| 49 |
-
|
| 50 |
-
|
| 51 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 52 |
Releasing `pip-code-bandit` and `pip_flow` a model and a library to manage and run goal oriented agentic system.
|
| 53 |
|
| 54 |
|
|
@@ -67,6 +72,7 @@ Releasing `pip-code-bandit` and `pip_flow` a model and a library to manage and r
|
|
| 67 |
6. code generation | doc
|
| 68 |
7. file recreated in json | any raw data
|
| 69 |
8. corrected generation | new instruction with error
|
|
|
|
| 70 |
-- instruction following , RL tuned.
|
| 71 |
```
|
| 72 |
|
|
@@ -79,8 +85,9 @@ The reward policy is around the concept of model going to a stable state of zero
|
|
| 79 |
In this set up the model, which was pre trained on code , function documentation and similar OS datasets ,was RL tuned for instruction following and reliability.
|
| 80 |
|
| 81 |
## License
|
| 82 |
-
|
| 83 |
The model is open source under apache 2.0. License
|
|
|
|
| 84 |
|
| 85 |
## Usage
|
| 86 |
|
|
@@ -115,4 +122,7 @@ pip install transformers
|
|
| 115 |
|
| 116 |
|
| 117 |
### Team
|
| 118 |
-
|
|
|
|
|
|
|
|
|
|
|
|
| 45 |
|
| 46 |

|
| 47 |
|
| 48 |
+
Given a goal and tools can Ai intelligently use the tools to reach the goal ?
|
| 49 |
+
|
| 50 |
+
What if it has a meagre 1.3b params/neurons akin to that of an owl ?
|
| 51 |
+
|
| 52 |
+
Can it follow instructions and plan to reach a goal ?
|
| 53 |
+
|
| 54 |
+
Apparently it can.
|
| 55 |
+
|
| 56 |
+
|
| 57 |
Releasing `pip-code-bandit` and `pip_flow` a model and a library to manage and run goal oriented agentic system.
|
| 58 |
|
| 59 |
|
|
|
|
| 72 |
6. code generation | doc
|
| 73 |
7. file recreated in json | any raw data
|
| 74 |
8. corrected generation | new instruction with error
|
| 75 |
+
|
| 76 |
-- instruction following , RL tuned.
|
| 77 |
```
|
| 78 |
|
|
|
|
| 85 |
In this set up the model, which was pre trained on code , function documentation and similar OS datasets ,was RL tuned for instruction following and reliability.
|
| 86 |
|
| 87 |
## License
|
| 88 |
+
```bash
|
| 89 |
The model is open source under apache 2.0. License
|
| 90 |
+
```
|
| 91 |
|
| 92 |
## Usage
|
| 93 |
|
|
|
|
| 122 |
|
| 123 |
|
| 124 |
### Team
|
| 125 |
+
|
| 126 |
+
```doc
|
| 127 |
+
Avi Kothari, Gyan Ranjan, Pratham Gupta, Ritvik Aryan Kalra, Soham Acharya
|
| 128 |
+
```
|