Update README.md
Browse files
README.md
CHANGED
@@ -24,10 +24,9 @@ a suite of finetuned LLMs for atomically precise function calling 🧪
|
|
24 |
|
25 |
## Usage
|
26 |
|
27 |
-
```
|
28 |
-
|
29 |
-
from transformers import AutoTokenizer, AutoModelForCausalLM
|
30 |
import torch
|
|
|
31 |
|
32 |
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
|
33 |
|
|
|
24 |
|
25 |
## Usage
|
26 |
|
27 |
+
```python
|
|
|
|
|
28 |
import torch
|
29 |
+
from transformers import AutoTokenizer, AutoModelForCausalLM
|
30 |
|
31 |
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
|
32 |
|