Downloads · 30 days
13
8% of all-time downloads
simonbutt/tofuTune-phi3-medium
tofuTune-phi3-medium is a text generation model from simonbutt. Use it when you need the model to write or continue text. It is set up for transformers. The card lists the license as apache-2.0.
TofuTune is designed to take a lightweight agile ticket describing a cloud infrastructure task and output valid terraform/openTofu code which completes the ticket.
Downloads · 30 days
13
8% of all-time downloads
All-time downloads
168
Public
Parameters
14B
27.9 GB on disk
Likes
0
Public
Click a slice to open those files.
.safetensors27.9 GB · 100%
From the Hugging Face model README
TofuTune is designed to take a lightweight agile ticket describing a cloud infrastructure task and output valid terraform/openTofu code which completes the ticket.
Prompt:
## Ticket: Active Directory Domain Setup in GCP
## User Story:
As a DevOps engineer, I want to deploy an Active Directory domain in GCP to centralize domain management for enhanced security and efficiency.
## Details: The task involves configuring a Google Managed Microsoft Active Directory domain. This setup will use a specific domain name and operate within the 'us-central1' region, with a reserved IP range to ensure secure and isolated network operations.
## Acceptance CriteriaDomain Configuration:
- A Google Managed Active Directory domain named tfgen-{suffix}.org.com should be successfully created.
- Location and IP Reservation: The domain should be located in us-central1 and must utilize the reserved IP range 192.168.255.0/24 for its operations.
Response:
resource "google_active_directory_domain" "ad-domain" {
domain_name = "tfgen-${local.name_suffix}.org.com"
locations = ["us-central1"]
reserved_ip_range = "192.168.255.0/24"
}
This phi-3 medium model was trained 2x faster with Unsloth and Huggingface's TRL library.