Update example_05_universe_test.py

This commit is contained in:
PSBigBig 2025-06-11 17:16:08 +08:00 committed by GitHub
parent 120cdc0cbd
commit 1eb2399863
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,12 +1,12 @@
from wfgy_core import WFGYRunner
runner = WFGYRunner(
model_id="OpenAssistant/oasst-sft-1-pythia-12b", # ✅ 改這行就好
model_id="google/flan-t5-xxl", # ✅ 改這行
use_remote=True
)
runner.run(
prompt="If semantic energy is real, what force counterbalances it in a vacuum?",
max_new_tokens=300,
max_new_tokens=200,
temperature=0.7
)