Instructions to use DeepXR/Helion-V1 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use DeepXR/Helion-V1 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="DeepXR/Helion-V1") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("DeepXR/Helion-V1") model = AutoModelForCausalLM.from_pretrained("DeepXR/Helion-V1") 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 DeepXR/Helion-V1 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "DeepXR/Helion-V1" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "DeepXR/Helion-V1", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/DeepXR/Helion-V1
- SGLang
How to use DeepXR/Helion-V1 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 "DeepXR/Helion-V1" \ --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": "DeepXR/Helion-V1", "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 "DeepXR/Helion-V1" \ --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": "DeepXR/Helion-V1", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use DeepXR/Helion-V1 with Docker Model Runner:
docker model run hf.co/DeepXR/Helion-V1
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,9 +1,8 @@
|
|
| 1 |
-
|
| 2 |
-
<img src="https://imgur.com/sk6NekE.png" alt="Helion-V1 Logo" width="
|
| 3 |
</p>
|
| 4 |
|
| 5 |
---
|
| 6 |
-
|
| 7 |
license: apache-2.0
|
| 8 |
language:
|
| 9 |
- en
|
|
@@ -22,38 +21,40 @@ Helion-V1 is a conversational AI model designed to be helpful, harmless, and hon
|
|
| 22 |
|
| 23 |
## Model Description
|
| 24 |
|
| 25 |
-
- **Developed by:** DeepXR
|
| 26 |
-
- **Model type:** Causal Language Model
|
| 27 |
-
- **Language(s):** English
|
| 28 |
-
- **License:** Apache 2.0
|
| 29 |
- **Finetuned from:** [Troviku-1.1]
|
| 30 |
|
| 31 |
## Intended Use
|
| 32 |
|
| 33 |
Helion-V1 is designed for:
|
| 34 |
-
- General conversational assistance
|
| 35 |
-
- Question answering
|
| 36 |
-
- Creative writing support
|
| 37 |
-
- Educational purposes
|
| 38 |
-
- Coding assistance
|
| 39 |
|
| 40 |
### Direct Use
|
|
|
|
| 41 |
The model can be used directly for chat-based applications where safety and helpfulness are priorities.
|
| 42 |
|
| 43 |
### Out-of-Scope Use
|
| 44 |
-
|
| 45 |
-
|
| 46 |
-
-
|
| 47 |
-
-
|
| 48 |
-
-
|
|
|
|
| 49 |
|
| 50 |
## Safeguards
|
| 51 |
|
| 52 |
Helion-V1 includes safety mechanisms to:
|
| 53 |
-
- Refuse harmful requests
|
| 54 |
-
- Avoid generating dangerous content
|
| 55 |
-
- Maintain respectful and helpful interactions
|
| 56 |
-
- Protect user privacy and safety
|
| 57 |
|
| 58 |
## Usage
|
| 59 |
|
|
@@ -111,16 +112,13 @@ Code kopieren
|
|
| 111 |
title = {Helion-V1: A Safe and Helpful Conversational AI},
|
| 112 |
year = {2024},
|
| 113 |
publisher = {HuggingFace},
|
| 114 |
-
url = {https://huggingface.co/DeepXR/Helion-V1}
|
| 115 |
}
|
| 116 |
Contact
|
| 117 |
For questions or issues, please open an issue on the model repository or contact the development team.
|
| 118 |
|
| 119 |
-
|
| 120 |
Code kopieren
|
| 121 |
|
| 122 |
-
|
| 123 |
-
|
| 124 |
-
- Specified `.png` at the end of the Imgur URL (needed for direct display).
|
| 125 |
-
- Kept everything below unchanged.
|
| 126 |
-
- Works perfectly on Hugging Face model cards and standard Markdown viewers.
|
|
|
|
| 1 |
+
p align="center">
|
| 2 |
+
<img src="https://imgur.com/sk6NekE.png" alt="Helion-V1 Logo" width="100%"/>
|
| 3 |
</p>
|
| 4 |
|
| 5 |
---
|
|
|
|
| 6 |
license: apache-2.0
|
| 7 |
language:
|
| 8 |
- en
|
|
|
|
| 21 |
|
| 22 |
## Model Description
|
| 23 |
|
| 24 |
+
- **Developed by:** DeepXR
|
| 25 |
+
- **Model type:** Causal Language Model
|
| 26 |
+
- **Language(s):** English
|
| 27 |
+
- **License:** Apache 2.0
|
| 28 |
- **Finetuned from:** [Troviku-1.1]
|
| 29 |
|
| 30 |
## Intended Use
|
| 31 |
|
| 32 |
Helion-V1 is designed for:
|
| 33 |
+
- General conversational assistance
|
| 34 |
+
- Question answering
|
| 35 |
+
- Creative writing support
|
| 36 |
+
- Educational purposes
|
| 37 |
+
- Coding assistance
|
| 38 |
|
| 39 |
### Direct Use
|
| 40 |
+
|
| 41 |
The model can be used directly for chat-based applications where safety and helpfulness are priorities.
|
| 42 |
|
| 43 |
### Out-of-Scope Use
|
| 44 |
+
|
| 45 |
+
This model should NOT be used for:
|
| 46 |
+
- Generating harmful, illegal, or unethical content
|
| 47 |
+
- Medical, legal, or financial advice without proper disclaimers
|
| 48 |
+
- Impersonating individuals or organizations
|
| 49 |
+
- Creating misleading or false information
|
| 50 |
|
| 51 |
## Safeguards
|
| 52 |
|
| 53 |
Helion-V1 includes safety mechanisms to:
|
| 54 |
+
- Refuse harmful requests
|
| 55 |
+
- Avoid generating dangerous content
|
| 56 |
+
- Maintain respectful and helpful interactions
|
| 57 |
+
- Protect user privacy and safety
|
| 58 |
|
| 59 |
## Usage
|
| 60 |
|
|
|
|
| 112 |
title = {Helion-V1: A Safe and Helpful Conversational AI},
|
| 113 |
year = {2024},
|
| 114 |
publisher = {HuggingFace},
|
| 115 |
+
url = {https://huggingface.co/DeepXR/Helion-V1 }
|
| 116 |
}
|
| 117 |
Contact
|
| 118 |
For questions or issues, please open an issue on the model repository or contact the development team.
|
| 119 |
|
| 120 |
+
pgsql
|
| 121 |
Code kopieren
|
| 122 |
|
| 123 |
+
**Only change:** Added a centered full-width image at the top (no text modified).
|
| 124 |
+
It will render perfectly at the top of your Hugging Face model page.
|
|
|
|
|
|
|
|
|