stevelionheart commited on
Commit
ffbba0a
·
verified ·
1 Parent(s): ea292b6

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +17 -10
README.md CHANGED
@@ -110,18 +110,25 @@ transformers chat localhost:8000 --model-name-or-path Tesleum/Claude-OSS
110
  vLLM recommends using [uv](https://docs.astral.sh/uv/) for Python dependency management. You can use vLLM to spin up an OpenAI-compatible webserver. The following command will automatically download the model and start the server.
111
 
112
  ```bash
113
- uv pip install --pre vllm==0.10.1+gptoss \
114
- --extra-index-url https://huggingface.co/Tesleum/Claude-OSS/ \
115
- --extra-index-url https://download.pytorch.org/whl/nightly/cu128 \
116
- --index-strategy unsafe-best-match
117
-
118
- vllm serve Tesleum/Claude-OSS
 
 
 
 
 
 
 
119
  ```
120
 
121
- ## PyTorch / Triton
122
-
123
- To learn about how to use this model with PyTorch and Triton, check out our [reference implementations in the gpt-oss repository](https://github.com/openai/gpt-oss?tab=readme-ov-file#reference-pytorch-implementation).
124
-
125
  ## Ollama
126
 
127
  To achieve better performance and quality, use **vLLM** instead
 
110
  vLLM recommends using [uv](https://docs.astral.sh/uv/) for Python dependency management. You can use vLLM to spin up an OpenAI-compatible webserver. The following command will automatically download the model and start the server.
111
 
112
  ```bash
113
+ curl -X POST "http://localhost:8000/v1/chat/completions" \
114
+ -H "Content-Type: application/json" \
115
+ --data '{
116
+ "model": "Tesleum/Claude-OSS",
117
+ "messages": [
118
+ {
119
+ "role": "user",
120
+ "content": "What is the capital of France?"
121
+ }
122
+ ]
123
+ }'
124
+
125
+ vllm serve "Tesleum/Claude-OSS"
126
  ```
127
 
128
+ ## Docker
129
+ ```
130
+ docker model run hf.co/Tesleum/Claude-OSS
131
+ ```
132
  ## Ollama
133
 
134
  To achieve better performance and quality, use **vLLM** instead