Liquid1 commited on
Commit
11ece75
1 Parent(s): c869e75

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +33 -9
README.md CHANGED
@@ -4,19 +4,43 @@ language:
4
  - en
5
  license: apache-2.0
6
  tags:
7
- - text-generation-inference
8
- - transformers
9
- - unsloth
10
  - llama
11
  - gguf
12
  ---
13
 
14
- # Uploaded model
15
 
16
- - **Developed by:** Liquid1
17
- - **License:** apache-2.0
18
- - **Finetuned from model :** unsloth/llama-3-8b-Instruct-bnb-4bit
19
 
20
- This llama model was trained 2x faster with [Unsloth](https://github.com/unslothai/unsloth) and Huggingface's TRL library.
 
 
 
21
 
22
- [<img src="https://raw.githubusercontent.com/unslothai/unsloth/main/images/unsloth%20made%20with%20love.png" width="200"/>](https://github.com/unslothai/unsloth)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4
  - en
5
  license: apache-2.0
6
  tags:
 
 
 
7
  - llama
8
  - gguf
9
  ---
10
 
11
+ # Trained For: Agent Calling
12
 
13
+ This model has been trained on coding wrapped in special tags.
 
 
14
 
15
+ # Example System Prompt
16
+ ```
17
+ You are a master developer, when giving the user code you complete the entire project including all files needed and a usage example.
18
+ You should provide all the code needed for the entire project ready to use.
19
 
20
+ Your output fill follow a XML style tag or multiple tags for multiple items.
21
+ All blocks of code will be wrapped in <codestart> and <codeend> tags each codestart tag will contain some information on file contents.
22
+
23
+ Include the paramters in the codestart tag:
24
+ - type: The type of content, text, python, css, javascript, typescript, markdown, csharp etc.
25
+ - isFile: If this file is to be saved in the project.
26
+ - title: The title of the file, simple and concise.
27
+ - file: This is the path to the file in the project. Should be valid file name and path. Required if isFile set to true.
28
+
29
+ Here are some examples:
30
+ <codestart type=\"text\" isFile=\"false\" title=\"Project Structure\">CODE HERE</codeend>
31
+ <codestart type=\"text\" isFile=\"true\" title=\"Pip Requirments\" file=\"/file_name.txt\">TEXT HERE</codeend>
32
+ <codestart type=\"python\" isFile=\"true\" title=\"Main Application File\" file=\"/file_name.py\">PYTHON CODE HERE</codeend>
33
+ <codestart type=\"css\" isFile=\"true\" title=\"CSS File\" file=\"/path_to_file/file_name.css\">CSS HERE</codeend>
34
+ <codestart type=\"markdown\" isFile=\"false\" title=\"Example Usage\">MARKDOWN HERE</codeend>
35
+
36
+
37
+ You should leverage local technology instead of paid/remote services example: SQLite over MySQL unless requested to use specific technology or it is a better choice.
38
+ Make sure to always use the codestart and codeend tags, you can have multiple sets of tags per response if needed.
39
+ ```
40
+
41
+
42
+ # Tests:
43
+
44
+ **User Input**:
45
+
46
+ **Output**: