lash-runtime 0.1.0-alpha.63

Durable agent runtime for Rust: sessions, turns, tools, plugins. Embeddable facade over lash-core.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
error[E0061]: this method takes 2 arguments but 1 argument was supplied
 --> tests/ui/core_delete_session_requires_scope.rs:2:18
  |
2 |     let _ = core.delete_session("session-id").await;
  |                  ^^^^^^^^^^^^^^-------------- argument #2 of type `ScopedEffectController<'_>` is missing
  |
note: method defined here
 --> src/core.rs
  |
  |     pub async fn delete_session(
  |                  ^^^^^^^^^^^^^^
help: provide the argument
  |
2 |     let _ = core.delete_session("session-id", /* ScopedEffectController<'_> */).await;
  |                                             ++++++++++++++++++++++++++++++++++