Skip to content

Commit 1ce0af8

Browse files
authored
Merge branch 'main' into feat/ms-voiceai
2 parents a8c0bbc + bef2c9f commit 1ce0af8

File tree

13 files changed

+415
-475
lines changed

13 files changed

+415
-475
lines changed

bun.lock

Lines changed: 19 additions & 163 deletions
Large diffs are not rendered by default.

core/include_internal/ten_rust/ten_rust.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ TEN_RUST_PRIVATE_API void ten_rust_free_cstring(const char *ptr);
5454
* @example
5555
* ```c
5656
* const char* input_json = "{\"nodes\": []}";
57-
* const char* result = ten_rust_graph_from_str(input_json);
57+
* const char* result = ten_rust_graph_validate_complete_flatten(input_json);
5858
* if (result != NULL) {
5959
* printf("Processed graph: %s\n", result);
6060
* ten_rust_free_cstring(result);
@@ -63,7 +63,8 @@ TEN_RUST_PRIVATE_API void ten_rust_free_cstring(const char *ptr);
6363
* }
6464
* ```
6565
*/
66-
TEN_RUST_PRIVATE_API const char *ten_rust_graph_from_str(const char *json_str);
66+
TEN_RUST_PRIVATE_API const char *ten_rust_graph_validate_complete_flatten(
67+
const char *json_str);
6768

6869
TEN_RUST_PRIVATE_API Cipher *ten_cipher_create(const char *algorithm,
6970
const char *params);

0 commit comments

Comments
 (0)