yabichiu commited on
Commit
b99ac0c
1 Parent(s): 6864361

Upload 12 files

Browse files
.gitattributes CHANGED
@@ -33,3 +33,9 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
 
 
 
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ llama3_2-3b-instruct-q2_K filter=lfs diff=lfs merge=lfs -text
37
+ llama3_2-3b-instruct-q3_K_M filter=lfs diff=lfs merge=lfs -text
38
+ llama3_2-3b-instruct-q4_K_M filter=lfs diff=lfs merge=lfs -text
39
+ llama3_2-3b-instruct-q5_K_M filter=lfs diff=lfs merge=lfs -text
40
+ llama3_2-3b-instruct-q6_K filter=lfs diff=lfs merge=lfs -text
41
+ llama3_2-3b-instruct-q8_0 filter=lfs diff=lfs merge=lfs -text
llama3_2-3b-instruct-q2_K ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7b9c6394c3eb23ee6dedeb964ba6f86a4196ea63be1809aad6a7184edfd67509
3
+ size 1363935456
llama3_2-3b-instruct-q2_K.modelfile ADDED
@@ -0,0 +1,215 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM llama3_2-3b-instruct-q2_K
2
+
3
+ TEMPLATE """
4
+ <|start_header_id|>system<|end_header_id|>
5
+
6
+ Cutting Knowledge Date: December 2023
7
+
8
+ {{ if .System }}{{ .System }}
9
+ {{- end }}
10
+ {{- if .Tools }}When you receive a tool call response, use the output to format an answer to the orginal user question.
11
+
12
+ You are a helpful assistant with tool calling capabilities.
13
+ {{- end }}<|eot_id|>
14
+ {{- range $i, $_ := .Messages }}
15
+ {{- $last := eq (len (slice $.Messages $i)) 1 }}
16
+ {{- if eq .Role "user" }}<|start_header_id|>user<|end_header_id|>
17
+ {{- if and $.Tools $last }}
18
+
19
+ Given the following functions, please respond with a JSON for a function call with its proper arguments that best answers the given prompt.
20
+
21
+ Respond in the format {"name": function name, "parameters": dictionary of argument name and its value}. Do not use variables.
22
+
23
+ {{ range $.Tools }}
24
+ {{- . }}
25
+ {{ end }}
26
+ {{ .Content }}<|eot_id|>
27
+ {{- else }}
28
+
29
+ {{ .Content }}<|eot_id|>
30
+ {{- end }}{{ if $last }}<|start_header_id|>assistant<|end_header_id|>
31
+
32
+ {{ end }}
33
+ {{- else if eq .Role "assistant" }}<|start_header_id|>assistant<|end_header_id|>
34
+ {{- if .ToolCalls }}
35
+ {{ range .ToolCalls }}
36
+ {"name": "{{ .Function.Name }}", "parameters": {{ .Function.Arguments }}}{{ end }}
37
+ {{- else }}
38
+
39
+ {{ .Content }}
40
+ {{- end }}{{ if not $last }}<|eot_id|>{{ end }}
41
+ {{- else if eq .Role "tool" }}<|start_header_id|>ipython<|end_header_id|>
42
+
43
+ {{ .Content }}<|eot_id|>{{ if $last }}<|start_header_id|>assistant<|end_header_id|>
44
+
45
+ {{ end }}
46
+ {{- end }}
47
+ {{- end }}
48
+ """
49
+
50
+ SYSTEM """You are a helpful AI assistant. The user you are helping speaks Traditional Chinese and comes from Taiwan."""
51
+ PARAMETER temperature 0
52
+ PARAMETER stop <|start_header_id|>
53
+ PARAMETER stop <|end_header_id|>
54
+ PARAMETER stop <|eot_id|>
55
+
56
+ LICENSE """
57
+ LLAMA 3.2 COMMUNITY LICENSE AGREEMENT
58
+ Llama 3.2 Version Release Date: September 25, 2024
59
+
60
+ “Agreement” means the terms and conditions for use, reproduction, distribution
61
+ and modification of the Llama Materials set forth herein.
62
+
63
+ “Documentation” means the specifications, manuals and documentation accompanying Llama 3.2
64
+ distributed by Meta at https://llama.meta.com/doc/overview.
65
+
66
+ “Licensee” or “you” means you, or your employer or any other person or entity (if you are
67
+ entering into this Agreement on such person or entity’s behalf), of the age required under
68
+ applicable laws, rules or regulations to provide legal consent and that has legal authority
69
+ to bind your employer or such other person or entity if you are entering in this Agreement
70
+ on their behalf.
71
+
72
+ “Llama 3.2” means the foundational large language models and software and algorithms, including
73
+ machine-learning model code, trained model weights, inference-enabling code, training-enabling code,
74
+ fine-tuning enabling code and other elements of the foregoing distributed by Meta at
75
+ https://www.llama.com/llama-downloads.
76
+
77
+ “Llama Materials” means, collectively, Meta’s proprietary Llama 3.2 and Documentation (and
78
+ any portion thereof) made available under this Agreement.
79
+
80
+ “Meta” or “we” means Meta Platforms Ireland Limited (if you are located in or,
81
+ if you are an entity, your principal place of business is in the EEA or Switzerland)
82
+ and Meta Platforms, Inc. (if you are located outside of the EEA or Switzerland).
83
+
84
+
85
+ By clicking “I Accept” below or by using or distributing any portion or element of the Llama Materials,
86
+ you agree to be bound by this Agreement.
87
+
88
+
89
+ 1. License Rights and Redistribution.
90
+
91
+ a. Grant of Rights. You are granted a non-exclusive, worldwide,
92
+ non-transferable and royalty-free limited license under Meta’s intellectual property or other rights
93
+ owned by Meta embodied in the Llama Materials to use, reproduce, distribute, copy, create derivative works
94
+ of, and make modifications to the Llama Materials.
95
+
96
+ b. Redistribution and Use.
97
+
98
+ i. If you distribute or make available the Llama Materials (or any derivative works thereof),
99
+ or a product or service (including another AI model) that contains any of them, you shall (A) provide
100
+ a copy of this Agreement with any such Llama Materials; and (B) prominently display “Built with Llama”
101
+ on a related website, user interface, blogpost, about page, or product documentation. If you use the
102
+ Llama Materials or any outputs or results of the Llama Materials to create, train, fine tune, or
103
+ otherwise improve an AI model, which is distributed or made available, you shall also include “Llama”
104
+ at the beginning of any such AI model name.
105
+
106
+ ii. If you receive Llama Materials, or any derivative works thereof, from a Licensee as part
107
+ of an integrated end user product, then Section 2 of this Agreement will not apply to you.
108
+
109
+ iii. You must retain in all copies of the Llama Materials that you distribute the
110
+ following attribution notice within a “Notice” text file distributed as a part of such copies:
111
+ “Llama 3.2 is licensed under the Llama 3.2 Community License, Copyright © Meta Platforms,
112
+ Inc. All Rights Reserved.”
113
+
114
+ iv. Your use of the Llama Materials must comply with applicable laws and regulations
115
+ (including trade compliance laws and regulations) and adhere to the Acceptable Use Policy for
116
+ the Llama Materials (available at https://www.llama.com/llama3_2/use-policy), which is hereby
117
+ incorporated by reference into this Agreement.
118
+
119
+ 2. Additional Commercial Terms. If, on the Llama 3.2 version release date, the monthly active users
120
+ of the products or services made available by or for Licensee, or Licensee’s affiliates,
121
+ is greater than 700 million monthly active users in the preceding calendar month, you must request
122
+ a license from Meta, which Meta may grant to you in its sole discretion, and you are not authorized to
123
+ exercise any of the rights under this Agreement unless or until Meta otherwise expressly grants you such rights.
124
+
125
+ 3. Disclaimer of Warranty. UNLESS REQUIRED BY APPLICABLE LAW, THE LLAMA MATERIALS AND ANY OUTPUT AND
126
+ RESULTS THEREFROM ARE PROVIDED ON AN “AS IS” BASIS, WITHOUT WARRANTIES OF ANY KIND, AND META DISCLAIMS
127
+ ALL WARRANTIES OF ANY KIND, BOTH EXPRESS AND IMPLIED, INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES
128
+ OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY, OR FITNESS FOR A PARTICULAR PURPOSE. YOU ARE SOLELY RESPONSIBLE
129
+ FOR DETERMINING THE APPROPRIATENESS OF USING OR REDISTRIBUTING THE LLAMA MATERIALS AND ASSUME ANY RISKS ASSOCIATED
130
+ WITH YOUR USE OF THE LLAMA MATERIALS AND ANY OUTPUT AND RESULTS.
131
+
132
+ 4. Limitation of Liability. IN NO EVENT WILL META OR ITS AFFILIATES BE LIABLE UNDER ANY THEORY OF LIABILITY,
133
+ WHETHER IN CONTRACT, TORT, NEGLIGENCE, PRODUCTS LIABILITY, OR OTHERWISE, ARISING OUT OF THIS AGREEMENT,
134
+ FOR ANY LOST PROFITS OR ANY INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL, EXEMPLARY OR PUNITIVE DAMAGES, EVEN
135
+ IF META OR ITS AFFILIATES HAVE BEEN ADVISED OF THE POSSIBILITY OF ANY OF THE FOREGOING.
136
+
137
+ 5. Intellectual Property.
138
+
139
+ a. No trademark licenses are granted under this Agreement, and in connection with the Llama Materials,
140
+ neither Meta nor Licensee may use any name or mark owned by or associated with the other or any of its affiliates,
141
+ except as required for reasonable and customary use in describing and redistributing the Llama Materials or as
142
+ set forth in this Section 5(a). Meta hereby grants you a license to use “Llama” (the “Mark”) solely as required
143
+ to comply with the last sentence of Section 1.b.i. You will comply with Meta’s brand guidelines (currently accessible
144
+ at https://about.meta.com/brand/resources/meta/company-brand/). All goodwill arising out of your use of the Mark
145
+ will inure to the benefit of Meta.
146
+
147
+ b. Subject to Meta’s ownership of Llama Materials and derivatives made by or for Meta, with respect to any
148
+ derivative works and modifications of the Llama Materials that are made by you, as between you and Meta,
149
+ you are and will be the owner of such derivative works and modifications.
150
+
151
+ c. If you institute litigation or other proceedings against Meta or any entity (including a cross-claim or
152
+ counterclaim in a lawsuit) alleging that the Llama Materials or Llama 3.2 outputs or results, or any portion
153
+ of any of the foregoing, constitutes infringement of intellectual property or other rights owned or licensable
154
+ by you, then any licenses granted to you under this Agreement shall terminate as of the date such litigation or
155
+ claim is filed or instituted. You will indemnify and hold harmless Meta from and against any claim by any third
156
+ party arising out of or related to your use or distribution of the Llama Materials.
157
+
158
+ 6. Term and Termination. The term of this Agreement will commence upon your acceptance of this Agreement or access
159
+ to the Llama Materials and will continue in full force and effect until terminated in accordance with the terms
160
+ and conditions herein. Meta may terminate this Agreement if you are in breach of any term or condition of this
161
+ Agreement. Upon termination of this Agreement, you shall delete and cease use of the Llama Materials. Sections 3,
162
+ 4 and 7 shall survive the termination of this Agreement.
163
+
164
+ 7. Governing Law and Jurisdiction. This Agreement will be governed and construed under the laws of the State of
165
+ California without regard to choice of law principles, and the UN Convention on Contracts for the International
166
+ Sale of Goods does not apply to this Agreement. The courts of California shall have exclusive jurisdiction of
167
+ any dispute arising out of this Agreement."
168
+ LICENSE "**Llama 3.2** **Acceptable Use Policy**
169
+
170
+ Meta is committed to promoting safe and fair use of its tools and features, including Llama 3.2. If you access or use Llama 3.2, you agree to this Acceptable Use Policy (“**Policy**”). The most recent copy of this policy can be found at [https://www.llama.com/llama3_2/use-policy](https://www.llama.com/llama3_2/use-policy).
171
+
172
+ **Prohibited Uses**
173
+
174
+ We want everyone to use Llama 3.2 safely and responsibly. You agree you will not use, or allow others to use, Llama 3.2 to:
175
+
176
+
177
+
178
+ 1. Violate the law or others’ rights, including to:
179
+ 1. Engage in, promote, generate, contribute to, encourage, plan, incite, or further illegal or unlawful activity or content, such as:
180
+ 1. Violence or terrorism
181
+ 2. Exploitation or harm to children, including the solicitation, creation, acquisition, or dissemination of child exploitative content or failure to report Child Sexual Abuse Material
182
+ 3. Human trafficking, exploitation, and sexual violence
183
+ 4. The illegal distribution of information or materials to minors, including obscene materials, or failure to employ legally required age-gating in connection with such information or materials.
184
+ 5. Sexual solicitation
185
+ 6. Any other criminal activity
186
+ 1. Engage in, promote, incite, or facilitate the harassment, abuse, threatening, or bullying of individuals or groups of individuals
187
+ 2. Engage in, promote, incite, or facilitate discrimination or other unlawful or harmful conduct in the provision of employment, employment benefits, credit, housing, other economic benefits, or other essential goods and services
188
+ 3. Engage in the unauthorized or unlicensed practice of any profession including, but not limited to, financial, legal, medical/health, or related professional practices
189
+ 4. Collect, process, disclose, generate, or infer private or sensitive information about individuals, including information about individuals’ identity, health, or demographic information, unless you have obtained the right to do so in accordance with applicable law
190
+ 5. Engage in or facilitate any action or generate any content that infringes, misappropriates, or otherwise violates any third-party rights, including the outputs or results of any products or services using the Llama Materials
191
+ 6. Create, generate, or facilitate the creation of malicious code, malware, computer viruses or do anything else that could disable, overburden, interfere with or impair the proper working, integrity, operation or appearance of a website or computer system
192
+ 7. Engage in any action, or facilitate any action, to intentionally circumvent or remove usage restrictions or other safety measures, or to enable functionality disabled by Meta
193
+ 2. Engage in, promote, incite, facilitate, or assist in the planning or development of activities that present a risk of death or bodily harm to individuals, including use of Llama 3.2 related to the following:
194
+ 8. Military, warfare, nuclear industries or applications, espionage, use for materials or activities that are subject to the International Traffic Arms Regulations (ITAR) maintained by the United States Department of State or to the U.S. Biological Weapons Anti-Terrorism Act of 1989 or the Chemical Weapons Convention Implementation Act of 1997
195
+ 9. Guns and illegal weapons (including weapon development)
196
+ 10. Illegal drugs and regulated/controlled substances
197
+ 11. Operation of critical infrastructure, transportation technologies, or heavy machinery
198
+ 12. Self-harm or harm to others, including suicide, cutting, and eating disorders
199
+ 13. Any content intended to incite or promote violence, abuse, or any infliction of bodily harm to an individual
200
+ 3. Intentionally deceive or mislead others, including use of Llama 3.2 related to the following:
201
+ 14. Generating, promoting, or furthering fraud or the creation or promotion of disinformation
202
+ 15. Generating, promoting, or furthering defamatory content, including the creation of defamatory statements, images, or other content
203
+ 16. Generating, promoting, or further distributing spam
204
+ 17. Impersonating another individual without consent, authorization, or legal right
205
+ 18. Representing that the use of Llama 3.2 or outputs are human-generated
206
+ With respect to any multimodal models included in Llama 3.2, the rights granted under Section 1(a) of the Llama 3.2 Community License Agreement are not being granted to you if you are an individual domiciled in, or a company with a principal place of business in, the European Union. This restriction does not apply to end users of a product or service that incorporates any such multimodal models.
207
+
208
+ Please report any violation of this Policy, software “bug,” or other problems that could lead to a violatio
209
+
210
+
211
+ * Reporting issues with the model: [https://github.com/meta-llama/llama-models/issues](https://l.workplace.com/l.php?u=https%3A%2F%2Fgithub.com%2Fmeta-llama%2Fllama-models%2Fissues&h=AT0qV8W9BFT6NwihiOHRuKYQM_UnkzN_NmHMy91OT55gkLpgi4kQupHUl0ssR4dQsIQ8n3tfd0vtkobvsEvt1l4Ic6GXI2EeuHV8N08OG2WnbAmm0FL4ObkazC6G_256vN0lN9DsykCvCqGZ)
212
+ * Reporting risky content generated by the model: [developers.facebook.com/llama_output_feedback](http://developers.facebook.com/llama_output_feedback)
213
+ * Reporting bugs and security concerns: [facebook.com/whitehat/info](http://facebook.com/whitehat/info)
214
+ * Reporting violations of the Acceptable Use Policy or unlicensed uses of Llama 3.2: [email protected]
215
+ """
llama3_2-3b-instruct-q3_K_M ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1fe0d0287b086dbee33c53511787b20f3bfdbaf24c2d4c7b10379a30058394ed
3
+ size 1687159008
llama3_2-3b-instruct-q3_K_M.modelfile ADDED
@@ -0,0 +1,215 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM llama3_2-3b-instruct-q3_K_M
2
+
3
+ TEMPLATE """
4
+ <|start_header_id|>system<|end_header_id|>
5
+
6
+ Cutting Knowledge Date: December 2023
7
+
8
+ {{ if .System }}{{ .System }}
9
+ {{- end }}
10
+ {{- if .Tools }}When you receive a tool call response, use the output to format an answer to the orginal user question.
11
+
12
+ You are a helpful assistant with tool calling capabilities.
13
+ {{- end }}<|eot_id|>
14
+ {{- range $i, $_ := .Messages }}
15
+ {{- $last := eq (len (slice $.Messages $i)) 1 }}
16
+ {{- if eq .Role "user" }}<|start_header_id|>user<|end_header_id|>
17
+ {{- if and $.Tools $last }}
18
+
19
+ Given the following functions, please respond with a JSON for a function call with its proper arguments that best answers the given prompt.
20
+
21
+ Respond in the format {"name": function name, "parameters": dictionary of argument name and its value}. Do not use variables.
22
+
23
+ {{ range $.Tools }}
24
+ {{- . }}
25
+ {{ end }}
26
+ {{ .Content }}<|eot_id|>
27
+ {{- else }}
28
+
29
+ {{ .Content }}<|eot_id|>
30
+ {{- end }}{{ if $last }}<|start_header_id|>assistant<|end_header_id|>
31
+
32
+ {{ end }}
33
+ {{- else if eq .Role "assistant" }}<|start_header_id|>assistant<|end_header_id|>
34
+ {{- if .ToolCalls }}
35
+ {{ range .ToolCalls }}
36
+ {"name": "{{ .Function.Name }}", "parameters": {{ .Function.Arguments }}}{{ end }}
37
+ {{- else }}
38
+
39
+ {{ .Content }}
40
+ {{- end }}{{ if not $last }}<|eot_id|>{{ end }}
41
+ {{- else if eq .Role "tool" }}<|start_header_id|>ipython<|end_header_id|>
42
+
43
+ {{ .Content }}<|eot_id|>{{ if $last }}<|start_header_id|>assistant<|end_header_id|>
44
+
45
+ {{ end }}
46
+ {{- end }}
47
+ {{- end }}
48
+ """
49
+
50
+ SYSTEM """You are a helpful AI assistant. The user you are helping speaks Traditional Chinese and comes from Taiwan."""
51
+ PARAMETER temperature 0
52
+ PARAMETER stop <|start_header_id|>
53
+ PARAMETER stop <|end_header_id|>
54
+ PARAMETER stop <|eot_id|>
55
+
56
+ LICENSE """
57
+ LLAMA 3.2 COMMUNITY LICENSE AGREEMENT
58
+ Llama 3.2 Version Release Date: September 25, 2024
59
+
60
+ “Agreement” means the terms and conditions for use, reproduction, distribution
61
+ and modification of the Llama Materials set forth herein.
62
+
63
+ “Documentation” means the specifications, manuals and documentation accompanying Llama 3.2
64
+ distributed by Meta at https://llama.meta.com/doc/overview.
65
+
66
+ “Licensee” or “you” means you, or your employer or any other person or entity (if you are
67
+ entering into this Agreement on such person or entity’s behalf), of the age required under
68
+ applicable laws, rules or regulations to provide legal consent and that has legal authority
69
+ to bind your employer or such other person or entity if you are entering in this Agreement
70
+ on their behalf.
71
+
72
+ “Llama 3.2” means the foundational large language models and software and algorithms, including
73
+ machine-learning model code, trained model weights, inference-enabling code, training-enabling code,
74
+ fine-tuning enabling code and other elements of the foregoing distributed by Meta at
75
+ https://www.llama.com/llama-downloads.
76
+
77
+ “Llama Materials” means, collectively, Meta’s proprietary Llama 3.2 and Documentation (and
78
+ any portion thereof) made available under this Agreement.
79
+
80
+ “Meta” or “we” means Meta Platforms Ireland Limited (if you are located in or,
81
+ if you are an entity, your principal place of business is in the EEA or Switzerland)
82
+ and Meta Platforms, Inc. (if you are located outside of the EEA or Switzerland).
83
+
84
+
85
+ By clicking “I Accept” below or by using or distributing any portion or element of the Llama Materials,
86
+ you agree to be bound by this Agreement.
87
+
88
+
89
+ 1. License Rights and Redistribution.
90
+
91
+ a. Grant of Rights. You are granted a non-exclusive, worldwide,
92
+ non-transferable and royalty-free limited license under Meta’s intellectual property or other rights
93
+ owned by Meta embodied in the Llama Materials to use, reproduce, distribute, copy, create derivative works
94
+ of, and make modifications to the Llama Materials.
95
+
96
+ b. Redistribution and Use.
97
+
98
+ i. If you distribute or make available the Llama Materials (or any derivative works thereof),
99
+ or a product or service (including another AI model) that contains any of them, you shall (A) provide
100
+ a copy of this Agreement with any such Llama Materials; and (B) prominently display “Built with Llama”
101
+ on a related website, user interface, blogpost, about page, or product documentation. If you use the
102
+ Llama Materials or any outputs or results of the Llama Materials to create, train, fine tune, or
103
+ otherwise improve an AI model, which is distributed or made available, you shall also include “Llama”
104
+ at the beginning of any such AI model name.
105
+
106
+ ii. If you receive Llama Materials, or any derivative works thereof, from a Licensee as part
107
+ of an integrated end user product, then Section 2 of this Agreement will not apply to you.
108
+
109
+ iii. You must retain in all copies of the Llama Materials that you distribute the
110
+ following attribution notice within a “Notice” text file distributed as a part of such copies:
111
+ “Llama 3.2 is licensed under the Llama 3.2 Community License, Copyright © Meta Platforms,
112
+ Inc. All Rights Reserved.”
113
+
114
+ iv. Your use of the Llama Materials must comply with applicable laws and regulations
115
+ (including trade compliance laws and regulations) and adhere to the Acceptable Use Policy for
116
+ the Llama Materials (available at https://www.llama.com/llama3_2/use-policy), which is hereby
117
+ incorporated by reference into this Agreement.
118
+
119
+ 2. Additional Commercial Terms. If, on the Llama 3.2 version release date, the monthly active users
120
+ of the products or services made available by or for Licensee, or Licensee’s affiliates,
121
+ is greater than 700 million monthly active users in the preceding calendar month, you must request
122
+ a license from Meta, which Meta may grant to you in its sole discretion, and you are not authorized to
123
+ exercise any of the rights under this Agreement unless or until Meta otherwise expressly grants you such rights.
124
+
125
+ 3. Disclaimer of Warranty. UNLESS REQUIRED BY APPLICABLE LAW, THE LLAMA MATERIALS AND ANY OUTPUT AND
126
+ RESULTS THEREFROM ARE PROVIDED ON AN “AS IS” BASIS, WITHOUT WARRANTIES OF ANY KIND, AND META DISCLAIMS
127
+ ALL WARRANTIES OF ANY KIND, BOTH EXPRESS AND IMPLIED, INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES
128
+ OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY, OR FITNESS FOR A PARTICULAR PURPOSE. YOU ARE SOLELY RESPONSIBLE
129
+ FOR DETERMINING THE APPROPRIATENESS OF USING OR REDISTRIBUTING THE LLAMA MATERIALS AND ASSUME ANY RISKS ASSOCIATED
130
+ WITH YOUR USE OF THE LLAMA MATERIALS AND ANY OUTPUT AND RESULTS.
131
+
132
+ 4. Limitation of Liability. IN NO EVENT WILL META OR ITS AFFILIATES BE LIABLE UNDER ANY THEORY OF LIABILITY,
133
+ WHETHER IN CONTRACT, TORT, NEGLIGENCE, PRODUCTS LIABILITY, OR OTHERWISE, ARISING OUT OF THIS AGREEMENT,
134
+ FOR ANY LOST PROFITS OR ANY INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL, EXEMPLARY OR PUNITIVE DAMAGES, EVEN
135
+ IF META OR ITS AFFILIATES HAVE BEEN ADVISED OF THE POSSIBILITY OF ANY OF THE FOREGOING.
136
+
137
+ 5. Intellectual Property.
138
+
139
+ a. No trademark licenses are granted under this Agreement, and in connection with the Llama Materials,
140
+ neither Meta nor Licensee may use any name or mark owned by or associated with the other or any of its affiliates,
141
+ except as required for reasonable and customary use in describing and redistributing the Llama Materials or as
142
+ set forth in this Section 5(a). Meta hereby grants you a license to use “Llama” (the “Mark”) solely as required
143
+ to comply with the last sentence of Section 1.b.i. You will comply with Meta’s brand guidelines (currently accessible
144
+ at https://about.meta.com/brand/resources/meta/company-brand/). All goodwill arising out of your use of the Mark
145
+ will inure to the benefit of Meta.
146
+
147
+ b. Subject to Meta’s ownership of Llama Materials and derivatives made by or for Meta, with respect to any
148
+ derivative works and modifications of the Llama Materials that are made by you, as between you and Meta,
149
+ you are and will be the owner of such derivative works and modifications.
150
+
151
+ c. If you institute litigation or other proceedings against Meta or any entity (including a cross-claim or
152
+ counterclaim in a lawsuit) alleging that the Llama Materials or Llama 3.2 outputs or results, or any portion
153
+ of any of the foregoing, constitutes infringement of intellectual property or other rights owned or licensable
154
+ by you, then any licenses granted to you under this Agreement shall terminate as of the date such litigation or
155
+ claim is filed or instituted. You will indemnify and hold harmless Meta from and against any claim by any third
156
+ party arising out of or related to your use or distribution of the Llama Materials.
157
+
158
+ 6. Term and Termination. The term of this Agreement will commence upon your acceptance of this Agreement or access
159
+ to the Llama Materials and will continue in full force and effect until terminated in accordance with the terms
160
+ and conditions herein. Meta may terminate this Agreement if you are in breach of any term or condition of this
161
+ Agreement. Upon termination of this Agreement, you shall delete and cease use of the Llama Materials. Sections 3,
162
+ 4 and 7 shall survive the termination of this Agreement.
163
+
164
+ 7. Governing Law and Jurisdiction. This Agreement will be governed and construed under the laws of the State of
165
+ California without regard to choice of law principles, and the UN Convention on Contracts for the International
166
+ Sale of Goods does not apply to this Agreement. The courts of California shall have exclusive jurisdiction of
167
+ any dispute arising out of this Agreement."
168
+ LICENSE "**Llama 3.2** **Acceptable Use Policy**
169
+
170
+ Meta is committed to promoting safe and fair use of its tools and features, including Llama 3.2. If you access or use Llama 3.2, you agree to this Acceptable Use Policy (“**Policy**”). The most recent copy of this policy can be found at [https://www.llama.com/llama3_2/use-policy](https://www.llama.com/llama3_2/use-policy).
171
+
172
+ **Prohibited Uses**
173
+
174
+ We want everyone to use Llama 3.2 safely and responsibly. You agree you will not use, or allow others to use, Llama 3.2 to:
175
+
176
+
177
+
178
+ 1. Violate the law or others’ rights, including to:
179
+ 1. Engage in, promote, generate, contribute to, encourage, plan, incite, or further illegal or unlawful activity or content, such as:
180
+ 1. Violence or terrorism
181
+ 2. Exploitation or harm to children, including the solicitation, creation, acquisition, or dissemination of child exploitative content or failure to report Child Sexual Abuse Material
182
+ 3. Human trafficking, exploitation, and sexual violence
183
+ 4. The illegal distribution of information or materials to minors, including obscene materials, or failure to employ legally required age-gating in connection with such information or materials.
184
+ 5. Sexual solicitation
185
+ 6. Any other criminal activity
186
+ 1. Engage in, promote, incite, or facilitate the harassment, abuse, threatening, or bullying of individuals or groups of individuals
187
+ 2. Engage in, promote, incite, or facilitate discrimination or other unlawful or harmful conduct in the provision of employment, employment benefits, credit, housing, other economic benefits, or other essential goods and services
188
+ 3. Engage in the unauthorized or unlicensed practice of any profession including, but not limited to, financial, legal, medical/health, or related professional practices
189
+ 4. Collect, process, disclose, generate, or infer private or sensitive information about individuals, including information about individuals’ identity, health, or demographic information, unless you have obtained the right to do so in accordance with applicable law
190
+ 5. Engage in or facilitate any action or generate any content that infringes, misappropriates, or otherwise violates any third-party rights, including the outputs or results of any products or services using the Llama Materials
191
+ 6. Create, generate, or facilitate the creation of malicious code, malware, computer viruses or do anything else that could disable, overburden, interfere with or impair the proper working, integrity, operation or appearance of a website or computer system
192
+ 7. Engage in any action, or facilitate any action, to intentionally circumvent or remove usage restrictions or other safety measures, or to enable functionality disabled by Meta
193
+ 2. Engage in, promote, incite, facilitate, or assist in the planning or development of activities that present a risk of death or bodily harm to individuals, including use of Llama 3.2 related to the following:
194
+ 8. Military, warfare, nuclear industries or applications, espionage, use for materials or activities that are subject to the International Traffic Arms Regulations (ITAR) maintained by the United States Department of State or to the U.S. Biological Weapons Anti-Terrorism Act of 1989 or the Chemical Weapons Convention Implementation Act of 1997
195
+ 9. Guns and illegal weapons (including weapon development)
196
+ 10. Illegal drugs and regulated/controlled substances
197
+ 11. Operation of critical infrastructure, transportation technologies, or heavy machinery
198
+ 12. Self-harm or harm to others, including suicide, cutting, and eating disorders
199
+ 13. Any content intended to incite or promote violence, abuse, or any infliction of bodily harm to an individual
200
+ 3. Intentionally deceive or mislead others, including use of Llama 3.2 related to the following:
201
+ 14. Generating, promoting, or furthering fraud or the creation or promotion of disinformation
202
+ 15. Generating, promoting, or furthering defamatory content, including the creation of defamatory statements, images, or other content
203
+ 16. Generating, promoting, or further distributing spam
204
+ 17. Impersonating another individual without consent, authorization, or legal right
205
+ 18. Representing that the use of Llama 3.2 or outputs are human-generated
206
+ With respect to any multimodal models included in Llama 3.2, the rights granted under Section 1(a) of the Llama 3.2 Community License Agreement are not being granted to you if you are an individual domiciled in, or a company with a principal place of business in, the European Union. This restriction does not apply to end users of a product or service that incorporates any such multimodal models.
207
+
208
+ Please report any violation of this Policy, software “bug,” or other problems that could lead to a violatio
209
+
210
+
211
+ * Reporting issues with the model: [https://github.com/meta-llama/llama-models/issues](https://l.workplace.com/l.php?u=https%3A%2F%2Fgithub.com%2Fmeta-llama%2Fllama-models%2Fissues&h=AT0qV8W9BFT6NwihiOHRuKYQM_UnkzN_NmHMy91OT55gkLpgi4kQupHUl0ssR4dQsIQ8n3tfd0vtkobvsEvt1l4Ic6GXI2EeuHV8N08OG2WnbAmm0FL4ObkazC6G_256vN0lN9DsykCvCqGZ)
212
+ * Reporting risky content generated by the model: [developers.facebook.com/llama_output_feedback](http://developers.facebook.com/llama_output_feedback)
213
+ * Reporting bugs and security concerns: [facebook.com/whitehat/info](http://facebook.com/whitehat/info)
214
+ * Reporting violations of the Acceptable Use Policy or unlicensed uses of Llama 3.2: [email protected]
215
+ """
llama3_2-3b-instruct-q4_K_M ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dde5aa3fc5ffc17176b5e8bdc82f587b24b2678c6c66101bf7da77af9f7ccdff
3
+ size 2019377376
llama3_2-3b-instruct-q4_K_M.modelfile ADDED
@@ -0,0 +1,215 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM llama3_2-3b-instruct-q4_K_M
2
+
3
+ TEMPLATE """
4
+ <|start_header_id|>system<|end_header_id|>
5
+
6
+ Cutting Knowledge Date: December 2023
7
+
8
+ {{ if .System }}{{ .System }}
9
+ {{- end }}
10
+ {{- if .Tools }}When you receive a tool call response, use the output to format an answer to the orginal user question.
11
+
12
+ You are a helpful assistant with tool calling capabilities.
13
+ {{- end }}<|eot_id|>
14
+ {{- range $i, $_ := .Messages }}
15
+ {{- $last := eq (len (slice $.Messages $i)) 1 }}
16
+ {{- if eq .Role "user" }}<|start_header_id|>user<|end_header_id|>
17
+ {{- if and $.Tools $last }}
18
+
19
+ Given the following functions, please respond with a JSON for a function call with its proper arguments that best answers the given prompt.
20
+
21
+ Respond in the format {"name": function name, "parameters": dictionary of argument name and its value}. Do not use variables.
22
+
23
+ {{ range $.Tools }}
24
+ {{- . }}
25
+ {{ end }}
26
+ {{ .Content }}<|eot_id|>
27
+ {{- else }}
28
+
29
+ {{ .Content }}<|eot_id|>
30
+ {{- end }}{{ if $last }}<|start_header_id|>assistant<|end_header_id|>
31
+
32
+ {{ end }}
33
+ {{- else if eq .Role "assistant" }}<|start_header_id|>assistant<|end_header_id|>
34
+ {{- if .ToolCalls }}
35
+ {{ range .ToolCalls }}
36
+ {"name": "{{ .Function.Name }}", "parameters": {{ .Function.Arguments }}}{{ end }}
37
+ {{- else }}
38
+
39
+ {{ .Content }}
40
+ {{- end }}{{ if not $last }}<|eot_id|>{{ end }}
41
+ {{- else if eq .Role "tool" }}<|start_header_id|>ipython<|end_header_id|>
42
+
43
+ {{ .Content }}<|eot_id|>{{ if $last }}<|start_header_id|>assistant<|end_header_id|>
44
+
45
+ {{ end }}
46
+ {{- end }}
47
+ {{- end }}
48
+ """
49
+
50
+ SYSTEM """You are a helpful AI assistant. The user you are helping speaks Traditional Chinese and comes from Taiwan."""
51
+ PARAMETER temperature 0
52
+ PARAMETER stop <|start_header_id|>
53
+ PARAMETER stop <|end_header_id|>
54
+ PARAMETER stop <|eot_id|>
55
+
56
+ LICENSE """
57
+ LLAMA 3.2 COMMUNITY LICENSE AGREEMENT
58
+ Llama 3.2 Version Release Date: September 25, 2024
59
+
60
+ “Agreement” means the terms and conditions for use, reproduction, distribution
61
+ and modification of the Llama Materials set forth herein.
62
+
63
+ “Documentation” means the specifications, manuals and documentation accompanying Llama 3.2
64
+ distributed by Meta at https://llama.meta.com/doc/overview.
65
+
66
+ “Licensee” or “you” means you, or your employer or any other person or entity (if you are
67
+ entering into this Agreement on such person or entity’s behalf), of the age required under
68
+ applicable laws, rules or regulations to provide legal consent and that has legal authority
69
+ to bind your employer or such other person or entity if you are entering in this Agreement
70
+ on their behalf.
71
+
72
+ “Llama 3.2” means the foundational large language models and software and algorithms, including
73
+ machine-learning model code, trained model weights, inference-enabling code, training-enabling code,
74
+ fine-tuning enabling code and other elements of the foregoing distributed by Meta at
75
+ https://www.llama.com/llama-downloads.
76
+
77
+ “Llama Materials” means, collectively, Meta’s proprietary Llama 3.2 and Documentation (and
78
+ any portion thereof) made available under this Agreement.
79
+
80
+ “Meta” or “we” means Meta Platforms Ireland Limited (if you are located in or,
81
+ if you are an entity, your principal place of business is in the EEA or Switzerland)
82
+ and Meta Platforms, Inc. (if you are located outside of the EEA or Switzerland).
83
+
84
+
85
+ By clicking “I Accept” below or by using or distributing any portion or element of the Llama Materials,
86
+ you agree to be bound by this Agreement.
87
+
88
+
89
+ 1. License Rights and Redistribution.
90
+
91
+ a. Grant of Rights. You are granted a non-exclusive, worldwide,
92
+ non-transferable and royalty-free limited license under Meta’s intellectual property or other rights
93
+ owned by Meta embodied in the Llama Materials to use, reproduce, distribute, copy, create derivative works
94
+ of, and make modifications to the Llama Materials.
95
+
96
+ b. Redistribution and Use.
97
+
98
+ i. If you distribute or make available the Llama Materials (or any derivative works thereof),
99
+ or a product or service (including another AI model) that contains any of them, you shall (A) provide
100
+ a copy of this Agreement with any such Llama Materials; and (B) prominently display “Built with Llama”
101
+ on a related website, user interface, blogpost, about page, or product documentation. If you use the
102
+ Llama Materials or any outputs or results of the Llama Materials to create, train, fine tune, or
103
+ otherwise improve an AI model, which is distributed or made available, you shall also include “Llama”
104
+ at the beginning of any such AI model name.
105
+
106
+ ii. If you receive Llama Materials, or any derivative works thereof, from a Licensee as part
107
+ of an integrated end user product, then Section 2 of this Agreement will not apply to you.
108
+
109
+ iii. You must retain in all copies of the Llama Materials that you distribute the
110
+ following attribution notice within a “Notice” text file distributed as a part of such copies:
111
+ “Llama 3.2 is licensed under the Llama 3.2 Community License, Copyright © Meta Platforms,
112
+ Inc. All Rights Reserved.”
113
+
114
+ iv. Your use of the Llama Materials must comply with applicable laws and regulations
115
+ (including trade compliance laws and regulations) and adhere to the Acceptable Use Policy for
116
+ the Llama Materials (available at https://www.llama.com/llama3_2/use-policy), which is hereby
117
+ incorporated by reference into this Agreement.
118
+
119
+ 2. Additional Commercial Terms. If, on the Llama 3.2 version release date, the monthly active users
120
+ of the products or services made available by or for Licensee, or Licensee’s affiliates,
121
+ is greater than 700 million monthly active users in the preceding calendar month, you must request
122
+ a license from Meta, which Meta may grant to you in its sole discretion, and you are not authorized to
123
+ exercise any of the rights under this Agreement unless or until Meta otherwise expressly grants you such rights.
124
+
125
+ 3. Disclaimer of Warranty. UNLESS REQUIRED BY APPLICABLE LAW, THE LLAMA MATERIALS AND ANY OUTPUT AND
126
+ RESULTS THEREFROM ARE PROVIDED ON AN “AS IS” BASIS, WITHOUT WARRANTIES OF ANY KIND, AND META DISCLAIMS
127
+ ALL WARRANTIES OF ANY KIND, BOTH EXPRESS AND IMPLIED, INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES
128
+ OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY, OR FITNESS FOR A PARTICULAR PURPOSE. YOU ARE SOLELY RESPONSIBLE
129
+ FOR DETERMINING THE APPROPRIATENESS OF USING OR REDISTRIBUTING THE LLAMA MATERIALS AND ASSUME ANY RISKS ASSOCIATED
130
+ WITH YOUR USE OF THE LLAMA MATERIALS AND ANY OUTPUT AND RESULTS.
131
+
132
+ 4. Limitation of Liability. IN NO EVENT WILL META OR ITS AFFILIATES BE LIABLE UNDER ANY THEORY OF LIABILITY,
133
+ WHETHER IN CONTRACT, TORT, NEGLIGENCE, PRODUCTS LIABILITY, OR OTHERWISE, ARISING OUT OF THIS AGREEMENT,
134
+ FOR ANY LOST PROFITS OR ANY INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL, EXEMPLARY OR PUNITIVE DAMAGES, EVEN
135
+ IF META OR ITS AFFILIATES HAVE BEEN ADVISED OF THE POSSIBILITY OF ANY OF THE FOREGOING.
136
+
137
+ 5. Intellectual Property.
138
+
139
+ a. No trademark licenses are granted under this Agreement, and in connection with the Llama Materials,
140
+ neither Meta nor Licensee may use any name or mark owned by or associated with the other or any of its affiliates,
141
+ except as required for reasonable and customary use in describing and redistributing the Llama Materials or as
142
+ set forth in this Section 5(a). Meta hereby grants you a license to use “Llama” (the “Mark”) solely as required
143
+ to comply with the last sentence of Section 1.b.i. You will comply with Meta’s brand guidelines (currently accessible
144
+ at https://about.meta.com/brand/resources/meta/company-brand/). All goodwill arising out of your use of the Mark
145
+ will inure to the benefit of Meta.
146
+
147
+ b. Subject to Meta’s ownership of Llama Materials and derivatives made by or for Meta, with respect to any
148
+ derivative works and modifications of the Llama Materials that are made by you, as between you and Meta,
149
+ you are and will be the owner of such derivative works and modifications.
150
+
151
+ c. If you institute litigation or other proceedings against Meta or any entity (including a cross-claim or
152
+ counterclaim in a lawsuit) alleging that the Llama Materials or Llama 3.2 outputs or results, or any portion
153
+ of any of the foregoing, constitutes infringement of intellectual property or other rights owned or licensable
154
+ by you, then any licenses granted to you under this Agreement shall terminate as of the date such litigation or
155
+ claim is filed or instituted. You will indemnify and hold harmless Meta from and against any claim by any third
156
+ party arising out of or related to your use or distribution of the Llama Materials.
157
+
158
+ 6. Term and Termination. The term of this Agreement will commence upon your acceptance of this Agreement or access
159
+ to the Llama Materials and will continue in full force and effect until terminated in accordance with the terms
160
+ and conditions herein. Meta may terminate this Agreement if you are in breach of any term or condition of this
161
+ Agreement. Upon termination of this Agreement, you shall delete and cease use of the Llama Materials. Sections 3,
162
+ 4 and 7 shall survive the termination of this Agreement.
163
+
164
+ 7. Governing Law and Jurisdiction. This Agreement will be governed and construed under the laws of the State of
165
+ California without regard to choice of law principles, and the UN Convention on Contracts for the International
166
+ Sale of Goods does not apply to this Agreement. The courts of California shall have exclusive jurisdiction of
167
+ any dispute arising out of this Agreement."
168
+ LICENSE "**Llama 3.2** **Acceptable Use Policy**
169
+
170
+ Meta is committed to promoting safe and fair use of its tools and features, including Llama 3.2. If you access or use Llama 3.2, you agree to this Acceptable Use Policy (“**Policy**”). The most recent copy of this policy can be found at [https://www.llama.com/llama3_2/use-policy](https://www.llama.com/llama3_2/use-policy).
171
+
172
+ **Prohibited Uses**
173
+
174
+ We want everyone to use Llama 3.2 safely and responsibly. You agree you will not use, or allow others to use, Llama 3.2 to:
175
+
176
+
177
+
178
+ 1. Violate the law or others’ rights, including to:
179
+ 1. Engage in, promote, generate, contribute to, encourage, plan, incite, or further illegal or unlawful activity or content, such as:
180
+ 1. Violence or terrorism
181
+ 2. Exploitation or harm to children, including the solicitation, creation, acquisition, or dissemination of child exploitative content or failure to report Child Sexual Abuse Material
182
+ 3. Human trafficking, exploitation, and sexual violence
183
+ 4. The illegal distribution of information or materials to minors, including obscene materials, or failure to employ legally required age-gating in connection with such information or materials.
184
+ 5. Sexual solicitation
185
+ 6. Any other criminal activity
186
+ 1. Engage in, promote, incite, or facilitate the harassment, abuse, threatening, or bullying of individuals or groups of individuals
187
+ 2. Engage in, promote, incite, or facilitate discrimination or other unlawful or harmful conduct in the provision of employment, employment benefits, credit, housing, other economic benefits, or other essential goods and services
188
+ 3. Engage in the unauthorized or unlicensed practice of any profession including, but not limited to, financial, legal, medical/health, or related professional practices
189
+ 4. Collect, process, disclose, generate, or infer private or sensitive information about individuals, including information about individuals’ identity, health, or demographic information, unless you have obtained the right to do so in accordance with applicable law
190
+ 5. Engage in or facilitate any action or generate any content that infringes, misappropriates, or otherwise violates any third-party rights, including the outputs or results of any products or services using the Llama Materials
191
+ 6. Create, generate, or facilitate the creation of malicious code, malware, computer viruses or do anything else that could disable, overburden, interfere with or impair the proper working, integrity, operation or appearance of a website or computer system
192
+ 7. Engage in any action, or facilitate any action, to intentionally circumvent or remove usage restrictions or other safety measures, or to enable functionality disabled by Meta
193
+ 2. Engage in, promote, incite, facilitate, or assist in the planning or development of activities that present a risk of death or bodily harm to individuals, including use of Llama 3.2 related to the following:
194
+ 8. Military, warfare, nuclear industries or applications, espionage, use for materials or activities that are subject to the International Traffic Arms Regulations (ITAR) maintained by the United States Department of State or to the U.S. Biological Weapons Anti-Terrorism Act of 1989 or the Chemical Weapons Convention Implementation Act of 1997
195
+ 9. Guns and illegal weapons (including weapon development)
196
+ 10. Illegal drugs and regulated/controlled substances
197
+ 11. Operation of critical infrastructure, transportation technologies, or heavy machinery
198
+ 12. Self-harm or harm to others, including suicide, cutting, and eating disorders
199
+ 13. Any content intended to incite or promote violence, abuse, or any infliction of bodily harm to an individual
200
+ 3. Intentionally deceive or mislead others, including use of Llama 3.2 related to the following:
201
+ 14. Generating, promoting, or furthering fraud or the creation or promotion of disinformation
202
+ 15. Generating, promoting, or furthering defamatory content, including the creation of defamatory statements, images, or other content
203
+ 16. Generating, promoting, or further distributing spam
204
+ 17. Impersonating another individual without consent, authorization, or legal right
205
+ 18. Representing that the use of Llama 3.2 or outputs are human-generated
206
+ With respect to any multimodal models included in Llama 3.2, the rights granted under Section 1(a) of the Llama 3.2 Community License Agreement are not being granted to you if you are an individual domiciled in, or a company with a principal place of business in, the European Union. This restriction does not apply to end users of a product or service that incorporates any such multimodal models.
207
+
208
+ Please report any violation of this Policy, software “bug,” or other problems that could lead to a violatio
209
+
210
+
211
+ * Reporting issues with the model: [https://github.com/meta-llama/llama-models/issues](https://l.workplace.com/l.php?u=https%3A%2F%2Fgithub.com%2Fmeta-llama%2Fllama-models%2Fissues&h=AT0qV8W9BFT6NwihiOHRuKYQM_UnkzN_NmHMy91OT55gkLpgi4kQupHUl0ssR4dQsIQ8n3tfd0vtkobvsEvt1l4Ic6GXI2EeuHV8N08OG2WnbAmm0FL4ObkazC6G_256vN0lN9DsykCvCqGZ)
212
+ * Reporting risky content generated by the model: [developers.facebook.com/llama_output_feedback](http://developers.facebook.com/llama_output_feedback)
213
+ * Reporting bugs and security concerns: [facebook.com/whitehat/info](http://facebook.com/whitehat/info)
214
+ * Reporting violations of the Acceptable Use Policy or unlicensed uses of Llama 3.2: [email protected]
215
+ """
llama3_2-3b-instruct-q5_K_M ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:05fc42664a9311c427413f9bf2077bd5ee7d59d6a5a034d54fc738f93976d065
3
+ size 2322153696
llama3_2-3b-instruct-q5_K_M.modelfile ADDED
@@ -0,0 +1,215 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM llama3_2-3b-instruct-q5_K_M
2
+
3
+ TEMPLATE """
4
+ <|start_header_id|>system<|end_header_id|>
5
+
6
+ Cutting Knowledge Date: December 2023
7
+
8
+ {{ if .System }}{{ .System }}
9
+ {{- end }}
10
+ {{- if .Tools }}When you receive a tool call response, use the output to format an answer to the orginal user question.
11
+
12
+ You are a helpful assistant with tool calling capabilities.
13
+ {{- end }}<|eot_id|>
14
+ {{- range $i, $_ := .Messages }}
15
+ {{- $last := eq (len (slice $.Messages $i)) 1 }}
16
+ {{- if eq .Role "user" }}<|start_header_id|>user<|end_header_id|>
17
+ {{- if and $.Tools $last }}
18
+
19
+ Given the following functions, please respond with a JSON for a function call with its proper arguments that best answers the given prompt.
20
+
21
+ Respond in the format {"name": function name, "parameters": dictionary of argument name and its value}. Do not use variables.
22
+
23
+ {{ range $.Tools }}
24
+ {{- . }}
25
+ {{ end }}
26
+ {{ .Content }}<|eot_id|>
27
+ {{- else }}
28
+
29
+ {{ .Content }}<|eot_id|>
30
+ {{- end }}{{ if $last }}<|start_header_id|>assistant<|end_header_id|>
31
+
32
+ {{ end }}
33
+ {{- else if eq .Role "assistant" }}<|start_header_id|>assistant<|end_header_id|>
34
+ {{- if .ToolCalls }}
35
+ {{ range .ToolCalls }}
36
+ {"name": "{{ .Function.Name }}", "parameters": {{ .Function.Arguments }}}{{ end }}
37
+ {{- else }}
38
+
39
+ {{ .Content }}
40
+ {{- end }}{{ if not $last }}<|eot_id|>{{ end }}
41
+ {{- else if eq .Role "tool" }}<|start_header_id|>ipython<|end_header_id|>
42
+
43
+ {{ .Content }}<|eot_id|>{{ if $last }}<|start_header_id|>assistant<|end_header_id|>
44
+
45
+ {{ end }}
46
+ {{- end }}
47
+ {{- end }}
48
+ """
49
+
50
+ SYSTEM """You are a helpful AI assistant. The user you are helping speaks Traditional Chinese and comes from Taiwan."""
51
+ PARAMETER temperature 0
52
+ PARAMETER stop <|start_header_id|>
53
+ PARAMETER stop <|end_header_id|>
54
+ PARAMETER stop <|eot_id|>
55
+
56
+ LICENSE """
57
+ LLAMA 3.2 COMMUNITY LICENSE AGREEMENT
58
+ Llama 3.2 Version Release Date: September 25, 2024
59
+
60
+ “Agreement” means the terms and conditions for use, reproduction, distribution
61
+ and modification of the Llama Materials set forth herein.
62
+
63
+ “Documentation” means the specifications, manuals and documentation accompanying Llama 3.2
64
+ distributed by Meta at https://llama.meta.com/doc/overview.
65
+
66
+ “Licensee” or “you” means you, or your employer or any other person or entity (if you are
67
+ entering into this Agreement on such person or entity’s behalf), of the age required under
68
+ applicable laws, rules or regulations to provide legal consent and that has legal authority
69
+ to bind your employer or such other person or entity if you are entering in this Agreement
70
+ on their behalf.
71
+
72
+ “Llama 3.2” means the foundational large language models and software and algorithms, including
73
+ machine-learning model code, trained model weights, inference-enabling code, training-enabling code,
74
+ fine-tuning enabling code and other elements of the foregoing distributed by Meta at
75
+ https://www.llama.com/llama-downloads.
76
+
77
+ “Llama Materials” means, collectively, Meta’s proprietary Llama 3.2 and Documentation (and
78
+ any portion thereof) made available under this Agreement.
79
+
80
+ “Meta” or “we” means Meta Platforms Ireland Limited (if you are located in or,
81
+ if you are an entity, your principal place of business is in the EEA or Switzerland)
82
+ and Meta Platforms, Inc. (if you are located outside of the EEA or Switzerland).
83
+
84
+
85
+ By clicking “I Accept” below or by using or distributing any portion or element of the Llama Materials,
86
+ you agree to be bound by this Agreement.
87
+
88
+
89
+ 1. License Rights and Redistribution.
90
+
91
+ a. Grant of Rights. You are granted a non-exclusive, worldwide,
92
+ non-transferable and royalty-free limited license under Meta’s intellectual property or other rights
93
+ owned by Meta embodied in the Llama Materials to use, reproduce, distribute, copy, create derivative works
94
+ of, and make modifications to the Llama Materials.
95
+
96
+ b. Redistribution and Use.
97
+
98
+ i. If you distribute or make available the Llama Materials (or any derivative works thereof),
99
+ or a product or service (including another AI model) that contains any of them, you shall (A) provide
100
+ a copy of this Agreement with any such Llama Materials; and (B) prominently display “Built with Llama”
101
+ on a related website, user interface, blogpost, about page, or product documentation. If you use the
102
+ Llama Materials or any outputs or results of the Llama Materials to create, train, fine tune, or
103
+ otherwise improve an AI model, which is distributed or made available, you shall also include “Llama”
104
+ at the beginning of any such AI model name.
105
+
106
+ ii. If you receive Llama Materials, or any derivative works thereof, from a Licensee as part
107
+ of an integrated end user product, then Section 2 of this Agreement will not apply to you.
108
+
109
+ iii. You must retain in all copies of the Llama Materials that you distribute the
110
+ following attribution notice within a “Notice” text file distributed as a part of such copies:
111
+ “Llama 3.2 is licensed under the Llama 3.2 Community License, Copyright © Meta Platforms,
112
+ Inc. All Rights Reserved.”
113
+
114
+ iv. Your use of the Llama Materials must comply with applicable laws and regulations
115
+ (including trade compliance laws and regulations) and adhere to the Acceptable Use Policy for
116
+ the Llama Materials (available at https://www.llama.com/llama3_2/use-policy), which is hereby
117
+ incorporated by reference into this Agreement.
118
+
119
+ 2. Additional Commercial Terms. If, on the Llama 3.2 version release date, the monthly active users
120
+ of the products or services made available by or for Licensee, or Licensee’s affiliates,
121
+ is greater than 700 million monthly active users in the preceding calendar month, you must request
122
+ a license from Meta, which Meta may grant to you in its sole discretion, and you are not authorized to
123
+ exercise any of the rights under this Agreement unless or until Meta otherwise expressly grants you such rights.
124
+
125
+ 3. Disclaimer of Warranty. UNLESS REQUIRED BY APPLICABLE LAW, THE LLAMA MATERIALS AND ANY OUTPUT AND
126
+ RESULTS THEREFROM ARE PROVIDED ON AN “AS IS” BASIS, WITHOUT WARRANTIES OF ANY KIND, AND META DISCLAIMS
127
+ ALL WARRANTIES OF ANY KIND, BOTH EXPRESS AND IMPLIED, INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES
128
+ OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY, OR FITNESS FOR A PARTICULAR PURPOSE. YOU ARE SOLELY RESPONSIBLE
129
+ FOR DETERMINING THE APPROPRIATENESS OF USING OR REDISTRIBUTING THE LLAMA MATERIALS AND ASSUME ANY RISKS ASSOCIATED
130
+ WITH YOUR USE OF THE LLAMA MATERIALS AND ANY OUTPUT AND RESULTS.
131
+
132
+ 4. Limitation of Liability. IN NO EVENT WILL META OR ITS AFFILIATES BE LIABLE UNDER ANY THEORY OF LIABILITY,
133
+ WHETHER IN CONTRACT, TORT, NEGLIGENCE, PRODUCTS LIABILITY, OR OTHERWISE, ARISING OUT OF THIS AGREEMENT,
134
+ FOR ANY LOST PROFITS OR ANY INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL, EXEMPLARY OR PUNITIVE DAMAGES, EVEN
135
+ IF META OR ITS AFFILIATES HAVE BEEN ADVISED OF THE POSSIBILITY OF ANY OF THE FOREGOING.
136
+
137
+ 5. Intellectual Property.
138
+
139
+ a. No trademark licenses are granted under this Agreement, and in connection with the Llama Materials,
140
+ neither Meta nor Licensee may use any name or mark owned by or associated with the other or any of its affiliates,
141
+ except as required for reasonable and customary use in describing and redistributing the Llama Materials or as
142
+ set forth in this Section 5(a). Meta hereby grants you a license to use “Llama” (the “Mark”) solely as required
143
+ to comply with the last sentence of Section 1.b.i. You will comply with Meta’s brand guidelines (currently accessible
144
+ at https://about.meta.com/brand/resources/meta/company-brand/). All goodwill arising out of your use of the Mark
145
+ will inure to the benefit of Meta.
146
+
147
+ b. Subject to Meta’s ownership of Llama Materials and derivatives made by or for Meta, with respect to any
148
+ derivative works and modifications of the Llama Materials that are made by you, as between you and Meta,
149
+ you are and will be the owner of such derivative works and modifications.
150
+
151
+ c. If you institute litigation or other proceedings against Meta or any entity (including a cross-claim or
152
+ counterclaim in a lawsuit) alleging that the Llama Materials or Llama 3.2 outputs or results, or any portion
153
+ of any of the foregoing, constitutes infringement of intellectual property or other rights owned or licensable
154
+ by you, then any licenses granted to you under this Agreement shall terminate as of the date such litigation or
155
+ claim is filed or instituted. You will indemnify and hold harmless Meta from and against any claim by any third
156
+ party arising out of or related to your use or distribution of the Llama Materials.
157
+
158
+ 6. Term and Termination. The term of this Agreement will commence upon your acceptance of this Agreement or access
159
+ to the Llama Materials and will continue in full force and effect until terminated in accordance with the terms
160
+ and conditions herein. Meta may terminate this Agreement if you are in breach of any term or condition of this
161
+ Agreement. Upon termination of this Agreement, you shall delete and cease use of the Llama Materials. Sections 3,
162
+ 4 and 7 shall survive the termination of this Agreement.
163
+
164
+ 7. Governing Law and Jurisdiction. This Agreement will be governed and construed under the laws of the State of
165
+ California without regard to choice of law principles, and the UN Convention on Contracts for the International
166
+ Sale of Goods does not apply to this Agreement. The courts of California shall have exclusive jurisdiction of
167
+ any dispute arising out of this Agreement."
168
+ LICENSE "**Llama 3.2** **Acceptable Use Policy**
169
+
170
+ Meta is committed to promoting safe and fair use of its tools and features, including Llama 3.2. If you access or use Llama 3.2, you agree to this Acceptable Use Policy (“**Policy**”). The most recent copy of this policy can be found at [https://www.llama.com/llama3_2/use-policy](https://www.llama.com/llama3_2/use-policy).
171
+
172
+ **Prohibited Uses**
173
+
174
+ We want everyone to use Llama 3.2 safely and responsibly. You agree you will not use, or allow others to use, Llama 3.2 to:
175
+
176
+
177
+
178
+ 1. Violate the law or others’ rights, including to:
179
+ 1. Engage in, promote, generate, contribute to, encourage, plan, incite, or further illegal or unlawful activity or content, such as:
180
+ 1. Violence or terrorism
181
+ 2. Exploitation or harm to children, including the solicitation, creation, acquisition, or dissemination of child exploitative content or failure to report Child Sexual Abuse Material
182
+ 3. Human trafficking, exploitation, and sexual violence
183
+ 4. The illegal distribution of information or materials to minors, including obscene materials, or failure to employ legally required age-gating in connection with such information or materials.
184
+ 5. Sexual solicitation
185
+ 6. Any other criminal activity
186
+ 1. Engage in, promote, incite, or facilitate the harassment, abuse, threatening, or bullying of individuals or groups of individuals
187
+ 2. Engage in, promote, incite, or facilitate discrimination or other unlawful or harmful conduct in the provision of employment, employment benefits, credit, housing, other economic benefits, or other essential goods and services
188
+ 3. Engage in the unauthorized or unlicensed practice of any profession including, but not limited to, financial, legal, medical/health, or related professional practices
189
+ 4. Collect, process, disclose, generate, or infer private or sensitive information about individuals, including information about individuals’ identity, health, or demographic information, unless you have obtained the right to do so in accordance with applicable law
190
+ 5. Engage in or facilitate any action or generate any content that infringes, misappropriates, or otherwise violates any third-party rights, including the outputs or results of any products or services using the Llama Materials
191
+ 6. Create, generate, or facilitate the creation of malicious code, malware, computer viruses or do anything else that could disable, overburden, interfere with or impair the proper working, integrity, operation or appearance of a website or computer system
192
+ 7. Engage in any action, or facilitate any action, to intentionally circumvent or remove usage restrictions or other safety measures, or to enable functionality disabled by Meta
193
+ 2. Engage in, promote, incite, facilitate, or assist in the planning or development of activities that present a risk of death or bodily harm to individuals, including use of Llama 3.2 related to the following:
194
+ 8. Military, warfare, nuclear industries or applications, espionage, use for materials or activities that are subject to the International Traffic Arms Regulations (ITAR) maintained by the United States Department of State or to the U.S. Biological Weapons Anti-Terrorism Act of 1989 or the Chemical Weapons Convention Implementation Act of 1997
195
+ 9. Guns and illegal weapons (including weapon development)
196
+ 10. Illegal drugs and regulated/controlled substances
197
+ 11. Operation of critical infrastructure, transportation technologies, or heavy machinery
198
+ 12. Self-harm or harm to others, including suicide, cutting, and eating disorders
199
+ 13. Any content intended to incite or promote violence, abuse, or any infliction of bodily harm to an individual
200
+ 3. Intentionally deceive or mislead others, including use of Llama 3.2 related to the following:
201
+ 14. Generating, promoting, or furthering fraud or the creation or promotion of disinformation
202
+ 15. Generating, promoting, or furthering defamatory content, including the creation of defamatory statements, images, or other content
203
+ 16. Generating, promoting, or further distributing spam
204
+ 17. Impersonating another individual without consent, authorization, or legal right
205
+ 18. Representing that the use of Llama 3.2 or outputs are human-generated
206
+ With respect to any multimodal models included in Llama 3.2, the rights granted under Section 1(a) of the Llama 3.2 Community License Agreement are not being granted to you if you are an individual domiciled in, or a company with a principal place of business in, the European Union. This restriction does not apply to end users of a product or service that incorporates any such multimodal models.
207
+
208
+ Please report any violation of this Policy, software “bug,” or other problems that could lead to a violatio
209
+
210
+
211
+ * Reporting issues with the model: [https://github.com/meta-llama/llama-models/issues](https://l.workplace.com/l.php?u=https%3A%2F%2Fgithub.com%2Fmeta-llama%2Fllama-models%2Fissues&h=AT0qV8W9BFT6NwihiOHRuKYQM_UnkzN_NmHMy91OT55gkLpgi4kQupHUl0ssR4dQsIQ8n3tfd0vtkobvsEvt1l4Ic6GXI2EeuHV8N08OG2WnbAmm0FL4ObkazC6G_256vN0lN9DsykCvCqGZ)
212
+ * Reporting risky content generated by the model: [developers.facebook.com/llama_output_feedback](http://developers.facebook.com/llama_output_feedback)
213
+ * Reporting bugs and security concerns: [facebook.com/whitehat/info](http://facebook.com/whitehat/info)
214
+ * Reporting violations of the Acceptable Use Policy or unlicensed uses of Llama 3.2: [email protected]
215
+ """
llama3_2-3b-instruct-q6_K ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0ba5c285c16ba078b17959f8ee1ad4142d161c99c6e3e8c713aeb7a0316a95a8
3
+ size 2643853536
llama3_2-3b-instruct-q6_K.modelfile ADDED
@@ -0,0 +1,215 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM llama3_2-3b-instruct-q6_K
2
+
3
+ TEMPLATE """
4
+ <|start_header_id|>system<|end_header_id|>
5
+
6
+ Cutting Knowledge Date: December 2023
7
+
8
+ {{ if .System }}{{ .System }}
9
+ {{- end }}
10
+ {{- if .Tools }}When you receive a tool call response, use the output to format an answer to the orginal user question.
11
+
12
+ You are a helpful assistant with tool calling capabilities.
13
+ {{- end }}<|eot_id|>
14
+ {{- range $i, $_ := .Messages }}
15
+ {{- $last := eq (len (slice $.Messages $i)) 1 }}
16
+ {{- if eq .Role "user" }}<|start_header_id|>user<|end_header_id|>
17
+ {{- if and $.Tools $last }}
18
+
19
+ Given the following functions, please respond with a JSON for a function call with its proper arguments that best answers the given prompt.
20
+
21
+ Respond in the format {"name": function name, "parameters": dictionary of argument name and its value}. Do not use variables.
22
+
23
+ {{ range $.Tools }}
24
+ {{- . }}
25
+ {{ end }}
26
+ {{ .Content }}<|eot_id|>
27
+ {{- else }}
28
+
29
+ {{ .Content }}<|eot_id|>
30
+ {{- end }}{{ if $last }}<|start_header_id|>assistant<|end_header_id|>
31
+
32
+ {{ end }}
33
+ {{- else if eq .Role "assistant" }}<|start_header_id|>assistant<|end_header_id|>
34
+ {{- if .ToolCalls }}
35
+ {{ range .ToolCalls }}
36
+ {"name": "{{ .Function.Name }}", "parameters": {{ .Function.Arguments }}}{{ end }}
37
+ {{- else }}
38
+
39
+ {{ .Content }}
40
+ {{- end }}{{ if not $last }}<|eot_id|>{{ end }}
41
+ {{- else if eq .Role "tool" }}<|start_header_id|>ipython<|end_header_id|>
42
+
43
+ {{ .Content }}<|eot_id|>{{ if $last }}<|start_header_id|>assistant<|end_header_id|>
44
+
45
+ {{ end }}
46
+ {{- end }}
47
+ {{- end }}
48
+ """
49
+
50
+ SYSTEM """You are a helpful AI assistant. The user you are helping speaks Traditional Chinese and comes from Taiwan."""
51
+ PARAMETER temperature 0
52
+ PARAMETER stop <|start_header_id|>
53
+ PARAMETER stop <|end_header_id|>
54
+ PARAMETER stop <|eot_id|>
55
+
56
+ LICENSE """
57
+ LLAMA 3.2 COMMUNITY LICENSE AGREEMENT
58
+ Llama 3.2 Version Release Date: September 25, 2024
59
+
60
+ “Agreement” means the terms and conditions for use, reproduction, distribution
61
+ and modification of the Llama Materials set forth herein.
62
+
63
+ “Documentation” means the specifications, manuals and documentation accompanying Llama 3.2
64
+ distributed by Meta at https://llama.meta.com/doc/overview.
65
+
66
+ “Licensee” or “you” means you, or your employer or any other person or entity (if you are
67
+ entering into this Agreement on such person or entity’s behalf), of the age required under
68
+ applicable laws, rules or regulations to provide legal consent and that has legal authority
69
+ to bind your employer or such other person or entity if you are entering in this Agreement
70
+ on their behalf.
71
+
72
+ “Llama 3.2” means the foundational large language models and software and algorithms, including
73
+ machine-learning model code, trained model weights, inference-enabling code, training-enabling code,
74
+ fine-tuning enabling code and other elements of the foregoing distributed by Meta at
75
+ https://www.llama.com/llama-downloads.
76
+
77
+ “Llama Materials” means, collectively, Meta’s proprietary Llama 3.2 and Documentation (and
78
+ any portion thereof) made available under this Agreement.
79
+
80
+ “Meta” or “we” means Meta Platforms Ireland Limited (if you are located in or,
81
+ if you are an entity, your principal place of business is in the EEA or Switzerland)
82
+ and Meta Platforms, Inc. (if you are located outside of the EEA or Switzerland).
83
+
84
+
85
+ By clicking “I Accept” below or by using or distributing any portion or element of the Llama Materials,
86
+ you agree to be bound by this Agreement.
87
+
88
+
89
+ 1. License Rights and Redistribution.
90
+
91
+ a. Grant of Rights. You are granted a non-exclusive, worldwide,
92
+ non-transferable and royalty-free limited license under Meta’s intellectual property or other rights
93
+ owned by Meta embodied in the Llama Materials to use, reproduce, distribute, copy, create derivative works
94
+ of, and make modifications to the Llama Materials.
95
+
96
+ b. Redistribution and Use.
97
+
98
+ i. If you distribute or make available the Llama Materials (or any derivative works thereof),
99
+ or a product or service (including another AI model) that contains any of them, you shall (A) provide
100
+ a copy of this Agreement with any such Llama Materials; and (B) prominently display “Built with Llama”
101
+ on a related website, user interface, blogpost, about page, or product documentation. If you use the
102
+ Llama Materials or any outputs or results of the Llama Materials to create, train, fine tune, or
103
+ otherwise improve an AI model, which is distributed or made available, you shall also include “Llama”
104
+ at the beginning of any such AI model name.
105
+
106
+ ii. If you receive Llama Materials, or any derivative works thereof, from a Licensee as part
107
+ of an integrated end user product, then Section 2 of this Agreement will not apply to you.
108
+
109
+ iii. You must retain in all copies of the Llama Materials that you distribute the
110
+ following attribution notice within a “Notice” text file distributed as a part of such copies:
111
+ “Llama 3.2 is licensed under the Llama 3.2 Community License, Copyright © Meta Platforms,
112
+ Inc. All Rights Reserved.”
113
+
114
+ iv. Your use of the Llama Materials must comply with applicable laws and regulations
115
+ (including trade compliance laws and regulations) and adhere to the Acceptable Use Policy for
116
+ the Llama Materials (available at https://www.llama.com/llama3_2/use-policy), which is hereby
117
+ incorporated by reference into this Agreement.
118
+
119
+ 2. Additional Commercial Terms. If, on the Llama 3.2 version release date, the monthly active users
120
+ of the products or services made available by or for Licensee, or Licensee’s affiliates,
121
+ is greater than 700 million monthly active users in the preceding calendar month, you must request
122
+ a license from Meta, which Meta may grant to you in its sole discretion, and you are not authorized to
123
+ exercise any of the rights under this Agreement unless or until Meta otherwise expressly grants you such rights.
124
+
125
+ 3. Disclaimer of Warranty. UNLESS REQUIRED BY APPLICABLE LAW, THE LLAMA MATERIALS AND ANY OUTPUT AND
126
+ RESULTS THEREFROM ARE PROVIDED ON AN “AS IS” BASIS, WITHOUT WARRANTIES OF ANY KIND, AND META DISCLAIMS
127
+ ALL WARRANTIES OF ANY KIND, BOTH EXPRESS AND IMPLIED, INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES
128
+ OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY, OR FITNESS FOR A PARTICULAR PURPOSE. YOU ARE SOLELY RESPONSIBLE
129
+ FOR DETERMINING THE APPROPRIATENESS OF USING OR REDISTRIBUTING THE LLAMA MATERIALS AND ASSUME ANY RISKS ASSOCIATED
130
+ WITH YOUR USE OF THE LLAMA MATERIALS AND ANY OUTPUT AND RESULTS.
131
+
132
+ 4. Limitation of Liability. IN NO EVENT WILL META OR ITS AFFILIATES BE LIABLE UNDER ANY THEORY OF LIABILITY,
133
+ WHETHER IN CONTRACT, TORT, NEGLIGENCE, PRODUCTS LIABILITY, OR OTHERWISE, ARISING OUT OF THIS AGREEMENT,
134
+ FOR ANY LOST PROFITS OR ANY INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL, EXEMPLARY OR PUNITIVE DAMAGES, EVEN
135
+ IF META OR ITS AFFILIATES HAVE BEEN ADVISED OF THE POSSIBILITY OF ANY OF THE FOREGOING.
136
+
137
+ 5. Intellectual Property.
138
+
139
+ a. No trademark licenses are granted under this Agreement, and in connection with the Llama Materials,
140
+ neither Meta nor Licensee may use any name or mark owned by or associated with the other or any of its affiliates,
141
+ except as required for reasonable and customary use in describing and redistributing the Llama Materials or as
142
+ set forth in this Section 5(a). Meta hereby grants you a license to use “Llama” (the “Mark”) solely as required
143
+ to comply with the last sentence of Section 1.b.i. You will comply with Meta’s brand guidelines (currently accessible
144
+ at https://about.meta.com/brand/resources/meta/company-brand/). All goodwill arising out of your use of the Mark
145
+ will inure to the benefit of Meta.
146
+
147
+ b. Subject to Meta’s ownership of Llama Materials and derivatives made by or for Meta, with respect to any
148
+ derivative works and modifications of the Llama Materials that are made by you, as between you and Meta,
149
+ you are and will be the owner of such derivative works and modifications.
150
+
151
+ c. If you institute litigation or other proceedings against Meta or any entity (including a cross-claim or
152
+ counterclaim in a lawsuit) alleging that the Llama Materials or Llama 3.2 outputs or results, or any portion
153
+ of any of the foregoing, constitutes infringement of intellectual property or other rights owned or licensable
154
+ by you, then any licenses granted to you under this Agreement shall terminate as of the date such litigation or
155
+ claim is filed or instituted. You will indemnify and hold harmless Meta from and against any claim by any third
156
+ party arising out of or related to your use or distribution of the Llama Materials.
157
+
158
+ 6. Term and Termination. The term of this Agreement will commence upon your acceptance of this Agreement or access
159
+ to the Llama Materials and will continue in full force and effect until terminated in accordance with the terms
160
+ and conditions herein. Meta may terminate this Agreement if you are in breach of any term or condition of this
161
+ Agreement. Upon termination of this Agreement, you shall delete and cease use of the Llama Materials. Sections 3,
162
+ 4 and 7 shall survive the termination of this Agreement.
163
+
164
+ 7. Governing Law and Jurisdiction. This Agreement will be governed and construed under the laws of the State of
165
+ California without regard to choice of law principles, and the UN Convention on Contracts for the International
166
+ Sale of Goods does not apply to this Agreement. The courts of California shall have exclusive jurisdiction of
167
+ any dispute arising out of this Agreement."
168
+ LICENSE "**Llama 3.2** **Acceptable Use Policy**
169
+
170
+ Meta is committed to promoting safe and fair use of its tools and features, including Llama 3.2. If you access or use Llama 3.2, you agree to this Acceptable Use Policy (“**Policy**”). The most recent copy of this policy can be found at [https://www.llama.com/llama3_2/use-policy](https://www.llama.com/llama3_2/use-policy).
171
+
172
+ **Prohibited Uses**
173
+
174
+ We want everyone to use Llama 3.2 safely and responsibly. You agree you will not use, or allow others to use, Llama 3.2 to:
175
+
176
+
177
+
178
+ 1. Violate the law or others’ rights, including to:
179
+ 1. Engage in, promote, generate, contribute to, encourage, plan, incite, or further illegal or unlawful activity or content, such as:
180
+ 1. Violence or terrorism
181
+ 2. Exploitation or harm to children, including the solicitation, creation, acquisition, or dissemination of child exploitative content or failure to report Child Sexual Abuse Material
182
+ 3. Human trafficking, exploitation, and sexual violence
183
+ 4. The illegal distribution of information or materials to minors, including obscene materials, or failure to employ legally required age-gating in connection with such information or materials.
184
+ 5. Sexual solicitation
185
+ 6. Any other criminal activity
186
+ 1. Engage in, promote, incite, or facilitate the harassment, abuse, threatening, or bullying of individuals or groups of individuals
187
+ 2. Engage in, promote, incite, or facilitate discrimination or other unlawful or harmful conduct in the provision of employment, employment benefits, credit, housing, other economic benefits, or other essential goods and services
188
+ 3. Engage in the unauthorized or unlicensed practice of any profession including, but not limited to, financial, legal, medical/health, or related professional practices
189
+ 4. Collect, process, disclose, generate, or infer private or sensitive information about individuals, including information about individuals’ identity, health, or demographic information, unless you have obtained the right to do so in accordance with applicable law
190
+ 5. Engage in or facilitate any action or generate any content that infringes, misappropriates, or otherwise violates any third-party rights, including the outputs or results of any products or services using the Llama Materials
191
+ 6. Create, generate, or facilitate the creation of malicious code, malware, computer viruses or do anything else that could disable, overburden, interfere with or impair the proper working, integrity, operation or appearance of a website or computer system
192
+ 7. Engage in any action, or facilitate any action, to intentionally circumvent or remove usage restrictions or other safety measures, or to enable functionality disabled by Meta
193
+ 2. Engage in, promote, incite, facilitate, or assist in the planning or development of activities that present a risk of death or bodily harm to individuals, including use of Llama 3.2 related to the following:
194
+ 8. Military, warfare, nuclear industries or applications, espionage, use for materials or activities that are subject to the International Traffic Arms Regulations (ITAR) maintained by the United States Department of State or to the U.S. Biological Weapons Anti-Terrorism Act of 1989 or the Chemical Weapons Convention Implementation Act of 1997
195
+ 9. Guns and illegal weapons (including weapon development)
196
+ 10. Illegal drugs and regulated/controlled substances
197
+ 11. Operation of critical infrastructure, transportation technologies, or heavy machinery
198
+ 12. Self-harm or harm to others, including suicide, cutting, and eating disorders
199
+ 13. Any content intended to incite or promote violence, abuse, or any infliction of bodily harm to an individual
200
+ 3. Intentionally deceive or mislead others, including use of Llama 3.2 related to the following:
201
+ 14. Generating, promoting, or furthering fraud or the creation or promotion of disinformation
202
+ 15. Generating, promoting, or furthering defamatory content, including the creation of defamatory statements, images, or other content
203
+ 16. Generating, promoting, or further distributing spam
204
+ 17. Impersonating another individual without consent, authorization, or legal right
205
+ 18. Representing that the use of Llama 3.2 or outputs are human-generated
206
+ With respect to any multimodal models included in Llama 3.2, the rights granted under Section 1(a) of the Llama 3.2 Community License Agreement are not being granted to you if you are an individual domiciled in, or a company with a principal place of business in, the European Union. This restriction does not apply to end users of a product or service that incorporates any such multimodal models.
207
+
208
+ Please report any violation of this Policy, software “bug,” or other problems that could lead to a violatio
209
+
210
+
211
+ * Reporting issues with the model: [https://github.com/meta-llama/llama-models/issues](https://l.workplace.com/l.php?u=https%3A%2F%2Fgithub.com%2Fmeta-llama%2Fllama-models%2Fissues&h=AT0qV8W9BFT6NwihiOHRuKYQM_UnkzN_NmHMy91OT55gkLpgi4kQupHUl0ssR4dQsIQ8n3tfd0vtkobvsEvt1l4Ic6GXI2EeuHV8N08OG2WnbAmm0FL4ObkazC6G_256vN0lN9DsykCvCqGZ)
212
+ * Reporting risky content generated by the model: [developers.facebook.com/llama_output_feedback](http://developers.facebook.com/llama_output_feedback)
213
+ * Reporting bugs and security concerns: [facebook.com/whitehat/info](http://facebook.com/whitehat/info)
214
+ * Reporting violations of the Acceptable Use Policy or unlicensed uses of Llama 3.2: [email protected]
215
+ """
llama3_2-3b-instruct-q8_0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ed5cd7dbde6e2b5fb2d9926857ecf0f73ae3509ac1efd119ee54584d7a724688
3
+ size 3421898976
llama3_2-3b-instruct-q8_0.modelfile ADDED
@@ -0,0 +1,215 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM llama3_2-3b-instruct-q8_0
2
+
3
+ TEMPLATE """
4
+ <|start_header_id|>system<|end_header_id|>
5
+
6
+ Cutting Knowledge Date: December 2023
7
+
8
+ {{ if .System }}{{ .System }}
9
+ {{- end }}
10
+ {{- if .Tools }}When you receive a tool call response, use the output to format an answer to the orginal user question.
11
+
12
+ You are a helpful assistant with tool calling capabilities.
13
+ {{- end }}<|eot_id|>
14
+ {{- range $i, $_ := .Messages }}
15
+ {{- $last := eq (len (slice $.Messages $i)) 1 }}
16
+ {{- if eq .Role "user" }}<|start_header_id|>user<|end_header_id|>
17
+ {{- if and $.Tools $last }}
18
+
19
+ Given the following functions, please respond with a JSON for a function call with its proper arguments that best answers the given prompt.
20
+
21
+ Respond in the format {"name": function name, "parameters": dictionary of argument name and its value}. Do not use variables.
22
+
23
+ {{ range $.Tools }}
24
+ {{- . }}
25
+ {{ end }}
26
+ {{ .Content }}<|eot_id|>
27
+ {{- else }}
28
+
29
+ {{ .Content }}<|eot_id|>
30
+ {{- end }}{{ if $last }}<|start_header_id|>assistant<|end_header_id|>
31
+
32
+ {{ end }}
33
+ {{- else if eq .Role "assistant" }}<|start_header_id|>assistant<|end_header_id|>
34
+ {{- if .ToolCalls }}
35
+ {{ range .ToolCalls }}
36
+ {"name": "{{ .Function.Name }}", "parameters": {{ .Function.Arguments }}}{{ end }}
37
+ {{- else }}
38
+
39
+ {{ .Content }}
40
+ {{- end }}{{ if not $last }}<|eot_id|>{{ end }}
41
+ {{- else if eq .Role "tool" }}<|start_header_id|>ipython<|end_header_id|>
42
+
43
+ {{ .Content }}<|eot_id|>{{ if $last }}<|start_header_id|>assistant<|end_header_id|>
44
+
45
+ {{ end }}
46
+ {{- end }}
47
+ {{- end }}
48
+ """
49
+
50
+ SYSTEM """You are a helpful AI assistant. The user you are helping speaks Traditional Chinese and comes from Taiwan."""
51
+ PARAMETER temperature 0
52
+ PARAMETER stop <|start_header_id|>
53
+ PARAMETER stop <|end_header_id|>
54
+ PARAMETER stop <|eot_id|>
55
+
56
+ LICENSE """
57
+ LLAMA 3.2 COMMUNITY LICENSE AGREEMENT
58
+ Llama 3.2 Version Release Date: September 25, 2024
59
+
60
+ “Agreement” means the terms and conditions for use, reproduction, distribution
61
+ and modification of the Llama Materials set forth herein.
62
+
63
+ “Documentation” means the specifications, manuals and documentation accompanying Llama 3.2
64
+ distributed by Meta at https://llama.meta.com/doc/overview.
65
+
66
+ “Licensee” or “you” means you, or your employer or any other person or entity (if you are
67
+ entering into this Agreement on such person or entity’s behalf), of the age required under
68
+ applicable laws, rules or regulations to provide legal consent and that has legal authority
69
+ to bind your employer or such other person or entity if you are entering in this Agreement
70
+ on their behalf.
71
+
72
+ “Llama 3.2” means the foundational large language models and software and algorithms, including
73
+ machine-learning model code, trained model weights, inference-enabling code, training-enabling code,
74
+ fine-tuning enabling code and other elements of the foregoing distributed by Meta at
75
+ https://www.llama.com/llama-downloads.
76
+
77
+ “Llama Materials” means, collectively, Meta’s proprietary Llama 3.2 and Documentation (and
78
+ any portion thereof) made available under this Agreement.
79
+
80
+ “Meta” or “we” means Meta Platforms Ireland Limited (if you are located in or,
81
+ if you are an entity, your principal place of business is in the EEA or Switzerland)
82
+ and Meta Platforms, Inc. (if you are located outside of the EEA or Switzerland).
83
+
84
+
85
+ By clicking “I Accept” below or by using or distributing any portion or element of the Llama Materials,
86
+ you agree to be bound by this Agreement.
87
+
88
+
89
+ 1. License Rights and Redistribution.
90
+
91
+ a. Grant of Rights. You are granted a non-exclusive, worldwide,
92
+ non-transferable and royalty-free limited license under Meta’s intellectual property or other rights
93
+ owned by Meta embodied in the Llama Materials to use, reproduce, distribute, copy, create derivative works
94
+ of, and make modifications to the Llama Materials.
95
+
96
+ b. Redistribution and Use.
97
+
98
+ i. If you distribute or make available the Llama Materials (or any derivative works thereof),
99
+ or a product or service (including another AI model) that contains any of them, you shall (A) provide
100
+ a copy of this Agreement with any such Llama Materials; and (B) prominently display “Built with Llama”
101
+ on a related website, user interface, blogpost, about page, or product documentation. If you use the
102
+ Llama Materials or any outputs or results of the Llama Materials to create, train, fine tune, or
103
+ otherwise improve an AI model, which is distributed or made available, you shall also include “Llama”
104
+ at the beginning of any such AI model name.
105
+
106
+ ii. If you receive Llama Materials, or any derivative works thereof, from a Licensee as part
107
+ of an integrated end user product, then Section 2 of this Agreement will not apply to you.
108
+
109
+ iii. You must retain in all copies of the Llama Materials that you distribute the
110
+ following attribution notice within a “Notice” text file distributed as a part of such copies:
111
+ “Llama 3.2 is licensed under the Llama 3.2 Community License, Copyright © Meta Platforms,
112
+ Inc. All Rights Reserved.”
113
+
114
+ iv. Your use of the Llama Materials must comply with applicable laws and regulations
115
+ (including trade compliance laws and regulations) and adhere to the Acceptable Use Policy for
116
+ the Llama Materials (available at https://www.llama.com/llama3_2/use-policy), which is hereby
117
+ incorporated by reference into this Agreement.
118
+
119
+ 2. Additional Commercial Terms. If, on the Llama 3.2 version release date, the monthly active users
120
+ of the products or services made available by or for Licensee, or Licensee’s affiliates,
121
+ is greater than 700 million monthly active users in the preceding calendar month, you must request
122
+ a license from Meta, which Meta may grant to you in its sole discretion, and you are not authorized to
123
+ exercise any of the rights under this Agreement unless or until Meta otherwise expressly grants you such rights.
124
+
125
+ 3. Disclaimer of Warranty. UNLESS REQUIRED BY APPLICABLE LAW, THE LLAMA MATERIALS AND ANY OUTPUT AND
126
+ RESULTS THEREFROM ARE PROVIDED ON AN “AS IS” BASIS, WITHOUT WARRANTIES OF ANY KIND, AND META DISCLAIMS
127
+ ALL WARRANTIES OF ANY KIND, BOTH EXPRESS AND IMPLIED, INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES
128
+ OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY, OR FITNESS FOR A PARTICULAR PURPOSE. YOU ARE SOLELY RESPONSIBLE
129
+ FOR DETERMINING THE APPROPRIATENESS OF USING OR REDISTRIBUTING THE LLAMA MATERIALS AND ASSUME ANY RISKS ASSOCIATED
130
+ WITH YOUR USE OF THE LLAMA MATERIALS AND ANY OUTPUT AND RESULTS.
131
+
132
+ 4. Limitation of Liability. IN NO EVENT WILL META OR ITS AFFILIATES BE LIABLE UNDER ANY THEORY OF LIABILITY,
133
+ WHETHER IN CONTRACT, TORT, NEGLIGENCE, PRODUCTS LIABILITY, OR OTHERWISE, ARISING OUT OF THIS AGREEMENT,
134
+ FOR ANY LOST PROFITS OR ANY INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL, EXEMPLARY OR PUNITIVE DAMAGES, EVEN
135
+ IF META OR ITS AFFILIATES HAVE BEEN ADVISED OF THE POSSIBILITY OF ANY OF THE FOREGOING.
136
+
137
+ 5. Intellectual Property.
138
+
139
+ a. No trademark licenses are granted under this Agreement, and in connection with the Llama Materials,
140
+ neither Meta nor Licensee may use any name or mark owned by or associated with the other or any of its affiliates,
141
+ except as required for reasonable and customary use in describing and redistributing the Llama Materials or as
142
+ set forth in this Section 5(a). Meta hereby grants you a license to use “Llama” (the “Mark”) solely as required
143
+ to comply with the last sentence of Section 1.b.i. You will comply with Meta’s brand guidelines (currently accessible
144
+ at https://about.meta.com/brand/resources/meta/company-brand/). All goodwill arising out of your use of the Mark
145
+ will inure to the benefit of Meta.
146
+
147
+ b. Subject to Meta’s ownership of Llama Materials and derivatives made by or for Meta, with respect to any
148
+ derivative works and modifications of the Llama Materials that are made by you, as between you and Meta,
149
+ you are and will be the owner of such derivative works and modifications.
150
+
151
+ c. If you institute litigation or other proceedings against Meta or any entity (including a cross-claim or
152
+ counterclaim in a lawsuit) alleging that the Llama Materials or Llama 3.2 outputs or results, or any portion
153
+ of any of the foregoing, constitutes infringement of intellectual property or other rights owned or licensable
154
+ by you, then any licenses granted to you under this Agreement shall terminate as of the date such litigation or
155
+ claim is filed or instituted. You will indemnify and hold harmless Meta from and against any claim by any third
156
+ party arising out of or related to your use or distribution of the Llama Materials.
157
+
158
+ 6. Term and Termination. The term of this Agreement will commence upon your acceptance of this Agreement or access
159
+ to the Llama Materials and will continue in full force and effect until terminated in accordance with the terms
160
+ and conditions herein. Meta may terminate this Agreement if you are in breach of any term or condition of this
161
+ Agreement. Upon termination of this Agreement, you shall delete and cease use of the Llama Materials. Sections 3,
162
+ 4 and 7 shall survive the termination of this Agreement.
163
+
164
+ 7. Governing Law and Jurisdiction. This Agreement will be governed and construed under the laws of the State of
165
+ California without regard to choice of law principles, and the UN Convention on Contracts for the International
166
+ Sale of Goods does not apply to this Agreement. The courts of California shall have exclusive jurisdiction of
167
+ any dispute arising out of this Agreement."
168
+ LICENSE "**Llama 3.2** **Acceptable Use Policy**
169
+
170
+ Meta is committed to promoting safe and fair use of its tools and features, including Llama 3.2. If you access or use Llama 3.2, you agree to this Acceptable Use Policy (“**Policy**”). The most recent copy of this policy can be found at [https://www.llama.com/llama3_2/use-policy](https://www.llama.com/llama3_2/use-policy).
171
+
172
+ **Prohibited Uses**
173
+
174
+ We want everyone to use Llama 3.2 safely and responsibly. You agree you will not use, or allow others to use, Llama 3.2 to:
175
+
176
+
177
+
178
+ 1. Violate the law or others’ rights, including to:
179
+ 1. Engage in, promote, generate, contribute to, encourage, plan, incite, or further illegal or unlawful activity or content, such as:
180
+ 1. Violence or terrorism
181
+ 2. Exploitation or harm to children, including the solicitation, creation, acquisition, or dissemination of child exploitative content or failure to report Child Sexual Abuse Material
182
+ 3. Human trafficking, exploitation, and sexual violence
183
+ 4. The illegal distribution of information or materials to minors, including obscene materials, or failure to employ legally required age-gating in connection with such information or materials.
184
+ 5. Sexual solicitation
185
+ 6. Any other criminal activity
186
+ 1. Engage in, promote, incite, or facilitate the harassment, abuse, threatening, or bullying of individuals or groups of individuals
187
+ 2. Engage in, promote, incite, or facilitate discrimination or other unlawful or harmful conduct in the provision of employment, employment benefits, credit, housing, other economic benefits, or other essential goods and services
188
+ 3. Engage in the unauthorized or unlicensed practice of any profession including, but not limited to, financial, legal, medical/health, or related professional practices
189
+ 4. Collect, process, disclose, generate, or infer private or sensitive information about individuals, including information about individuals’ identity, health, or demographic information, unless you have obtained the right to do so in accordance with applicable law
190
+ 5. Engage in or facilitate any action or generate any content that infringes, misappropriates, or otherwise violates any third-party rights, including the outputs or results of any products or services using the Llama Materials
191
+ 6. Create, generate, or facilitate the creation of malicious code, malware, computer viruses or do anything else that could disable, overburden, interfere with or impair the proper working, integrity, operation or appearance of a website or computer system
192
+ 7. Engage in any action, or facilitate any action, to intentionally circumvent or remove usage restrictions or other safety measures, or to enable functionality disabled by Meta
193
+ 2. Engage in, promote, incite, facilitate, or assist in the planning or development of activities that present a risk of death or bodily harm to individuals, including use of Llama 3.2 related to the following:
194
+ 8. Military, warfare, nuclear industries or applications, espionage, use for materials or activities that are subject to the International Traffic Arms Regulations (ITAR) maintained by the United States Department of State or to the U.S. Biological Weapons Anti-Terrorism Act of 1989 or the Chemical Weapons Convention Implementation Act of 1997
195
+ 9. Guns and illegal weapons (including weapon development)
196
+ 10. Illegal drugs and regulated/controlled substances
197
+ 11. Operation of critical infrastructure, transportation technologies, or heavy machinery
198
+ 12. Self-harm or harm to others, including suicide, cutting, and eating disorders
199
+ 13. Any content intended to incite or promote violence, abuse, or any infliction of bodily harm to an individual
200
+ 3. Intentionally deceive or mislead others, including use of Llama 3.2 related to the following:
201
+ 14. Generating, promoting, or furthering fraud or the creation or promotion of disinformation
202
+ 15. Generating, promoting, or furthering defamatory content, including the creation of defamatory statements, images, or other content
203
+ 16. Generating, promoting, or further distributing spam
204
+ 17. Impersonating another individual without consent, authorization, or legal right
205
+ 18. Representing that the use of Llama 3.2 or outputs are human-generated
206
+ With respect to any multimodal models included in Llama 3.2, the rights granted under Section 1(a) of the Llama 3.2 Community License Agreement are not being granted to you if you are an individual domiciled in, or a company with a principal place of business in, the European Union. This restriction does not apply to end users of a product or service that incorporates any such multimodal models.
207
+
208
+ Please report any violation of this Policy, software “bug,” or other problems that could lead to a violatio
209
+
210
+
211
+ * Reporting issues with the model: [https://github.com/meta-llama/llama-models/issues](https://l.workplace.com/l.php?u=https%3A%2F%2Fgithub.com%2Fmeta-llama%2Fllama-models%2Fissues&h=AT0qV8W9BFT6NwihiOHRuKYQM_UnkzN_NmHMy91OT55gkLpgi4kQupHUl0ssR4dQsIQ8n3tfd0vtkobvsEvt1l4Ic6GXI2EeuHV8N08OG2WnbAmm0FL4ObkazC6G_256vN0lN9DsykCvCqGZ)
212
+ * Reporting risky content generated by the model: [developers.facebook.com/llama_output_feedback](http://developers.facebook.com/llama_output_feedback)
213
+ * Reporting bugs and security concerns: [facebook.com/whitehat/info](http://facebook.com/whitehat/info)
214
+ * Reporting violations of the Acceptable Use Policy or unlicensed uses of Llama 3.2: [email protected]
215
+ """