Research portable Memory game | Исследовать портируемую игру Память
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

vor 6 Monaten
1234567891011121314151617181920212223242526272829
  1. from cli_Context import *
  2. from llm import *
  3. # Greet the user
  4. @llm_by_value
  5. def cli_greetUser(
  6. c: cli_Context
  7. ) -> cli_Context:
  8. c.outputGreeting = "OGS Memory Textual UI"
  9. c.recentField = "outputGreeting"
  10. return c
  11. #}
  12. # Show help (aka commands)
  13. @llm_by_value
  14. def cli_showHelp(
  15. c: cli_Context
  16. ) -> cli_Context:
  17. if (
  18. c.input == "h" or
  19. c.input == "help"
  20. ):
  21. c.outputHelp = "Commands:\n\te, exit, q, quit\n\t\tExit\n\th, help\n\t\tList commands\n"
  22. c.recentField = "outputHelp"
  23. return c
  24. c.recentField = "none"
  25. return c
  26. #}