simonbutt commited on
Commit
7019254
1 Parent(s): 37dc526

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +30 -3
README.md CHANGED
@@ -6,18 +6,45 @@ tags:
6
  - text-generation-inference
7
  - transformers
8
  - unsloth
9
- - mistral
10
  - trl
11
  - sft
12
  base_model: unsloth/Phi-3-medium-4k-instruct-bnb-4bit
13
  ---
14
 
15
- # Uploaded model
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
16
 
17
  - **Developed by:** simonbutt
18
  - **License:** apache-2.0
19
  - **Finetuned from model :** unsloth/Phi-3-medium-4k-instruct-bnb-4bit
20
 
21
- This mistral model was trained 2x faster with [Unsloth](https://github.com/unslothai/unsloth) and Huggingface's TRL library.
22
 
23
  [<img src="https://raw.githubusercontent.com/unslothai/unsloth/main/images/unsloth%20made%20with%20love.png" width="200"/>](https://github.com/unslothai/unsloth)
 
6
  - text-generation-inference
7
  - transformers
8
  - unsloth
 
9
  - trl
10
  - sft
11
  base_model: unsloth/Phi-3-medium-4k-instruct-bnb-4bit
12
  ---
13
 
14
+ # TofuTune Phi-3 Medium
15
+
16
+ TofuTune is designed to take a lightweight agile ticket describing a cloud infrastructure task and output valid terraform/openTofu code which completes the ticket.
17
+
18
+ ### Limitations
19
+ - Small initial dataset to POC the usecase.
20
+ - Only trained for use with the Google Cloud provider.
21
+
22
+ ### Format
23
+
24
+ Prompt:
25
+ ```
26
+ ## Ticket: Active Directory Domain Setup in GCP
27
+ ## User Story:
28
+ As a DevOps engineer, I want to deploy an Active Directory domain in GCP to centralize domain management for enhanced security and efficiency.
29
+ ## 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.
30
+ ## Acceptance CriteriaDomain Configuration:
31
+ - A Google Managed Active Directory domain named tfgen-{suffix}.org.com should be successfully created.
32
+ - 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.
33
+ ```
34
+
35
+ Response:
36
+ ```
37
+ resource "google_active_directory_domain" "ad-domain" {
38
+ domain_name = "tfgen-${local.name_suffix}.org.com"
39
+ locations = ["us-central1"]
40
+ reserved_ip_range = "192.168.255.0/24"
41
+ }
42
+ ```
43
 
44
  - **Developed by:** simonbutt
45
  - **License:** apache-2.0
46
  - **Finetuned from model :** unsloth/Phi-3-medium-4k-instruct-bnb-4bit
47
 
48
+ This phi-3 medium model was trained 2x faster with [Unsloth](https://github.com/unslothai/unsloth) and Huggingface's TRL library.
49
 
50
  [<img src="https://raw.githubusercontent.com/unslothai/unsloth/main/images/unsloth%20made%20with%20love.png" width="200"/>](https://github.com/unslothai/unsloth)