You've already forked STARK
mirror of
https://github.com/MarkParker5/STARK.git
synced 2025-07-02 22:36:54 +02:00
add Response class, recursive voice assistant algorithm
This commit is contained in:
6
Command/Response.py
Normal file
6
Command/Response.py
Normal file
@ -0,0 +1,6 @@
|
||||
class Response:
|
||||
def __init__(this, voice, text, callback = None, thread = None):
|
||||
this.voice: str = voice
|
||||
this.text: str = text
|
||||
this.callback: Callback = callback
|
||||
this.thread = thread
|
Reference in New Issue
Block a user