更新:添加新的prompt.txt和重新打包的exe文件

This commit is contained in:
yshtcn 2025-03-04 21:45:48 +08:00
parent 9c1e0e2677
commit f1486ab687
4 changed files with 71 additions and 0 deletions

52
LiquidTempLab.spec Normal file
View File

@ -0,0 +1,52 @@
# -*- mode: python ; coding: utf-8 -*-
import os
block_cipher = None
a = Analysis(
['server.py'],
pathex=[],
binaries=[],
datas=[
('chat.html', '.'),
('LiquidTempLab.html', '.'),
('logo.webp', '.'),
('Show.png', '.'),
('deepseek.ico', '.')
],
hiddenimports=[],
hookspath=[],
hooksconfig={},
runtime_hooks=[],
excludes=[],
win_no_prefer_redirects=False,
win_private_assemblies=False,
cipher=block_cipher,
noarchive=False,
)
pyz = PYZ(a.pure, a.zipped_data, cipher=block_cipher)
exe = EXE(
pyz,
a.scripts,
a.binaries,
a.zipfiles,
a.datas,
[],
name='LiquidTempLab',
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=True,
upx_exclude=[],
runtime_tmpdir=None,
console=True,
disable_windowed_traceback=False,
argv_emulation=False,
target_arch=None,
codesign_identity=None,
entitlements_file=None,
icon=os.path.abspath('deepseek.ico')
)

BIN
dist/LiquidTempLab.exe vendored Normal file

Binary file not shown.

BIN
dist/server.exe vendored Normal file

Binary file not shown.

19
prompt.txt Normal file
View File

@ -0,0 +1,19 @@
第一个问题:
```
老师让我们做了一个温度变化实验,我把冷牛奶放在热水里面加热,分别记录热水和冷牛奶温度变化情况,每分钟记录一次,记录结果如下:
初始温度为热水60℃冷牛奶10℃。每分钟记录的温度变化如下
第1分钟热水57℃冷牛奶20℃
第2分钟热水53℃冷牛奶27℃
第3分钟热水50℃冷牛奶32℃
第4分钟热水49℃冷牛奶37℃
第5分钟热水47℃冷牛奶40℃
第6分钟热水45℃冷牛奶42℃
第7分钟热水44℃冷牛奶44℃
这些数字看起来好复杂啊,你能帮我画一个折线图吗?这样我就能更清楚地看到温度是怎么变化的了!
```
第二个问题:
```
我想试试用其他东西做这个实验,但是记录温度好麻烦啊。你能帮我做一个程序吗?最好能自动画出折线图,这样我就不用自己画了!
```