Research portable Memory game | Исследовать портируемую игру Память
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

memoryCLI.py 406B

6 meses atrás
1234567891011121314151617181920
  1. from memoryCLI_Context import *
  2. from llm import *
  3. # Greet the user.
  4. #
  5. # Conditions:
  6. # 1. No input is present (the app just got launched)
  7. @llm_by_value
  8. def memoryCLI_greetUser(
  9. c: memoryCLI_Context
  10. ) -> memoryCLI_Context:
  11. if (
  12. c.input == ""
  13. ):
  14. c.output = "OGS Memory TextUI greets you, %USERNAME%. Let's play!"
  15. c.recentField = "output"
  16. return c
  17. c.recentField = "none"
  18. return c
  19. #}