From e54929255539b0d388b3ed0711b6f1e9bd686267 Mon Sep 17 00:00:00 2001 From: John Wang Date: Thu, 13 Apr 2023 21:06:51 +0800 Subject: [PATCH] Update README.md --- sdks/python-client/README.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/sdks/python-client/README.md b/sdks/python-client/README.md index bdbb9070f0..ae46805912 100644 --- a/sdks/python-client/README.md +++ b/sdks/python-client/README.md @@ -3,6 +3,14 @@ A LangGenius App Service-API Client, using for build a webapp by request Service ## Usage +First, install `langgenius-client` python sdk package: + +``` +pip install langgenius-client +``` + +Write your code with sdk: + ``` api_key = "your_api_key" @@ -31,4 +39,4 @@ print(conversations) # Rename Conversation using ChatClient rename_conversation_response = chat_client.rename_conversation(conversation_id="conversation_id", name="new_name", user="user_id") print(rename_conversation_response) -``` \ No newline at end of file +```