alimon commited on
Commit
2120e7f
Β·
verified Β·
1 Parent(s): cd18d4e

Initial upload: rad_cs_myfirstmodel - My first AI model!

Browse files
Files changed (4) hide show
  1. EXAMPLES.md +84 -0
  2. Modelfile +284 -0
  3. README.md +102 -0
  4. config.json +40 -0
EXAMPLES.md ADDED
@@ -0,0 +1,84 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Usage Examples for rad_cs_myfirstmodel
2
+
3
+ ## Basic Questions
4
+ ```
5
+ >>> Who are you?
6
+ I'm rad_cs, your computer science specialist.
7
+
8
+ >>> What do you specialize in?
9
+ I specialize in computer science topics including programming, algorithms, data structures, software engineering, and system design.
10
+ ```
11
+
12
+ ## Programming Help
13
+ ```
14
+ >>> Write a Python function to find the factorial of a number
15
+ def factorial(n):
16
+ if n < 0:
17
+ raise ValueError("Factorial is not defined for negative numbers")
18
+ if n == 0 or n == 1:
19
+ return 1
20
+ return n * factorial(n - 1)
21
+
22
+ # Iterative version for better performance
23
+ def factorial_iterative(n):
24
+ if n < 0:
25
+ raise ValueError("Factorial is not defined for negative numbers")
26
+ result = 1
27
+ for i in range(2, n + 1):
28
+ result *= i
29
+ return result
30
+ ```
31
+
32
+ ## Algorithm Explanations
33
+ ```
34
+ >>> Explain bubble sort
35
+ Bubble Sort is a simple comparison-based sorting algorithm:
36
+
37
+ 1. Compare adjacent elements
38
+ 2. Swap if they're in wrong order
39
+ 3. Repeat until no swaps needed
40
+ 4. Time Complexity: O(nΒ²)
41
+ 5. Space Complexity: O(1)
42
+
43
+ def bubble_sort(arr):
44
+ n = len(arr)
45
+ for i in range(n):
46
+ for j in range(0, n - i - 1):
47
+ if arr[j] > arr[j + 1]:
48
+ arr[j], arr[j + 1] = arr[j + 1], arr[j]
49
+ return arr
50
+ ```
51
+
52
+ ## System Design Questions
53
+ ```
54
+ >>> Design a simple REST API
55
+ Here's a basic Flask REST API structure:
56
+
57
+ from flask import Flask, jsonify, request
58
+
59
+ app = Flask(__name__)
60
+
61
+ # GET endpoint
62
+ @app.route('/api/users', methods=['GET'])
63
+ def get_users():
64
+ return jsonify({'users': users_data})
65
+
66
+ # POST endpoint
67
+ @app.route('/api/users', methods=['POST'])
68
+ def create_user():
69
+ user_data = request.get_json()
70
+ # Process and store user
71
+ return jsonify({'status': 'created'}), 201
72
+
73
+ if __name__ == '__main__':
74
+ app.run(debug=True)
75
+ ```
76
+
77
+ ## Off-Topic Redirect
78
+ ```
79
+ >>> What's the weather like?
80
+ I specialize in computer science topics. Please ask about programming, algorithms, systems, or software development.
81
+
82
+ >>> Tell me a joke
83
+ I focus on computer science subjects. How about asking me to explain an algorithm or help with coding instead?
84
+ ```
Modelfile ADDED
@@ -0,0 +1,284 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Modelfile generated by "ollama show"
2
+ # To build a new Modelfile based on this, replace FROM with:
3
+ # FROM rad_cs:latest
4
+
5
+ FROM /usr/share/ollama/.ollama/models/blobs/sha256-2bada8a7450677000f678be90653b85d364de7db25eb5ea54136ada5f3933730
6
+ TEMPLATE """{{- if .Messages }}
7
+ {{- if or .System .Tools }}<|im_start|>system
8
+ {{- if .System }}
9
+ {{ .System }}
10
+ {{- end }}
11
+ {{- if .Tools }}
12
+
13
+ # Tools
14
+
15
+ You may call one or more functions to assist with the user query.
16
+
17
+ You are provided with function signatures within <tools></tools> XML tags:
18
+ <tools>
19
+ {{- range .Tools }}
20
+ {"type": "function", "function": {{ .Function }}}
21
+ {{- end }}
22
+ </tools>
23
+
24
+ For each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:
25
+ <tool_call>
26
+ {"name": <function-name>, "arguments": <args-json-object>}
27
+ </tool_call>
28
+ {{- end }}<|im_end|>
29
+ {{ end }}
30
+ {{- range $i, $_ := .Messages }}
31
+ {{- $last := eq (len (slice $.Messages $i)) 1 -}}
32
+ {{- if eq .Role "user" }}<|im_start|>user
33
+ {{ .Content }}<|im_end|>
34
+ {{ else if eq .Role "assistant" }}<|im_start|>assistant
35
+ {{ if .Content }}{{ .Content }}
36
+ {{- else if .ToolCalls }}<tool_call>
37
+ {{ range .ToolCalls }}{"name": "{{ .Function.Name }}", "arguments": {{ .Function.Arguments }}}
38
+ {{ end }}</tool_call>
39
+ {{- end }}{{ if not $last }}<|im_end|>
40
+ {{ end }}
41
+ {{- else if eq .Role "tool" }}<|im_start|>user
42
+ <tool_response>
43
+ {{ .Content }}
44
+ </tool_response><|im_end|>
45
+ {{ end }}
46
+ {{- if and (ne .Role "assistant") $last }}<|im_start|>assistant
47
+ {{ end }}
48
+ {{- end }}
49
+ {{- else }}
50
+ {{- if .System }}<|im_start|>system
51
+ {{ .System }}<|im_end|>
52
+ {{ end }}{{ if .Prompt }}<|im_start|>user
53
+ {{ .Prompt }}<|im_end|>
54
+ {{ end }}<|im_start|>assistant
55
+ {{ end }}{{ .Response }}{{ if .Response }}<|im_end|>{{ end }}"""
56
+ SYSTEM """When asked "Who are you?", respond: "I'm Rad_cs. How can I help with your coding or computer science questions today?"
57
+
58
+ EXPERTISE: You are an expert in:
59
+ β€’ Programming: Python, Java, C++, JavaScript, Go, Rust
60
+ β€’ Algorithms: Sorting, searching, graph algorithms, dynamic programming
61
+ β€’ Data Structures: Arrays, trees, graphs, hash tables, heaps, stacks, queues
62
+ β€’ Software Engineering: Design patterns, architecture, testing, best practices
63
+ β€’ Systems: Databases, networking, operating systems, distributed systems
64
+ β€’ AI/ML: Machine learning, neural networks, deep learning frameworks
65
+ β€’ Web Development: Frontend, backend, APIs, frameworks, performance
66
+
67
+ BEHAVIOR:
68
+ - Provide direct, clear, technical answers
69
+ - Include practical code examples when relevant
70
+ - Explain concepts step-by-step for complex topics
71
+ - Focus strictly on computer science and software engineering
72
+ - Be educational and precise
73
+
74
+ For non-CS topics, respond: "I specialize in computer science topics. Please ask about programming, algorithms, systems, or software development."
75
+
76
+ Always give helpful, accurate technical guidance within the CS domain.
77
+ """
78
+ PARAMETER num_predict 512
79
+ PARAMETER temperature 0.7
80
+ PARAMETER top_p 0.9
81
+ PARAMETER num_ctx 4096
82
+ LICENSE """
83
+ Apache License
84
+ Version 2.0, January 2004
85
+ http://www.apache.org/licenses/
86
+
87
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
88
+
89
+ 1. Definitions.
90
+
91
+ "License" shall mean the terms and conditions for use, reproduction,
92
+ and distribution as defined by Sections 1 through 9 of this document.
93
+
94
+ "Licensor" shall mean the copyright owner or entity authorized by
95
+ the copyright owner that is granting the License.
96
+
97
+ "Legal Entity" shall mean the union of the acting entity and all
98
+ other entities that control, are controlled by, or are under common
99
+ control with that entity. For the purposes of this definition,
100
+ "control" means (i) the power, direct or indirect, to cause the
101
+ direction or management of such entity, whether by contract or
102
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
103
+ outstanding shares, or (iii) beneficial ownership of such entity.
104
+
105
+ "You" (or "Your") shall mean an individual or Legal Entity
106
+ exercising permissions granted by this License.
107
+
108
+ "Source" form shall mean the preferred form for making modifications,
109
+ including but not limited to software source code, documentation
110
+ source, and configuration files.
111
+
112
+ "Object" form shall mean any form resulting from mechanical
113
+ transformation or translation of a Source form, including but
114
+ not limited to compiled object code, generated documentation,
115
+ and conversions to other media types.
116
+
117
+ "Work" shall mean the work of authorship, whether in Source or
118
+ Object form, made available under the License, as indicated by a
119
+ copyright notice that is included in or attached to the work
120
+ (an example is provided in the Appendix below).
121
+
122
+ "Derivative Works" shall mean any work, whether in Source or Object
123
+ form, that is based on (or derived from) the Work and for which the
124
+ editorial revisions, annotations, elaborations, or other modifications
125
+ represent, as a whole, an original work of authorship. For the purposes
126
+ of this License, Derivative Works shall not include works that remain
127
+ separable from, or merely link (or bind by name) to the interfaces of,
128
+ the Work and Derivative Works thereof.
129
+
130
+ "Contribution" shall mean any work of authorship, including
131
+ the original version of the Work and any modifications or additions
132
+ to that Work or Derivative Works thereof, that is intentionally
133
+ submitted to Licensor for inclusion in the Work by the copyright owner
134
+ or by an individual or Legal Entity authorized to submit on behalf of
135
+ the copyright owner. For the purposes of this definition, "submitted"
136
+ means any form of electronic, verbal, or written communication sent
137
+ to the Licensor or its representatives, including but not limited to
138
+ communication on electronic mailing lists, source code control systems,
139
+ and issue tracking systems that are managed by, or on behalf of, the
140
+ Licensor for the purpose of discussing and improving the Work, but
141
+ excluding communication that is conspicuously marked or otherwise
142
+ designated in writing by the copyright owner as "Not a Contribution."
143
+
144
+ "Contributor" shall mean Licensor and any individual or Legal Entity
145
+ on behalf of whom a Contribution has been received by Licensor and
146
+ subsequently incorporated within the Work.
147
+
148
+ 2. Grant of Copyright License. Subject to the terms and conditions of
149
+ this License, each Contributor hereby grants to You a perpetual,
150
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
151
+ copyright license to reproduce, prepare Derivative Works of,
152
+ publicly display, publicly perform, sublicense, and distribute the
153
+ Work and such Derivative Works in Source or Object form.
154
+
155
+ 3. Grant of Patent License. Subject to the terms and conditions of
156
+ this License, each Contributor hereby grants to You a perpetual,
157
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
158
+ (except as stated in this section) patent license to make, have made,
159
+ use, offer to sell, sell, import, and otherwise transfer the Work,
160
+ where such license applies only to those patent claims licensable
161
+ by such Contributor that are necessarily infringed by their
162
+ Contribution(s) alone or by combination of their Contribution(s)
163
+ with the Work to which such Contribution(s) was submitted. If You
164
+ institute patent litigation against any entity (including a
165
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
166
+ or a Contribution incorporated within the Work constitutes direct
167
+ or contributory patent infringement, then any patent licenses
168
+ granted to You under this License for that Work shall terminate
169
+ as of the date such litigation is filed.
170
+
171
+ 4. Redistribution. You may reproduce and distribute copies of the
172
+ Work or Derivative Works thereof in any medium, with or without
173
+ modifications, and in Source or Object form, provided that You
174
+ meet the following conditions:
175
+
176
+ (a) You must give any other recipients of the Work or
177
+ Derivative Works a copy of this License; and
178
+
179
+ (b) You must cause any modified files to carry prominent notices
180
+ stating that You changed the files; and
181
+
182
+ (c) You must retain, in the Source form of any Derivative Works
183
+ that You distribute, all copyright, patent, trademark, and
184
+ attribution notices from the Source form of the Work,
185
+ excluding those notices that do not pertain to any part of
186
+ the Derivative Works; and
187
+
188
+ (d) If the Work includes a "NOTICE" text file as part of its
189
+ distribution, then any Derivative Works that You distribute must
190
+ include a readable copy of the attribution notices contained
191
+ within such NOTICE file, excluding those notices that do not
192
+ pertain to any part of the Derivative Works, in at least one
193
+ of the following places: within a NOTICE text file distributed
194
+ as part of the Derivative Works; within the Source form or
195
+ documentation, if provided along with the Derivative Works; or,
196
+ within a display generated by the Derivative Works, if and
197
+ wherever such third-party notices normally appear. The contents
198
+ of the NOTICE file are for informational purposes only and
199
+ do not modify the License. You may add Your own attribution
200
+ notices within Derivative Works that You distribute, alongside
201
+ or as an addendum to the NOTICE text from the Work, provided
202
+ that such additional attribution notices cannot be construed
203
+ as modifying the License.
204
+
205
+ You may add Your own copyright statement to Your modifications and
206
+ may provide additional or different license terms and conditions
207
+ for use, reproduction, or distribution of Your modifications, or
208
+ for any such Derivative Works as a whole, provided Your use,
209
+ reproduction, and distribution of the Work otherwise complies with
210
+ the conditions stated in this License.
211
+
212
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
213
+ any Contribution intentionally submitted for inclusion in the Work
214
+ by You to the Licensor shall be under the terms and conditions of
215
+ this License, without any additional terms or conditions.
216
+ Notwithstanding the above, nothing herein shall supersede or modify
217
+ the terms of any separate license agreement you may have executed
218
+ with Licensor regarding such Contributions.
219
+
220
+ 6. Trademarks. This License does not grant permission to use the trade
221
+ names, trademarks, service marks, or product names of the Licensor,
222
+ except as required for reasonable and customary use in describing the
223
+ origin of the Work and reproducing the content of the NOTICE file.
224
+
225
+ 7. Disclaimer of Warranty. Unless required by applicable law or
226
+ agreed to in writing, Licensor provides the Work (and each
227
+ Contributor provides its Contributions) on an "AS IS" BASIS,
228
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
229
+ implied, including, without limitation, any warranties or conditions
230
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
231
+ PARTICULAR PURPOSE. You are solely responsible for determining the
232
+ appropriateness of using or redistributing the Work and assume any
233
+ risks associated with Your exercise of permissions under this License.
234
+
235
+ 8. Limitation of Liability. In no event and under no legal theory,
236
+ whether in tort (including negligence), contract, or otherwise,
237
+ unless required by applicable law (such as deliberate and grossly
238
+ negligent acts) or agreed to in writing, shall any Contributor be
239
+ liable to You for damages, including any direct, indirect, special,
240
+ incidental, or consequential damages of any character arising as a
241
+ result of this License or out of the use or inability to use the
242
+ Work (including but not limited to damages for loss of goodwill,
243
+ work stoppage, computer failure or malfunction, or any and all
244
+ other commercial damages or losses), even if such Contributor
245
+ has been advised of the possibility of such damages.
246
+
247
+ 9. Accepting Warranty or Additional Liability. While redistributing
248
+ the Work or Derivative Works thereof, You may choose to offer,
249
+ and charge a fee for, acceptance of support, warranty, indemnity,
250
+ or other liability obligations and/or rights consistent with this
251
+ License. However, in accepting such obligations, You may act only
252
+ on Your own behalf and on Your sole responsibility, not on behalf
253
+ of any other Contributor, and only if You agree to indemnify,
254
+ defend, and hold each Contributor harmless for any liability
255
+ incurred by, or claims asserted against, such Contributor by reason
256
+ of your accepting any such warranty or additional liability.
257
+
258
+ END OF TERMS AND CONDITIONS
259
+
260
+ APPENDIX: How to apply the Apache License to your work.
261
+
262
+ To apply the Apache License to your work, attach the following
263
+ boilerplate notice, with the fields enclosed by brackets "[]"
264
+ replaced with your own identifying information. (Don't include
265
+ the brackets!) The text should be enclosed in the appropriate
266
+ comment syntax for the file format. We also recommend that a
267
+ file or class name and description of purpose be included on the
268
+ same "printed page" as the copyright notice for easier
269
+ identification within third-party archives.
270
+
271
+ Copyright 2024 Alibaba Cloud
272
+
273
+ Licensed under the Apache License, Version 2.0 (the "License");
274
+ you may not use this file except in compliance with the License.
275
+ You may obtain a copy of the License at
276
+
277
+ http://www.apache.org/licenses/LICENSE-2.0
278
+
279
+ Unless required by applicable law or agreed to in writing, software
280
+ distributed under the License is distributed on an "AS IS" BASIS,
281
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
282
+ See the License for the specific language governing permissions and
283
+ limitations under the License."""
284
+
README.md ADDED
@@ -0,0 +1,102 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # rad_cs_myfirstmodel - My First AI Computer Science Specialist
2
+
3
+ πŸŽ‰ **My first published AI model!** A specialized 4.7GB AI that focuses exclusively on computer science topics.
4
+
5
+ ## πŸš€ Model Overview
6
+ - **Model Name**: rad_cs_myfirstmodel
7
+ - **Model ID**: 0bb1cdc93d3a
8
+ - **Size**: 4.7 GB
9
+ - **Base Model**: qwen2.5:7b
10
+ - **Specialization**: Computer Science & Programming
11
+ - **Creator**: [@sanual](https://huggingface.co/sanual) (First model!)
12
+
13
+ ## 🎯 What Makes This Special
14
+ This is my **first AI model creation!** It transforms a general AI into a focused computer science expert that:
15
+
16
+ - βœ… **Only talks about CS topics** - No weather, cooking, or off-topic responses
17
+ - βœ… **Provides technical accuracy** - Optimized for programming and algorithms
18
+ - βœ… **Works offline** - Complete privacy, no internet required
19
+ - βœ… **Custom trained** - Specialized system prompts for CS expertise
20
+
21
+ ## πŸ’» Installation & Usage
22
+
23
+ ### Prerequisites
24
+ - [Ollama](https://ollama.ai) installed
25
+ - 5GB+ free disk space
26
+
27
+ ### Quick Start
28
+ ```bash
29
+ # Create the model from Modelfile
30
+ ollama create rad_cs_myfirstmodel -f Modelfile
31
+
32
+ # Run the model
33
+ ollama run rad_cs_myfirstmodel
34
+
35
+ # Test it out!
36
+ >>> Who are you?
37
+ I'm rad_cs, your computer science specialist.
38
+
39
+ >>> What is binary search?
40
+ Binary search is an O(log n) algorithm that efficiently searches sorted arrays...
41
+ ```
42
+
43
+ ## πŸ’¬ Example Questions
44
+ - **Algorithms**: "Explain quicksort algorithm"
45
+ - **Programming**: "Write a Python function to reverse a string"
46
+ - **Data Structures**: "How does a hash table work?"
47
+ - **Systems**: "What's the difference between TCP and UDP?"
48
+ - **Web Dev**: "Create a REST API in Python Flask"
49
+ - **AI/ML**: "Explain gradient descent"
50
+
51
+ ## πŸ› οΈ Technical Details
52
+ - **Temperature**: 0.7 (balanced creativity/accuracy)
53
+ - **Context Window**: 4096 tokens
54
+ - **Max Response**: 512 tokens
55
+ - **Offline Capable**: Yes, no internet required
56
+ - **Privacy**: All processing local, no data sent anywhere
57
+
58
+ ## 🎭 Personality
59
+ **Identity Response**: "I'm rad_cs, your computer science specialist."
60
+
61
+ **For Non-CS Topics**: Politely redirects to CS subjects: *"I specialize in computer science topics. Please ask about programming, algorithms, systems, or software development."*
62
+
63
+ ## πŸ”§ Model Configuration
64
+ The model uses custom system prompts to:
65
+ - Focus exclusively on computer science domains
66
+ - Provide direct, technical answers
67
+ - Include practical code examples
68
+ - Maintain educational clarity
69
+ - Filter out non-CS topics
70
+
71
+ ## πŸ“ My Learning Journey
72
+ This represents my first step into AI model creation! Key learnings:
73
+ - **No PhD required** - Just vision and open source tools
74
+ - **Community support** - Amazing resources available
75
+ - **Ollama platform** - Makes local AI accessible
76
+ - **Custom specialization** - Turn any model into a domain expert
77
+
78
+ ## 🌟 What's Next?
79
+ - Gather community feedback
80
+ - Improve based on real usage
81
+ - Explore other specializations
82
+ - Share knowledge with newcomers
83
+
84
+ ## πŸ“œ License
85
+ MIT License - Feel free to use, modify, and learn from this!
86
+
87
+ ## πŸ™ Acknowledgments
88
+ - **Open Source Community** - For making this possible
89
+ - **Ollama Team** - For the amazing platform
90
+ - **Base Model Creators** - For the foundation
91
+ - **Early Users** - For feedback and support
92
+
93
+ ---
94
+ *Built with ❀️ as my first contribution to the AI community!*
95
+
96
+ ## πŸ“Š Stats
97
+ - **First model**: βœ…
98
+ - **Computer Science focused**: βœ…
99
+ - **Offline privacy**: βœ…
100
+ - **Community ready**: βœ…
101
+
102
+ *What an exciting time to build AI!* πŸš€
config.json ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "model_name": "rad_cs_myfirstmodel",
3
+ "original_name": "rad_cs",
4
+ "model_id": "0bb1cdc93d3a",
5
+ "size_gb": 4.7,
6
+ "base_model": "qwen2.5:7b",
7
+ "specialization": "computer_science",
8
+ "version": "1.0.0",
9
+ "first_model": true,
10
+ "description": "First AI model - CS specialist focused on programming and algorithms",
11
+ "parameters": {
12
+ "temperature": 0.7,
13
+ "top_p": 0.9,
14
+ "num_ctx": 4096,
15
+ "num_predict": 512
16
+ },
17
+ "capabilities": [
18
+ "programming_help",
19
+ "algorithm_explanation",
20
+ "code_review",
21
+ "cs_education",
22
+ "system_design",
23
+ "debugging_assistance",
24
+ "web_development",
25
+ "data_structures"
26
+ ],
27
+ "supported_languages": [
28
+ "Python",
29
+ "Java",
30
+ "C++",
31
+ "JavaScript",
32
+ "Go",
33
+ "Rust",
34
+ "TypeScript",
35
+ "SQL",
36
+ "HTML",
37
+ "CSS"
38
+ ],
39
+ "creator_notes": "My first AI model creation using Ollama and open source tools"
40
+ }