From cd6ef5edaa2ee10ea332c3884a06fddf8580086c Mon Sep 17 00:00:00 2001 From: Vineeth Voruganti <13438633+VVoruganti@users.noreply.github.com> Date: Thu, 15 Feb 2024 13:37:27 -0800 Subject: [PATCH] random app_id --- example/discord/honcho-fact-memory/bot.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/example/discord/honcho-fact-memory/bot.py b/example/discord/honcho-fact-memory/bot.py index 39583b4..7a20a72 100644 --- a/example/discord/honcho-fact-memory/bot.py +++ b/example/discord/honcho-fact-memory/bot.py @@ -1,5 +1,5 @@ import os -# from uuid import uuid4 +from uuid import uuid1 import discord from honcho import Client as HonchoClient from chain import langchain_message_converter, LMChain @@ -10,7 +10,7 @@ intents.message_content = True intents.members = True -app_id = str("demo-honcho-fact-memory") +app_id = str(uuid1()) #honcho = HonchoClient(app_id=app_id, base_url="http://localhost:8000") # uncomment to use local honcho = HonchoClient(app_id=app_id) # uses demo server at https://demo.honcho.dev