mirror of
https://github.com/onestardao/WFGY.git
synced 2026-04-28 11:40:07 +00:00
12 lines
274 B
Python
12 lines
274 B
Python
from wfgy_core import WFGYRunner
|
|
|
|
runner = WFGYRunner(
|
|
model_id="mistralai/Mixtral-8x7B-Instruct-v0.1",
|
|
use_remote=True
|
|
)
|
|
|
|
runner.run(
|
|
prompt="If semantic energy is real, what force counterbalances it in a vacuum?",
|
|
max_new_tokens=300,
|
|
temperature=0.7
|
|
)
|