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: crates/wasmind_actor_bindings/README.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,17 +8,17 @@ No Rust is exported from this crate! It is designed to be included as a componen
8
8
9
9
```
10
10
[package.metadata.component.target.dependencies]
11
-
"Wasmind:actor" = "0.1"
11
+
"wasmind:actor" = "0.1"
12
12
```
13
13
14
14
You can then import these interfaces in your WIT definition. E.G:
15
15
16
16
```
17
17
world your-world {
18
-
import Wasmind:actor/host-info@0.1.0;
19
-
import Wasmind:actor/messaging@0.1.0;
20
-
import Wasmind:actor/http@0.1.0;
21
-
import Wasmind:actor/logger@0.1.0;
18
+
import wasmind:actor/host-info@0.1.0;
19
+
import wasmind:actor/messaging@0.1.0;
20
+
import wasmind:actor/http@0.1.0;
21
+
import wasmind:actor/logger@0.1.0;
22
22
23
23
... your exports
24
24
}
@@ -34,5 +34,5 @@ The WIT definitions specify how actors:
34
34
35
35
## Links
36
36
37
-
-**🔧 [Actor Development Utils](../Wasmind_actor_utils/)** - High-level abstractions for building actors
38
-
-**🎭 [Example Actors](../../actors/)** - Reference implementations using these bindings
37
+
-**🔧 [Actor Development Utils](https://github.com/silasmarvin/wasmind/tree/main/crates/wasmind_actor_utils/)** - High-level abstractions for building actors
38
+
-**🎭 [Example Actors](https://github.com/silasmarvin/wasmind/tree/main/actors/)** - Reference implementations using these bindings
Copy file name to clipboardExpand all lines: crates/wasmind_actor_utils_common_messages/README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ Common message types for inter-actor communication in the Wasmind actor system.
6
6
7
7
## Important Notes
8
8
9
-
**If you're building a Rust actor, use [`Wasmind_actor_utils`](../Wasmind_actor_utils/) instead of this crate directly.** This crate is re-exported from `Wasmind_actor_utils` for convenience.
9
+
**If you're building a Rust actor, use [`wasmind_actor_utils`](https://github.com/silasmarvin/wasmind/tree/main/crates/wasmind_actor_utils/) instead of this crate directly.** This crate is re-exported from `wasmind_actor_utils` for convenience.
10
10
11
11
**This is not the "end all be all" of messages in Wasmind.** Wasmind can pass any message type that can be represented as `Vec<u8>` bytes - this includes images, binary data, custom formats, literally anything. These common messages are just JSON-serialized text messages that provide convenient, standardized communication patterns for actors.
12
12
@@ -19,5 +19,5 @@ Common message types for inter-actor communication in the Wasmind actor system.
19
19
20
20
## Links
21
21
22
-
-**[Wasmind_actor_utils](../Wasmind_actor_utils/)** - Main utilities crate for Rust actor development
23
-
-**[Wasmind_llm_types](../Wasmind_llm_types/)** - LLM type definitions used by these messages
22
+
-**[wasmind_actor_utils](https://github.com/silasmarvin/wasmind/tree/main/crates/wasmind_actor_utils/)** - Main utilities crate for Rust actor development
23
+
-**[wasmind_llm_types](https://github.com/silasmarvin/wasmind/tree/main/crates/wasmind_llm_types/)** - LLM type definitions used by these messages
These macros are re-exported through [`Wasmind_actor_utils`](../Wasmind_actor_utils/) for convenient access when building actors.
7
+
These macros are re-exported through [`wasmind_actor_utils`](https://github.com/silasmarvin/wasmind/tree/main/crates/wasmind_actor_utils/) for convenient access when building actors.
8
8
9
9
## Links
10
10
11
-
-**[Wasmind_actor_utils](../Wasmind_actor_utils/)** - Main utilities crate for Rust actor development
11
+
-**[wasmind_actor_utils](https://github.com/silasmarvin/wasmind/tree/main/crates/wasmind_actor_utils/)** - Main utilities crate for Rust actor development
@@ -163,10 +163,10 @@ The CLI uses TOML configuration files to define your actor setup. Configurations
163
163
- Actor-specific overrides
164
164
- LLM provider configuration via LiteLLM
165
165
166
-
The example configurations show different patterns you can use, but you're free to create any actor configuration that suits your needs. See the [Configuration Guide](../wasmind_config/) for detailed reference.
166
+
The example configurations show different patterns you can use, but you're free to create any actor configuration that suits your needs. See the [Configuration Guide](https://github.com/silasmarvin/wasmind/tree/main/crates/wasmind_config/) for detailed reference.
167
167
168
168
## Links
169
169
170
-
-**📚 [Wasmind Book](https://silasmarvin.github.io/wasmind/)** - Complete user guides and concepts
Copy file name to clipboardExpand all lines: crates/wasmind_llm_types/README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,5 +10,5 @@ These types are used throughout the Wasmind actor ecosystem for consistent LLM i
10
10
11
11
## Links
12
12
13
-
-**[Wasmind_actor_utils_common_messages](../Wasmind_actor_utils_common_messages/)** - Common message types that use these LLM types
13
+
-**[wasmind_actor_utils_common_messages](https://github.com/silasmarvin/wasmind/tree/main/crates/wasmind_actor_utils_common_messages/)** - Common message types that use these LLM types
14
14
-**[LiteLLM](https://www.litellm.ai/)** - Source of many of these type definitions
0 commit comments