chatgpt大模型
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.

20 lines
499 B

  1. #!/usr/bin/env python
  2. import os
  3. import sys
  4. import threading
  5. from text_analysis.views import chatgpt
  6. import queue
  7. import django
  8. # global task_queue
  9. # task_queue = queue.Queue()
  10. if __name__ == "__main__":
  11. t = threading.Thread(target=chatgpt, name='chatgpt')
  12. t.daemon = True
  13. t.start()
  14. os.environ.setdefault("DJANGO_SETTINGS_MODULE", "text_analysis.settings")
  15. django.setup()
  16. from django.core.management import execute_from_command_line
  17. execute_from_command_line(sys.argv)