File size: 3,326 Bytes
f3995f8 f02fef5 f3995f8 f02fef5 f3995f8 f02fef5 f3995f8 f02fef5 f3995f8 f02fef5 f3995f8 f02fef5 f3995f8 f02fef5 f3995f8 f02fef5 f3995f8 f02fef5 f3995f8 f02fef5 087c6cb f02fef5 f3995f8 d22c079 f02fef5 f3995f8 f02fef5 f3995f8 f02fef5 |
1 2 3 4 5 6 7 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 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 |
# *********************************************************************************
# SupportDev.py
# note: this is a draft <โโโโโ> needs more logic & be adapted to use with Chainlit
# *********************************************************************************
import inspect
# -- contains static methods to be called when user enters "/help"
class SupportDev:
@staticmethod
def help():
"""Displays a list of available slash commands."""
return "Lists all available slash commands in a markdown table."
@staticmethod
def memory():
"""saves files, session history, and zips them for download."""
return "Creates a backup of your session for download."
@staticmethod
def summary():
"""Provides an on-demand summary of all questions and takeaways."""
return "Generates a summary of key discussions in this session."
@staticmethod
def traffic():
"""tweak into traffic API integration"""
return "Provides curated traffic info links."
@staticmethod
def stash():
"""stashes text for later retrieval with /recall."""
return "Stores text snippets to retrieve later."
@staticmethod
def recall():
"""recalls text previously stored with /stash."""
return "Fetches and displays stored text snippets."
@staticmethod
def how_to():
"""guidance on using slash commands."""
return "Shows documentation on available slash commands."
# -- to retreive all available slash commands from the SupportDev class.
# -- to return a dictionary mapping each command to its description.
def get_available_slash_commands():
return {
f"/{name}": inspect.getdoc(func)
for name, func in inspect.getmembers(SupportDev, predicate=inspect.isfunction)
}
# -- should execute a user's slash command by looking up the corresponding function in SupportDev.
def _slash_command(command: str) -> None:
command = command.lstrip("/")
command_func = getattr(SupportDev, command, None)
if command_func is None:
print(f'Error: Unrecognized slash command "/{command}".')
else:
instruction = command_func()
print(f'[System] The "/Slash Command" you are now executing is:" /{command}": "\n{instruction}\n")
# **"Improve formatting using Markdown:"
# -- to create an md table listing all slash commands+descriptions.
def generate_markdown_table():
commands = get_available_slash_commands()
markdown_table = "| **Slash Command** | **Description** |\n"
markdown_table += "|--------------------|---------------|\n"
for cmd, desc in commands.items():
markdown_table += f"| {cmd} | {desc} |\n"
return markdown_table
# print(generate_markdown_table()) !<โโโโโto display in-line/Chainlit rule
#if __name__ == "__main__":
#print("Available Slash Commands:\n")
#print(generate_markdown_table())
|