Instructions to use flock-io/Flock_Web3_Agent_Model with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use flock-io/Flock_Web3_Agent_Model with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("flock-io/Flock_Web3_Agent_Model", dtype="auto") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -63,4 +63,12 @@ generated_ids = [
|
|
| 63 |
]
|
| 64 |
response = tokenizer.batch_decode(generated_ids, skip_special_tokens=True)[0]
|
| 65 |
```
|
| 66 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 63 |
]
|
| 64 |
response = tokenizer.batch_decode(generated_ids, skip_special_tokens=True)[0]
|
| 65 |
```
|
| 66 |
+
|
| 67 |
+
The output text is in the string format
|
| 68 |
+
|
| 69 |
+
```
|
| 70 |
+
[
|
| 71 |
+
{"name": "track_crosschain_message", "arguments": {"message_id": "msg12345"}},
|
| 72 |
+
{"name": "schedule_timeout_check", "arguments": {"message_id": "msg12345", "timeout": "30"}}
|
| 73 |
+
]
|
| 74 |
+
```
|