Instructions to use ujjirox/yi-34b-chat with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use ujjirox/yi-34b-chat with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="ujjirox/yi-34b-chat") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("ujjirox/yi-34b-chat") model = AutoModelForCausalLM.from_pretrained("ujjirox/yi-34b-chat") 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 ujjirox/yi-34b-chat with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "ujjirox/yi-34b-chat" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "ujjirox/yi-34b-chat", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/ujjirox/yi-34b-chat
- SGLang
How to use ujjirox/yi-34b-chat 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 "ujjirox/yi-34b-chat" \ --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": "ujjirox/yi-34b-chat", "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 "ujjirox/yi-34b-chat" \ --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": "ujjirox/yi-34b-chat", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use ujjirox/yi-34b-chat with Docker Model Runner:
docker model run hf.co/ujjirox/yi-34b-chat
Update README.md with license information
#1
by Chen-01AI - opened
README.md
CHANGED
|
@@ -1,17 +1,29 @@
|
|
| 1 |
---
|
| 2 |
-
license: other
|
| 3 |
-
license_name: yi-license
|
| 4 |
-
license_link: LICENSE
|
| 5 |
widget:
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 14 |
pipeline_tag: text-generation
|
|
|
|
| 15 |
---
|
| 16 |
|
| 17 |
<div align="center">
|
|
|
|
| 1 |
---
|
|
|
|
|
|
|
|
|
|
| 2 |
widget:
|
| 3 |
+
- example_title: Yi-34B-Chat
|
| 4 |
+
text: hi
|
| 5 |
+
output:
|
| 6 |
+
text: ' Hello! How can I assist you today?'
|
| 7 |
+
- example_title: Yi-34B
|
| 8 |
+
text: There's a place where time stands still. A place of breath taking wonder,
|
| 9 |
+
but also
|
| 10 |
+
output:
|
| 11 |
+
text: " an eerie sense that something is just not right\u2026\nBetween the two\
|
| 12 |
+
\ worlds lies The Forgotten Kingdom - home to creatures long since thought extinct\
|
| 13 |
+
\ and ancient magic so strong it defies belief! Only here can you find what\
|
| 14 |
+
\ has been lost for centuries: An Elixir Of Life which will restore youth and\
|
| 15 |
+
\ vitality if only those who seek its power are brave enough to face up against\
|
| 16 |
+
\ all manner of dangers lurking in this mysterious land! But beware; some say\
|
| 17 |
+
\ there may even exist powerful entities beyond our comprehension whose intentions\
|
| 18 |
+
\ towards humanity remain unclear at best ---- they might want nothing more\
|
| 19 |
+
\ than destruction itself rather then anything else from their quest after immortality\
|
| 20 |
+
\ (and maybe someone should tell them about modern medicine)? In any event though\
|
| 21 |
+
\ \u2013 one thing remains true regardless : whether or not success comes easy\
|
| 22 |
+
\ depends entirely upon how much effort we put into conquering whatever challenges\
|
| 23 |
+
\ lie ahead along with having faith deep down inside ourselves too ;) So let\u2019\
|
| 24 |
+
s get started now shall We?"
|
| 25 |
pipeline_tag: text-generation
|
| 26 |
+
license: apache-2.0
|
| 27 |
---
|
| 28 |
|
| 29 |
<div align="center">
|