Instructions to use TheAgenticAI/Agentic-V4 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use TheAgenticAI/Agentic-V4 with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("Nexusflow/Athene-V2-Agent") model = PeftModel.from_pretrained(base_model, "TheAgenticAI/Agentic-V4") - Notebooks
- Google Colab
- Kaggle
File size: 186 Bytes
b8fafec | 1 2 3 4 5 6 7 8 9 10 | {
"bos_token_id": 151643,
"do_sample": true,
"eos_token_id": 151645,
"max_new_tokens": 2048,
"pad_token_id": 151643,
"temperature": 0.7,
"transformers_version": "4.46.3"
}
|