legolasyiu commited on
Commit
0b5ad81
·
verified ·
1 Parent(s): 3129e6e

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +24 -0
README.md CHANGED
@@ -66,6 +66,30 @@ outputs = pipe(
66
  )
67
  print(outputs[0]["generated_text"][-1])
68
  ```
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
69
 
70
 
71
  # Uploaded finetuned model
 
66
  )
67
  print(outputs[0]["generated_text"][-1])
68
  ```
69
+ # Reasoning levels
70
+
71
+ You can adjust the reasoning level that suits your task across three levels:
72
+
73
+ * **Low:** Fast responses for general dialogue.
74
+ * **Medium:** Balanced speed and detail.
75
+ * **High:** Deep and detailed analysis.
76
+
77
+ The reasoning level can be set in the system prompts, e.g., "Reasoning: high".
78
+
79
+ # Tool use
80
+
81
+ The gpt-oss models are excellent for:
82
+ * Web browsing (using built-in browsing tools)
83
+ * Function calling with defined schemas
84
+ * Agentic operations like browser tasks
85
+
86
+ # Fine-tuning
87
+
88
+ Both gpt-oss models can be fine-tuned for a variety of specialized use cases.
89
+
90
+ This smaller model `gpt-oss-20b` can be fine-tuned on consumer hardware, whereas the larger [`gpt-oss-120b`](https://huggingface.co/openai/gpt-oss-120b) can be fine-tuned on a single H100 node.
91
+
92
+
93
 
94
 
95
  # Uploaded finetuned model