teknium commited on
Commit
f2b4a1e
1 Parent(s): 053547e

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +12 -8
README.md CHANGED
@@ -45,14 +45,9 @@ Hermes Pro takes advantage of a special system prompt and multi-turn function ca
45
 
46
  This work was a collaboration between Nous Research, @interstellarninja, and Fireworks.AI
47
 
48
- ## Thank you to Latitude for sponsoring compute for this model!
49
-
50
- ## Inference Code for Function Calling:
51
 
52
- All code for utilizing, parsing, and building function calling templates is available on our github:
53
- [https://github.com/NousResearch/Hermes-Function-Calling](https://github.com/NousResearch/Hermes-Function-Calling)
54
-
55
- ![image/png](https://cdn-uploads.huggingface.co/production/uploads/6317aade83d8d2fd903192d9/oi4CiGh50xmoviUQnh8R3.png)
56
 
57
  ## Example Outputs
58
 
@@ -287,7 +282,16 @@ for chat in prompts:
287
  generated_ids = model.generate(input_ids, max_new_tokens=750, temperature=0.8, repetition_penalty=1.1, do_sample=True, eos_token_id=tokenizer.eos_token_id)
288
  response = tokenizer.decode(generated_ids[0][input_ids.shape[-1]:], skip_special_tokens=True, clean_up_tokenization_space=True)
289
  print(f"Response: {response}")
290
- ```
 
 
 
 
 
 
 
 
 
291
 
292
  # How to cite:
293
 
 
45
 
46
  This work was a collaboration between Nous Research, @interstellarninja, and Fireworks.AI
47
 
48
+ Learn more about the function calling on our github repo here: https://github.com/NousResearch/Hermes-Function-Calling/tree/main
 
 
49
 
50
+ ## Thank you to Latitude for sponsoring compute for this model!
 
 
 
51
 
52
  ## Example Outputs
53
 
 
282
  generated_ids = model.generate(input_ids, max_new_tokens=750, temperature=0.8, repetition_penalty=1.1, do_sample=True, eos_token_id=tokenizer.eos_token_id)
283
  response = tokenizer.decode(generated_ids[0][input_ids.shape[-1]:], skip_special_tokens=True, clean_up_tokenization_space=True)
284
  print(f"Response: {response}")
285
+ ```
286
+
287
+
288
+ ## Inference Code for Function Calling:
289
+
290
+ All code for utilizing, parsing, and building function calling templates is available on our github:
291
+ [https://github.com/NousResearch/Hermes-Function-Calling](https://github.com/NousResearch/Hermes-Function-Calling)
292
+
293
+ ![image/png](https://cdn-uploads.huggingface.co/production/uploads/6317aade83d8d2fd903192d9/oi4CiGh50xmoviUQnh8R3.png)
294
+
295
 
296
  # How to cite:
297