Limen4ik commited on
Commit
414bffa
·
verified ·
1 Parent(s): bf4fed5

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +4 -3
README.md CHANGED
@@ -53,16 +53,17 @@ pip install torch huggingface_hub safetensors
53
  ### Installation & Execution
54
 
55
  ```python
56
- # 1. Download the complete YEN system from Hugging Face
 
57
  from huggingface_hub import snapshot_download
58
  snapshot_download("faunix/YEN", local_dir=".")
59
  sys.path.insert(0, ".")
60
 
61
- # 2. Initialize the YEN
62
  from yen import OpenAI
63
  client = OpenAI()
64
 
65
- # 3. Perform high-speed inference
66
  response = client.chat.completions.create(
67
  model="faunix/YEN",
68
  messages=[{"role": "user", "content": "You are YEN?"}],
 
53
  ### Installation & Execution
54
 
55
  ```python
56
+ # 1. Download
57
+ import sys
58
  from huggingface_hub import snapshot_download
59
  snapshot_download("faunix/YEN", local_dir=".")
60
  sys.path.insert(0, ".")
61
 
62
+ # 2. Initialize
63
  from yen import OpenAI
64
  client = OpenAI()
65
 
66
+ # 3. Inference
67
  response = client.chat.completions.create(
68
  model="faunix/YEN",
69
  messages=[{"role": "user", "content": "You are YEN?"}],