From 367ef145d67e6afe6e248ac6566bdf1577570c8e Mon Sep 17 00:00:00 2001 From: Ares <53114112+ares0x@users.noreply.github.com> Date: Mon, 15 May 2023 11:20:12 +0800 Subject: [PATCH] fix: Fix symbol errors in the nodejs-client's README.md file of the SDK (#3) --- sdks/nodejs-client/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdks/nodejs-client/README.md b/sdks/nodejs-client/README.md index 1bfd5f5e0..502c8bedf 100644 --- a/sdks/nodejs-client/README.md +++ b/sdks/nodejs-client/README.md @@ -13,7 +13,7 @@ After installing the SDK, you can use it in your project like this: import { DifyClient, ChatClient, CompletionClient } from 'dify-client' const API_KEY = 'your-api-key-here'; -const user = `random-user-id`: +const user = `random-user-id`; // Create a completion client const completionClient = new CompletionClient(API_KEY)