vitalune/business-assistant-ai-tools
Viewer β’ Updated β’ 1.5k β’ 20 β’ 2
Ovarra-v1 is a fine-tuned version of Mistral-7B-v0.1, designed to help users plan, clarify, and launch AI-powered business ideas.
This model acts like a startup co-pilot, guiding users from rough ideas to concrete action steps β with AI tools, strategy, and marketing guidance embedded in every response.
| Attribute | Value |
|---|---|
| Base model | mistralai/Mistral-7B-v0.1 |
| Finetuned on | ~1500 GPT-4-generated prompt-response pairs, validated by human reviews of the best AI tools for each sector. |
| Format | Instruction-tuned with [INST] ... [/INST] |
| Finetuning method | QLoRA (4-bit), Flash Attention 2 |
| Trainer | Axolotl + RunPod (A40 GPU) |
The model was trained to:
Training categories included:
from transformers import AutoTokenizer, AutoModelForCausalLM
model = AutoModelForCausalLM.from_pretrained("vitalune/ovarra-v1", device_map="auto")
tokenizer = AutoTokenizer.from_pretrained("vitalune/ovarra-v1")
prompt = "[INST] I want to launch an AI copywriting SaaS. Help me plan it. [/INST]"
inputs = tokenizer(prompt, return_tensors="pt").to(model.device)
output = model.generate(**inputs, max_new_tokens=512)
print(tokenizer.decode(output[0], skip_special_tokens=True))