Main
main_function(id)
Main function to determine the action and response.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
id |
int
|
The id of the user. |
required |
Returns:
Name | Type | Description |
---|---|---|
tuple | A tuple containing the action and response. |
Examples:
>>> main_function(1)
('Talk', 'What can I do for you?')
Source code in backend/Multi-Sensory Virtual AAGI/main.py
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
|