r0ymanesco commited on
Commit
d754679
1 Parent(s): c0094a1

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -5,7 +5,7 @@ license: apache-2.0
5
 
6
  notdiamond-0001 automatically determines whether to send queries to GPT-3.5 or GPT-4, depending on which model is best-suited for your task. We've trained notdiamond-0001 on hundreds of thousands of data points from robust, cross-domain evaluation benchmarks.
7
 
8
- Our router is free to use under the Apache 2.0 license. You can also access the model through our free [API](https://www.notdiamond.ai/notdiamond-0001).
9
 
10
  The notdiamond-0001 router model is a classifier and will return a label for either GPT-3.5 or GPT-4. You determine which version of each model you want to use and make the calls client-side with your own keys.
11
 
@@ -33,4 +33,4 @@ You can then determine the model to call as follows
33
  model_id = logits.argmax().item()
34
  model_to_call = id2label[model_id]
35
  ```
36
- For more details on how you can integrate this into your techstack and use notdiamond-0001 to improve quality while reducing latency and cost, check out our [documentation](https://notdiamond.readme.io/docs/introduction).
 
5
 
6
  notdiamond-0001 automatically determines whether to send queries to GPT-3.5 or GPT-4, depending on which model is best-suited for your task. We've trained notdiamond-0001 on hundreds of thousands of data points from robust, cross-domain evaluation benchmarks.
7
 
8
+ This router is free to use under the Apache 2.0 license. You can also access a much more powerful router from our [API](https://notdiamond.readme.io/reference/api-introduction) which supports many more models.
9
 
10
  The notdiamond-0001 router model is a classifier and will return a label for either GPT-3.5 or GPT-4. You determine which version of each model you want to use and make the calls client-side with your own keys.
11
 
 
33
  model_id = logits.argmax().item()
34
  model_to_call = id2label[model_id]
35
  ```
36
+ For more details on how you can integrate this into your techstack and use notdiamond-0001 to improve quality while reducing latency and cost, check out our [documentation](https://notdiamond.readme.io/docs/).