We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0c3231 commit 1aa262eCopy full SHA for 1aa262e
examples/conversation_v1.py
@@ -11,3 +11,8 @@
11
12
response = conversation.message(workspace_id=workspace_id, message_input={'text': 'What\'s the weather like?'})
13
print(json.dumps(response, indent=2))
14
+
15
+# When you send multiple requests for the same conversation, include the context object from the previous response.
16
+# response = conversation.message(workspace_id=workspace_id, message_input={'text': 'turn the wipers on'},
17
+ context=response['context'])
18
+# print(json.dumps(response, indent=2))
0 commit comments