From e7c60b82ba7db7cd8cc963b871b79b930190c18a Mon Sep 17 00:00:00 2001 From: ares0x Date: Mon, 15 May 2023 10:15:05 +0800 Subject: [PATCH] fix: Fix symbol errors in the nodejs-client's README.md file of the SDK --- 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 1bfd5f5e00..502c8bedf2 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)