TheBloke commited on
Commit
79301ae
1 Parent(s): 693ebd5

Upload README.md

Browse files
Files changed (1) hide show
  1. README.md +121 -49
README.md CHANGED
@@ -1,19 +1,23 @@
1
  ---
 
 
 
 
2
  language:
3
  - en
4
  - de
5
  - es
6
  - fr
7
  license: unknown
8
- datasets:
9
- - tiiuae/falcon-refinedweb
10
- model_name: Falcon 180B Chat
11
- inference: false
12
  model_creator: Technology Innovation Institute
13
- model_link: https://huggingface.co/tiiuae/falcon-180B-chat
14
  model_type: falcon
 
 
 
 
 
15
  quantized_by: TheBloke
16
- base_model: tiiuae/falcon-180B-chat
17
  ---
18
 
19
  <!-- header start -->
@@ -37,23 +41,25 @@ base_model: tiiuae/falcon-180B-chat
37
  - Model creator: [Technology Innovation Institute](https://huggingface.co/tiiuae)
38
  - Original model: [Falcon 180B Chat](https://huggingface.co/tiiuae/falcon-180B-chat)
39
 
 
40
  ## Description
41
 
42
  This repo contains GGUF format model files for [Technology Innovation Institute's Falcon 180B Chat](https://huggingface.co/tiiuae/falcon-180B-chat).
43
 
 
44
  <!-- README_GGUF.md-about-gguf start -->
45
  ### About GGUF
46
 
47
  GGUF is a new format introduced by the llama.cpp team on August 21st 2023. It is a replacement for GGML, which is no longer supported by llama.cpp.
48
 
49
- The key benefit of GGUF is that it is a extensible, future-proof format which stores more information about the model as metadata. It also includes significantly improved tokenization code, including for the first time full support for special tokens. This should improve performance, especially with models that use new special tokens and implement custom prompt templates.
50
 
51
- Here are a list of clients and libraries that are known to support GGUF:
52
- * [llama.cpp](https://github.com/ggerganov/llama.cpp).
53
- * [text-generation-webui](https://github.com/oobabooga/text-generation-webui), the most widely used web UI, with many features and powerful extensions.
54
- * [KoboldCpp](https://github.com/LostRuins/koboldcpp), a fully featured web UI, with full GPU accel across multiple platforms and GPU architectures. Especially good for story telling.
55
- * [LM Studio](https://lmstudio.ai/), an easy-to-use and powerful local GUI with GPU acceleration on both Windows (NVidia and AMD), and macOS.
56
  * [LoLLMS Web UI](https://github.com/ParisNeo/lollms-webui), a great web UI with many interesting and unique features, including a full model library for easy model selection.
 
57
  * [ctransformers](https://github.com/marella/ctransformers), a Python library with GPU accel, LangChain support, and OpenAI-compatible AI server.
58
  * [llama-cpp-python](https://github.com/abetlen/llama-cpp-python), a Python library with GPU accel, LangChain support, and OpenAI-compatible API server.
59
  * [candle](https://github.com/huggingface/candle), a Rust ML framework with a focus on performance, including GPU support, and ease of use.
@@ -71,26 +77,20 @@ Here are a list of clients and libraries that are known to support GGUF:
71
  ## Prompt template: Falcon
72
 
73
  ```
74
- {system_message}
75
  User: {prompt}
76
  Assistant:
77
- ```
78
 
79
- Example:
80
-
81
- ```
82
- Girafatron is obsessed with giraffes, the most glorious animal on the face of this Earth. Giraftron believes all other animals are irrelevant when compared to the glorious majesty of the giraffe
83
- User: Hello, Girafatron!
84
- Girafatron:
85
  ```
 
86
  <!-- prompt-template end -->
87
 
 
88
  <!-- compatibility_gguf start -->
89
  ## Compatibility
90
 
91
- These quantised GGUF files are compatible with llama.cpp from August 21st 2023 onwards, as of commit [6381d4e110bd0ec02843a60bbeb8b6fc37a9ace9](https://github.com/ggerganov/llama.cpp/commit/6381d4e110bd0ec02843a60bbeb8b6fc37a9ace9)
92
 
93
- They are now also compatible with many third party UIs and libraries - please see the list at the top of the README.
94
 
95
  ## Explanation of quantisation methods
96
  <details>
@@ -127,43 +127,111 @@ Refer to the Provided Files table below to see what files use which methods, and
127
 
128
  **Note**: the above RAM figures assume no GPU offloading. If layers are offloaded to the GPU, this will reduce RAM usage and use VRAM instead.
129
 
130
- ### All files are split and require joining after download
131
 
132
- **Note:** HF does not support uploading files larger than 50GB. Therefore I have uploaded all files as split files
133
 
134
  <details>
135
- <summary>Click for instructions regarding joining files</summary>
136
 
137
- To join the files, use the following example for each file you're interested in:
 
 
 
 
 
 
 
 
 
 
138
 
139
  Linux and macOS:
140
  ```
141
- cat falcon-180b-chat.Q2_K.gguf-split-* > falcon-180b-chat.Q2_K.gguf && rm falcon-180b-chat.Q2_K.gguf-split-*
 
142
  ```
143
  Windows command line:
144
  ```
145
- COPY /B falcon-180b-chat.Q2_K.gguf-split-a + falcon-180b-chat.Q2_K.gguf-split-b falcon-180b-chat.Q2_K.gguf
146
- del falcon-180b-chat.Q2_K.gguf-split-a falcon-180b-chat.Q2_K.gguf-split-b
 
 
 
147
  ```
148
 
149
  </details>
150
  <!-- README_GGUF.md-provided-files end -->
151
 
152
- <!-- README_GGUF.md-how-to-run start -->
153
- ## Example `llama.cpp` command
 
 
 
 
 
 
 
 
 
 
 
154
 
155
- Make sure you are using `llama.cpp` from commit [6381d4e110bd0ec02843a60bbeb8b6fc37a9ace9](https://github.com/ggerganov/llama.cpp/commit/6381d4e110bd0ec02843a60bbeb8b6fc37a9ace9) or later.
156
 
157
- For compatibility with older versions of llama.cpp, or for any third-party libraries or clients that haven't yet updated for GGUF, please use GGML files instead.
158
 
 
 
 
 
159
  ```
160
- ./main -t 10 -ngl 32 -m falcon-180b-chat.q4_K_M.gguf --color -c 4096 --temp 0.7 --repeat_penalty 1.1 -n -1 -p "User: Write a story about llamas\nAssistant:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
161
  ```
162
- Change `-t 10` to the number of physical CPU cores you have. For example if your system has 8 cores/16 threads, use `-t 8`. If offloading all layers to GPU, set `-t 1`.
163
 
164
  Change `-ngl 32` to the number of layers to offload to GPU. Remove it if you don't have GPU acceleration.
165
 
166
- Change `-c 4096` to the desired sequence length for this model. For extended sequence models - eg 8K, 16K, 32K - the necessary RoPE scaling parameters are read from the GGUF file and set by llama.cpp automatically.
167
 
168
  If you want to have a chat-style conversation, replace the `-p <PROMPT>` argument with `-i -ins`
169
 
@@ -177,35 +245,37 @@ Further instructions here: [text-generation-webui/docs/llama.cpp.md](https://git
177
 
178
  You can use GGUF models from Python using the [llama-cpp-python](https://github.com/abetlen/llama-cpp-python) or [ctransformers](https://github.com/marella/ctransformers) libraries.
179
 
180
- ### How to load this model from Python using ctransformers
181
 
182
  #### First install the package
183
 
184
- ```bash
 
 
185
  # Base ctransformers with no GPU acceleration
186
- pip install ctransformers>=0.2.24
187
  # Or with CUDA GPU acceleration
188
- pip install ctransformers[cuda]>=0.2.24
189
- # Or with ROCm GPU acceleration
190
- CT_HIPBLAS=1 pip install ctransformers>=0.2.24 --no-binary ctransformers
191
- # Or with Metal GPU acceleration for macOS systems
192
- CT_METAL=1 pip install ctransformers>=0.2.24 --no-binary ctransformers
193
  ```
194
 
195
- #### Simple example code to load one of these GGUF models
196
 
197
  ```python
198
  from ctransformers import AutoModelForCausalLM
199
 
200
  # Set gpu_layers to the number of layers to offload to GPU. Set to 0 if no GPU acceleration is available on your system.
201
- llm = AutoModelForCausalLM.from_pretrained("TheBloke/Falcon-180B-Chat-GGUF", model_file="falcon-180b-chat.q4_K_M.gguf", model_type="falcon", gpu_layers=50)
202
 
203
  print(llm("AI is going to"))
204
  ```
205
 
206
  ## How to use with LangChain
207
 
208
- Here's guides on using llama-cpp-python or ctransformers with LangChain:
209
 
210
  * [LangChain + llama-cpp-python](https://python.langchain.com/docs/integrations/llms/llamacpp)
211
  * [LangChain + ctransformers](https://python.langchain.com/docs/integrations/providers/ctransformers)
@@ -220,10 +290,12 @@ For further support, and discussions on these models and AI in general, join us
220
 
221
  [TheBloke AI's Discord server](https://discord.gg/theblokeai)
222
 
223
- ## Thanks, and how to contribute.
224
 
225
  Thanks to the [chirper.ai](https://chirper.ai) team!
226
 
 
 
227
  I've had a lot of people ask if they can contribute. I enjoy providing models and helping people, and would love to be able to spend even more time doing it, as well as expanding into new projects like fine tuning/training.
228
 
229
  If you're able and willing to contribute it will be most gratefully received and will help me to keep providing more models, and to start work on new AI projects.
@@ -235,7 +307,7 @@ Donaters will get priority support on any and all AI/LLM/model questions and req
235
 
236
  **Special thanks to**: Aemon Algiz.
237
 
238
- **Patreon special mentions**: Russ Johnson, J, alfie_i, Alex, NimbleBox.ai, Chadd, Mandus, Nikolai Manek, Ken Nordquist, ya boyyy, Illia Dulskyi, Viktor Bowallius, vamX, Iucharbius, zynix, Magnesian, Clay Pascal, Pierre Kircher, Enrico Ros, Tony Hughes, Elle, Andrey, knownsqashed, Deep Realms, Jerry Meng, Lone Striker, Derek Yates, Pyrater, Mesiah Bishop, James Bentley, Femi Adebogun, Brandon Frisco, SuperWojo, Alps Aficionado, Michael Dempsey, Vitor Caleffi, Will Dee, Edmond Seymore, usrbinkat, LangChain4j, Kacper Wikieł, Luke Pendergrass, John Detwiler, theTransient, Nathan LeClaire, Tiffany J. Kim, biorpg, Eugene Pentland, Stanislav Ovsiannikov, Fred von Graf, terasurfer, Kalila, Dan Guido, Nitin Borwankar, 阿明, Ai Maven, John Villwock, Gabriel Puliatti, Stephen Murray, Asp the Wyvern, danny, Chris Smitley, ReadyPlayerEmma, S_X, Daniel P. Andersen, Olakabola, Jeffrey Morgan, Imad Khwaja, Caitlyn Gatomon, webtim, Alicia Loh, Trenton Dambrowitz, Swaroop Kallakuri, Erik Bjäreholt, Leonard Tan, Spiking Neurons AB, Luke @flexchar, Ajan Kanaga, Thomas Belote, Deo Leter, RoA, Willem Michiel, transmissions 11, subjectnull, Matthew Berman, Joseph William Delisle, David Ziegler, Michael Davis, Johann-Peter Hartmann, Talal Aujan, senxiiz, Artur Olbinski, Rainer Wilmers, Spencer Kim, Fen Risland, Cap'n Zoog, Rishabh Srivastava, Michael Levine, Geoffrey Montalvo, Sean Connelly, Alexandros Triantafyllidis, Pieter, Gabriel Tamborski, Sam, Subspace Studios, Junyu Yang, Pedro Madruga, Vadim, Cory Kujawski, K, Raven Klaugh, Randy H, Mano Prime, Sebastain Graf, Space Cruiser
239
 
240
 
241
  Thank you to all my generous patrons and donaters!
 
1
  ---
2
+ base_model: tiiuae/falcon-180B-chat
3
+ datasets:
4
+ - tiiuae/falcon-refinedweb
5
+ inference: false
6
  language:
7
  - en
8
  - de
9
  - es
10
  - fr
11
  license: unknown
 
 
 
 
12
  model_creator: Technology Innovation Institute
13
+ model_name: Falcon 180B Chat
14
  model_type: falcon
15
+ prompt_template: 'User: {prompt}
16
+
17
+ Assistant:
18
+
19
+ '
20
  quantized_by: TheBloke
 
21
  ---
22
 
23
  <!-- header start -->
 
41
  - Model creator: [Technology Innovation Institute](https://huggingface.co/tiiuae)
42
  - Original model: [Falcon 180B Chat](https://huggingface.co/tiiuae/falcon-180B-chat)
43
 
44
+ <!-- description start -->
45
  ## Description
46
 
47
  This repo contains GGUF format model files for [Technology Innovation Institute's Falcon 180B Chat](https://huggingface.co/tiiuae/falcon-180B-chat).
48
 
49
+ <!-- description end -->
50
  <!-- README_GGUF.md-about-gguf start -->
51
  ### About GGUF
52
 
53
  GGUF is a new format introduced by the llama.cpp team on August 21st 2023. It is a replacement for GGML, which is no longer supported by llama.cpp.
54
 
55
+ Here is an incomplate list of clients and libraries that are known to support GGUF:
56
 
57
+ * [llama.cpp](https://github.com/ggerganov/llama.cpp). The source project for GGUF. Offers a CLI and a server option.
58
+ * [text-generation-webui](https://github.com/oobabooga/text-generation-webui), the most widely used web UI, with many features and powerful extensions. Supports GPU acceleration.
59
+ * [KoboldCpp](https://github.com/LostRuins/koboldcpp), a fully featured web UI, with GPU accel across all platforms and GPU architectures. Especially good for story telling.
60
+ * [LM Studio](https://lmstudio.ai/), an easy-to-use and powerful local GUI for Windows and macOS (Silicon), with GPU acceleration.
 
61
  * [LoLLMS Web UI](https://github.com/ParisNeo/lollms-webui), a great web UI with many interesting and unique features, including a full model library for easy model selection.
62
+ * [Faraday.dev](https://faraday.dev/), an attractive and easy to use character-based chat GUI for Windows and macOS (both Silicon and Intel), with GPU acceleration.
63
  * [ctransformers](https://github.com/marella/ctransformers), a Python library with GPU accel, LangChain support, and OpenAI-compatible AI server.
64
  * [llama-cpp-python](https://github.com/abetlen/llama-cpp-python), a Python library with GPU accel, LangChain support, and OpenAI-compatible API server.
65
  * [candle](https://github.com/huggingface/candle), a Rust ML framework with a focus on performance, including GPU support, and ease of use.
 
77
  ## Prompt template: Falcon
78
 
79
  ```
 
80
  User: {prompt}
81
  Assistant:
 
82
 
 
 
 
 
 
 
83
  ```
84
+
85
  <!-- prompt-template end -->
86
 
87
+
88
  <!-- compatibility_gguf start -->
89
  ## Compatibility
90
 
91
+ These quantised GGUFv2 files are compatible with llama.cpp from August 27th onwards, as of commit [d0cee0d](https://github.com/ggerganov/llama.cpp/commit/d0cee0d36d5be95a0d9088b674dbb27354107221)
92
 
93
+ They are also compatible with many third party UIs and libraries - please see the list at the top of this README.
94
 
95
  ## Explanation of quantisation methods
96
  <details>
 
127
 
128
  **Note**: the above RAM figures assume no GPU offloading. If layers are offloaded to the GPU, this will reduce RAM usage and use VRAM instead.
129
 
130
+ ### Q6_K and Q8_0 files are split and require joining
131
 
132
+ **Note:** HF does not support uploading files larger than 50GB. Therefore I have uploaded the Q6_K and Q8_0 files as split files.
133
 
134
  <details>
135
+ <summary>Click for instructions regarding Q6_K and Q8_0 files</summary>
136
 
137
+ ### q6_K
138
+ Please download:
139
+ * `falcon-180b-chat.Q6_K.gguf-split-a`
140
+ * `falcon-180b-chat.Q6_K.gguf-split-b`
141
+
142
+ ### q8_0
143
+ Please download:
144
+ * `falcon-180b-chat.Q8_0.gguf-split-a`
145
+ * `falcon-180b-chat.Q8_0.gguf-split-b`
146
+
147
+ To join the files, do the following:
148
 
149
  Linux and macOS:
150
  ```
151
+ cat falcon-180b-chat.Q6_K.gguf-split-* > falcon-180b-chat.Q6_K.gguf && rm falcon-180b-chat.Q6_K.gguf-split-*
152
+ cat falcon-180b-chat.Q8_0.gguf-split-* > falcon-180b-chat.Q8_0.gguf && rm falcon-180b-chat.Q8_0.gguf-split-*
153
  ```
154
  Windows command line:
155
  ```
156
+ COPY /B falcon-180b-chat.Q6_K.gguf-split-a + falcon-180b-chat.Q6_K.gguf-split-b falcon-180b-chat.Q6_K.gguf
157
+ del falcon-180b-chat.Q6_K.gguf-split-a falcon-180b-chat.Q6_K.gguf-split-b
158
+
159
+ COPY /B falcon-180b-chat.Q8_0.gguf-split-a + falcon-180b-chat.Q8_0.gguf-split-b falcon-180b-chat.Q8_0.gguf
160
+ del falcon-180b-chat.Q8_0.gguf-split-a falcon-180b-chat.Q8_0.gguf-split-b
161
  ```
162
 
163
  </details>
164
  <!-- README_GGUF.md-provided-files end -->
165
 
166
+ <!-- README_GGUF.md-how-to-download start -->
167
+ ## How to download GGUF files
168
+
169
+ **Note for manual downloaders:** You almost never want to clone the entire repo! Multiple different quantisation formats are provided, and most users only want to pick and download a single file.
170
+
171
+ The following clients/libraries will automatically download models for you, providing a list of available models to choose from:
172
+ - LM Studio
173
+ - LoLLMS Web UI
174
+ - Faraday.dev
175
+
176
+ ### In `text-generation-webui`
177
+
178
+ Under Download Model, you can enter the model repo: TheBloke/Falcon-180B-Chat-GGUF and below it, a specific filename to download, such as: falcon-180b-chat.Q4_K_M.gguf.
179
 
180
+ Then click Download.
181
 
182
+ ### On the command line, including multiple files at once
183
 
184
+ I recommend using the `huggingface-hub` Python library:
185
+
186
+ ```shell
187
+ pip3 install huggingface-hub
188
  ```
189
+
190
+ Then you can download any individual model file to the current directory, at high speed, with a command like this:
191
+
192
+ ```shell
193
+ huggingface-cli download TheBloke/Falcon-180B-Chat-GGUF falcon-180b-chat.Q4_K_M.gguf --local-dir . --local-dir-use-symlinks False
194
+ ```
195
+
196
+ <details>
197
+ <summary>More advanced huggingface-cli download usage</summary>
198
+
199
+ You can also download multiple files at once with a pattern:
200
+
201
+ ```shell
202
+ huggingface-cli download TheBloke/Falcon-180B-Chat-GGUF --local-dir . --local-dir-use-symlinks False --include='*Q4_K*gguf'
203
+ ```
204
+
205
+ For more documentation on downloading with `huggingface-cli`, please see: [HF -> Hub Python Library -> Download files -> Download from the CLI](https://huggingface.co/docs/huggingface_hub/guides/download#download-from-the-cli).
206
+
207
+ To accelerate downloads on fast connections (1Gbit/s or higher), install `hf_transfer`:
208
+
209
+ ```shell
210
+ pip3 install hf_transfer
211
+ ```
212
+
213
+ And set environment variable `HF_HUB_ENABLE_HF_TRANSFER` to `1`:
214
+
215
+ ```shell
216
+ HF_HUB_ENABLE_HF_TRANSFER=1 huggingface-cli download TheBloke/Falcon-180B-Chat-GGUF falcon-180b-chat.Q4_K_M.gguf --local-dir . --local-dir-use-symlinks False
217
+ ```
218
+
219
+ Windows Command Line users: You can set the environment variable by running `set HF_HUB_ENABLE_HF_TRANSFER=1` before the download command.
220
+ </details>
221
+ <!-- README_GGUF.md-how-to-download end -->
222
+
223
+ <!-- README_GGUF.md-how-to-run start -->
224
+ ## Example `llama.cpp` command
225
+
226
+ Make sure you are using `llama.cpp` from commit [d0cee0d](https://github.com/ggerganov/llama.cpp/commit/d0cee0d36d5be95a0d9088b674dbb27354107221) or later.
227
+
228
+ ```shell
229
+ ./main -ngl 32 -m falcon-180b-chat.Q4_K_M.gguf --color -c 2048 --temp 0.7 --repeat_penalty 1.1 -n -1 -p "User: {prompt}\nAssistant:"
230
  ```
 
231
 
232
  Change `-ngl 32` to the number of layers to offload to GPU. Remove it if you don't have GPU acceleration.
233
 
234
+ Change `-c 2048` to the desired sequence length. For extended sequence models - eg 8K, 16K, 32K - the necessary RoPE scaling parameters are read from the GGUF file and set by llama.cpp automatically.
235
 
236
  If you want to have a chat-style conversation, replace the `-p <PROMPT>` argument with `-i -ins`
237
 
 
245
 
246
  You can use GGUF models from Python using the [llama-cpp-python](https://github.com/abetlen/llama-cpp-python) or [ctransformers](https://github.com/marella/ctransformers) libraries.
247
 
248
+ ### How to load this model in Python code, using ctransformers
249
 
250
  #### First install the package
251
 
252
+ Run one of the following commands, according to your system:
253
+
254
+ ```shell
255
  # Base ctransformers with no GPU acceleration
256
+ pip install ctransformers
257
  # Or with CUDA GPU acceleration
258
+ pip install ctransformers[cuda]
259
+ # Or with AMD ROCm GPU acceleration (Linux only)
260
+ CT_HIPBLAS=1 pip install ctransformers --no-binary ctransformers
261
+ # Or with Metal GPU acceleration for macOS systems only
262
+ CT_METAL=1 pip install ctransformers --no-binary ctransformers
263
  ```
264
 
265
+ #### Simple ctransformers example code
266
 
267
  ```python
268
  from ctransformers import AutoModelForCausalLM
269
 
270
  # Set gpu_layers to the number of layers to offload to GPU. Set to 0 if no GPU acceleration is available on your system.
271
+ llm = AutoModelForCausalLM.from_pretrained("TheBloke/Falcon-180B-Chat-GGUF", model_file="falcon-180b-chat.Q4_K_M.gguf", model_type="falcon", gpu_layers=50)
272
 
273
  print(llm("AI is going to"))
274
  ```
275
 
276
  ## How to use with LangChain
277
 
278
+ Here are guides on using llama-cpp-python and ctransformers with LangChain:
279
 
280
  * [LangChain + llama-cpp-python](https://python.langchain.com/docs/integrations/llms/llamacpp)
281
  * [LangChain + ctransformers](https://python.langchain.com/docs/integrations/providers/ctransformers)
 
290
 
291
  [TheBloke AI's Discord server](https://discord.gg/theblokeai)
292
 
293
+ ## Thanks, and how to contribute
294
 
295
  Thanks to the [chirper.ai](https://chirper.ai) team!
296
 
297
+ Thanks to Clay from [gpus.llm-utils.org](llm-utils)!
298
+
299
  I've had a lot of people ask if they can contribute. I enjoy providing models and helping people, and would love to be able to spend even more time doing it, as well as expanding into new projects like fine tuning/training.
300
 
301
  If you're able and willing to contribute it will be most gratefully received and will help me to keep providing more models, and to start work on new AI projects.
 
307
 
308
  **Special thanks to**: Aemon Algiz.
309
 
310
+ **Patreon special mentions**: Pierre Kircher, Stanislav Ovsiannikov, Michael Levine, Eugene Pentland, Andrey, 준교 김, Randy H, Fred von Graf, Artur Olbinski, Caitlyn Gatomon, terasurfer, Jeff Scroggin, James Bentley, Vadim, Gabriel Puliatti, Harry Royden McLaughlin, Sean Connelly, Dan Guido, Edmond Seymore, Alicia Loh, subjectnull, AzureBlack, Manuel Alberto Morcote, Thomas Belote, Lone Striker, Chris Smitley, Vitor Caleffi, Johann-Peter Hartmann, Clay Pascal, biorpg, Brandon Frisco, sidney chen, transmissions 11, Pedro Madruga, jinyuan sun, Ajan Kanaga, Emad Mostaque, Trenton Dambrowitz, Jonathan Leane, Iucharbius, usrbinkat, vamX, George Stoitzev, Luke Pendergrass, theTransient, Olakabola, Swaroop Kallakuri, Cap'n Zoog, Brandon Phillips, Michael Dempsey, Nikolai Manek, danny, Matthew Berman, Gabriel Tamborski, alfie_i, Raymond Fosdick, Tom X Nguyen, Raven Klaugh, LangChain4j, Magnesian, Illia Dulskyi, David Ziegler, Mano Prime, Luis Javier Navarrete Lozano, Erik Bjäreholt, 阿明, Nathan Dryer, Alex, Rainer Wilmers, zynix, TL, Joseph William Delisle, John Villwock, Nathan LeClaire, Willem Michiel, Joguhyik, GodLy, OG, Alps Aficionado, Jeffrey Morgan, ReadyPlayerEmma, Tiffany J. Kim, Sebastain Graf, Spencer Kim, Michael Davis, webtim, Talal Aujan, knownsqashed, John Detwiler, Imad Khwaja, Deo Leter, Jerry Meng, Elijah Stavena, Rooh Singh, Pieter, SuperWojo, Alexandros Triantafyllidis, Stephen Murray, Ai Maven, ya boyyy, Enrico Ros, Ken Nordquist, Deep Realms, Nicholas, Spiking Neurons AB, Elle, Will Dee, Jack West, RoA, Luke @flexchar, Viktor Bowallius, Derek Yates, Subspace Studios, jjj, Toran Billups, Asp the Wyvern, Fen Risland, Ilya, NimbleBox.ai, Chadd, Nitin Borwankar, Emre, Mandus, Leonard Tan, Kalila, K, Trailburnt, S_X, Cory Kujawski
311
 
312
 
313
  Thank you to all my generous patrons and donaters!