GAD
Collection
GAD language models family • 4 items • Updated • 1
GAD-1 Instruct is an instruction-tuned version of the original GAD-1 model. This model is designed to follow natural language instructions more effectively, making it suitable for tasks like text generation, email drafting, summarization, and other instruction-based applications.
Unlike the original GAD-1, which focused on general text prediction, GAD-1 Instruct has been fine-tuned specifically to understand and respond to prompts in a more aligned and human-readable manner.
The model can be used via your preferred API or inference endpoint. Example usage for generating text:
import requests
url = "https://rnevo2016--gad-1-instruct-fastapi-app.modal.run/v1/chat/completions"
data = {
"model": "gad-1-instruct",
"messages": [{"role": "user", "content": "Greetings > Hello GAD-1!"}],
"max_tokens": 64,
"temperature": 0.8
}
resp = requests.post(url, json=data)
print(resp.json()["choices"][0]["message"]["content"])
Base model
Raziel1234/GAD-1