mirror of
https://github.com/temporal-community/temporal-ai-agent.git
synced 2026-03-15 14:08:08 +01:00
send confirm script
This commit is contained in:
20
scripts/send_confirm.py
Normal file
20
scripts/send_confirm.py
Normal file
@@ -0,0 +1,20 @@
|
||||
import asyncio
|
||||
import sys
|
||||
from temporalio.client import Client
|
||||
|
||||
|
||||
async def main():
|
||||
|
||||
# 1) Connect to Temporal and signal the workflow
|
||||
client = await Client.connect("localhost:7233")
|
||||
|
||||
workflow_id = "agent-workflow"
|
||||
|
||||
await client.get_workflow_handle(workflow_id).signal("confirm")
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
if len(sys.argv) != 1:
|
||||
print("Usage: python send_confirm.py'")
|
||||
else:
|
||||
asyncio.run(main())
|
||||
Reference in New Issue
Block a user