Bye Bye Moore

PoCソルジャーな零細事業主が作業メモを残すブログ

2023-12-14から1日間の記事一覧

ThreadでAPI処理待ちのアスキーアニメーションをだす

OpenAPIの処理が延々とかかって心理的にアレなので 実際のところ from openai import OpenAI from dotenv import dotenv_values import threading import time import sys def loading_animation(event): animation_chars = ['|', '/', '-', '\\'] i = 0 whi…