Skip to content

Commit

Permalink
Merge pull request #22 from plastic-labs/example-hotfix
Browse files Browse the repository at this point in the history
Random App_Id
  • Loading branch information
vintrocode authored Feb 15, 2024
2 parents ecb24a3 + cd6ef5e commit 32b87db
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions example/discord/honcho-fact-memory/bot.py
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
Expand Down

0 comments on commit 32b87db

Please sign in to comment.