This repository has been archived by the owner on Apr 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update dynamodb conversation driver example (#66)
- Loading branch information
1 parent
a465cd0
commit 663c0dc
Showing
1 changed file
with
14 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,47 +1,22 @@ | ||
To store your conversation on DynamoDB you can use DynamoDbConversationMemoryDriver. | ||
```python | ||
from griptape.memory.structure import ConversationMemory | ||
from griptape.memory.structure import ConversationMemoryElement, Turn, Message | ||
import os | ||
import uuid | ||
from griptape.drivers import DynamoDbConversationMemoryDriver | ||
from griptape.memory.structure import ConversationMemory | ||
from griptape.structures import Agent | ||
|
||
# Instantiate DynamoDbConversationMemoryDriver | ||
dynamo_driver = DynamoDbConversationMemoryDriver( | ||
aws_region="us-east-1", | ||
table_name="conversations", | ||
partition_key="convo_id", | ||
value_attribute_key="convo_data", | ||
partition_key_value="convo1" | ||
) | ||
|
||
# Create a ConversationMemory structure | ||
conv_mem = ConversationMemory( | ||
turns=[ | ||
Turn( | ||
turn_index=0, | ||
system=Message("Hello"), | ||
user=Message("Hi") | ||
), | ||
Turn( | ||
turn_index=1, | ||
system=Message("How can I assist you today?"), | ||
user=Message("I need some information") | ||
) | ||
], | ||
latest_turn=Turn( | ||
turn_index=2, | ||
system=Message("Sure, what information do you need?"), | ||
user=None # user has not yet responded | ||
), | ||
driver=dynamo_driver # set the driver | ||
conversation_id = uuid.uuid4().hex | ||
dynamodb_driver = DynamoDbConversationMemoryDriver( | ||
table_name=os.environ["DYNAMODB_TABLE_NAME"], | ||
partition_key="id", | ||
value_attribute_key="memory", | ||
partition_key_value=conversation_id, | ||
) | ||
|
||
# Store the conversation in DynamoDB | ||
dynamo_driver.store(conv_mem) | ||
|
||
# Load the conversation from DynamoDB | ||
loaded_conv_mem = dynamo_driver.load() | ||
agent = Agent(memory=ConversationMemory(driver=dynamodb_driver)) | ||
|
||
# Display the loaded conversation | ||
print(loaded_conv_mem.to_json()) | ||
agent.run("My name is Jeff.") | ||
agent.run("What is my name?") | ||
|
||
``` | ||
``` |