From 7cfed2271603be5e72cdce374d049c85f9d93ab8 Mon Sep 17 00:00:00 2001 From: rogersun Date: Tue, 9 Jun 2026 16:09:07 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E6=89=93=E5=8D=B0=E4=BF=A1?= =?UTF-8?q?=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ai/utils/show_process.py | 62 ++++++++++++++++++++-------------------- 1 file changed, 31 insertions(+), 31 deletions(-) diff --git a/ai/utils/show_process.py b/ai/utils/show_process.py index aa9f5fc..3aed5a5 100644 --- a/ai/utils/show_process.py +++ b/ai/utils/show_process.py @@ -21,35 +21,35 @@ def show_main_process(): show_ai = ShowAI(cinema, show_date) prompt = show_ai.general_prompt() start = datetime.datetime.now() - result, message, tokens = show_ai.get_show_result_ai() - end = datetime.datetime.now() - print('prompt:', prompt) - print('result:', result) - print('message:', message) - print('tokens:', tokens) - # 获取排片数据 - _show = next((s for s in result.split('------') if s.startswith('\n影厅别名,影厅id')), '') - _show = _show.strip() - print('_show:', _show) - # 获取销售额 - _sales = next((s for s in result.split('\n') if re.search('预估销售数据', s)), '') - _sales = str(re.findall(r'\d+\.?\d*', _sales)[0]) - print('_sales:', _sales) - # 处理返回结果 - try: - AiShow.objects.create( - cinema=cinema.name, - zz_code=cinema.zz_code, - show_date=show_date, - is_ai_show=True, - show=_show, - sales=_sales, - prompt=prompt, - result=result, - message=message, - take_times=int((end - start).seconds), - take_tokens=tokens - ) - except Exception as e: - print(e) + # result, message, tokens = show_ai.get_show_result_ai() + # end = datetime.datetime.now() + # print('prompt:', prompt) + # print('result:', result) + # print('message:', message) + # print('tokens:', tokens) + # # 获取排片数据 + # _show = next((s for s in result.split('------') if s.startswith('\n影厅别名,影厅id')), '') + # _show = _show.strip() + # print('_show:', _show) + # # 获取销售额 + # _sales = next((s for s in result.split('\n') if re.search('预估销售数据', s)), '') + # _sales = str(re.findall(r'\d+\.?\d*', _sales)[0]) + # print('_sales:', _sales) + # # 处理返回结果 + # try: + # AiShow.objects.create( + # cinema=cinema.name, + # zz_code=cinema.zz_code, + # show_date=show_date, + # is_ai_show=True, + # show=_show, + # sales=_sales, + # prompt=prompt, + # result=result, + # message=message, + # take_times=int((end - start).seconds), + # take_tokens=tokens + # ) + # except Exception as e: + # print(e) return True