You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/posts/add-llm-to-your-cloud.md
+2-4Lines changed: 2 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,7 @@ In this article, I'll go over how to use the LLM (or GPT) capabilities of [tauby
26
26
A Taubyte Cloud can provide LLM capabilities through what we call a Satellite. In this case it's [taubyte-llama-satellite](https://github.com/samyfodil/taubyte-llama-satellite) which exports llama.cpp capabilities to the Taubyte Virtual Machine, thus giving Serverless Functions (or DFunctions, as per Taubyte's terminology) LLM features.
27
27
28
28
## LLAMA SDK
29
-
Satellites export low-level functions that aren't very intuitive to use directly. Fortunately, it's possible to address that with a user-friendly SDK. The [Go](https://go.dev/) SDK for taubyte-llama-satellite](https://github.com/samyfodil/taubyte-llama-satellite) can be found [here](https://github.com/samyfodil/taubyte-llama-satellite/tree/main/sdk).
29
+
Satellites export low-level functions that aren't very intuitive to use directly. Fortunately, it's possible to address that with a user-friendly SDK. The [Go](https://go.dev/) SDK for [taubyte-llama-satellite](https://github.com/samyfodil/taubyte-llama-satellite) can be found [here](https://github.com/samyfodil/taubyte-llama-satellite/tree/main/sdk).
30
30
31
31
## Get Ready
32
32
Before proceeding, let's ensure you have a project and a DFunction ready to go. If not, please refer to ["Create a Function"](https://tau.how/guides/build/02-guide/02-create-a-dfunc/).
Copy file name to clipboardExpand all lines: content/posts/add-llm-to-your-project.md
+2-4Lines changed: 2 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,7 +25,7 @@ In this article, I'll go over how to use the LLM (or GPT) capabilities of [tauby
25
25
A Taubyte Cloud can provide LLM capabilities through what we call a Satellite. In this case it's [taubyte-llama-satellite](https://github.com/samyfodil/taubyte-llama-satellite) which exports llama.cpp capabilities to the Taubyte Virtual Machine, thus giving Serverless Functions (or DFunctions, as per Taubyte's terminology) LLM features.
26
26
27
27
## LLAMA SDK
28
-
Satellites export low-level functions that aren't very intuitive to use directly. Fortunately, it's possible to address that with a user-friendly SDK. The [Go](https://go.dev/) SDK for taubyte-llama-satellite](https://github.com/samyfodil/taubyte-llama-satellite) can be found [here](https://github.com/samyfodil/taubyte-llama-satellite/tree/main/sdk).
28
+
Satellites export low-level functions that aren't very intuitive to use directly. Fortunately, it's possible to address that with a user-friendly SDK. The [Go](https://go.dev/) SDK for [taubyte-llama-satellite](https://github.com/samyfodil/taubyte-llama-satellite) can be found [here](https://github.com/samyfodil/taubyte-llama-satellite/tree/main/sdk).
29
29
30
30
## Get Ready
31
31
Before proceeding, let's ensure you have a project and a DFunction ready to go. If not, please refer to ["Create a Function"](https://tau.how/guides/build/02-guide/02-create-a-dfunc/).
Copy file name to clipboardExpand all lines: content/posts/be-competitive-in-few-minutes.md
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -136,7 +136,7 @@ $ curl https://get.tau.link/tau | sh
136
136
> It's worth noting that a single host can support multiple nodes, provided their ports do not overlap. However, for the purposes of this guide, we will maintain a one-node-per-host configuration.
137
137
138
138
Upon successful installation, you should see an output similar to the following:
139
-
```
139
+
```bash
140
140
% Total % Received % Xferd Average Speed Time Time Time Current
@@ -156,7 +156,7 @@ The configuration process for a node is straightforward and can be executed with
156
156
```sh
157
157
$ sudo tau config generate -n enterprise.starships.ws \
158
158
-s compute --protos all --ip 34.133.173.124 \
159
-
--dv --swarm
159
+
--dv --swarm
160
160
```
161
161
162
162
Here's a quick rundown of the options used:
@@ -170,7 +170,7 @@ Here's a quick rundown of the options used:
170
170
> Note: It's generally not advisable to enable all protocols on a single node due to potential conflicts and resource constraints. This article simplifies the setup for demonstration purposes. Adjustments to the protocol configuration can easily be made with a single command, which we will explore in future discussions.
171
171
172
172
Upon successful configuration, you'll receive the node's ID as confirmation:
- **For the Generated Domain:** Delegate the specified subdomain to your cloud by adding the appropriate `NS` entry, enhancing domain management and flexibility.
471
-

471
+

472
472
473
473
### Bootstrapping for Recovery and Expansion
474
474
Ensure all nodes are aware of each other to facilitate network resilience and data consistency:
@@ -495,7 +495,7 @@ To extend our cloud's reach, we proceed to configure the additional nodes with p
495
495
- **On the Third Host**:
496
496
```sh
497
497
$ sudo tau config gen --ip 35.235.122.141 --use compute.tmpl.yaml --bootstrap /ip4/34.133.173.124/tcp/4242/p2p/12D3KooWKv5oNF2a6h9sYzRUPEAaYe6feTbBbcLYZYVFrMDDCHzY
498
-
```
498
+
```
499
499
500
500
**Important**: Use the correct IP addresses for each host and the first node's multi-address for initial discovery. You'll be prompted to enter the password established during the template creation phase—this step is crucial for maintaining security and consistency across your cloud infrastructure.
| "Reference not found" | Branch doesn't exist on remote | Create branch in console|
106
107
| Wrong branch building | Dream started on different branch | Restart Dream with correct `-b` flag |
107
-
| Changes not appearing | Built on wrong branch | Verify console shows correct branch |
108
+
| Changes not appearing | Built on wrong branch | Verify console shows correct branch|
108
109
109
110
## Best Practices
110
111
@@ -126,4 +127,3 @@ You've learned how to:
126
127
Branching enables safe, isolated development that follows industry best practices. You can experiment freely knowing your main branch stays stable until you're ready to merge.
127
128
128
129
Next, learn how to [ship to production](/blog/posts/ship-to-production-taubyte) when your project is ready.
Copy file name to clipboardExpand all lines: content/posts/build-your-cloud.md
+2-4Lines changed: 2 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,7 @@ In this article, I'll go over how to use the LLM (or GPT) capabilities of [tauby
26
26
A Taubyte Cloud can provide LLM capabilities through what we call a Satellite. In this case it's [taubyte-llama-satellite](https://github.com/samyfodil/taubyte-llama-satellite) which exports llama.cpp capabilities to the Taubyte Virtual Machine, thus giving Serverless Functions (or DFunctions, as per Taubyte's terminology) LLM features.
27
27
28
28
## LLAMA SDK
29
-
Satellites export low-level functions that aren't very intuitive to use directly. Fortunately, it's possible to address that with a user-friendly SDK. The [Go](https://go.dev/) SDK for taubyte-llama-satellite](https://github.com/samyfodil/taubyte-llama-satellite) can be found [here](https://github.com/samyfodil/taubyte-llama-satellite/tree/main/sdk).
29
+
Satellites export low-level functions that aren't very intuitive to use directly. Fortunately, it's possible to address that with a user-friendly SDK. The [Go](https://go.dev/) SDK for [taubyte-llama-satellite](https://github.com/samyfodil/taubyte-llama-satellite) can be found [here](https://github.com/samyfodil/taubyte-llama-satellite/tree/main/sdk).
30
30
31
31
## Get Ready
32
32
Before proceeding, let's ensure you have a project and a DFunction ready to go. If not, please refer to ["Create a Function"](https://tau.how/guides/build/02-guide/02-create-a-dfunc/).
Copy file name to clipboardExpand all lines: content/posts/cicd-taubyte.md
+38-34Lines changed: 38 additions & 34 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,15 +25,13 @@ Taubyte comes with a **built-in CI/CD system**. Every time you push changes to t
25
25
26
26
The build process is defined inside the **`.taubyte` folder**, which lives at the root of your codebase. You'll find this folder in the code of any function, website, or library.
27
27
28
-

0 commit comments