伊地知ニジカ放送局だぬ゛ん゛. https://www.youtube.com/@deerjika
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
267 B

  1. from connection import *
  2. import sys
  3. import openai
  4. class Talk:
  5. @classmethod
  6. def main (message: str) -> None:
  7. openai.organization = OPENAI_ORGANISATION
  8. openai.api_key = OPENAI_API_KEY
  9. if __name__ == '__main__':
  10. Talk.main (sys.argv[1])