WFGY/example_04_remote_inference.py
2025-06-11 15:14:12 +08:00

13 lines
328 B
Python

from wfgy_core import WFGYRunner
if __name__ == "__main__":
runner = WFGYRunner(
model_id="tiiuae/falcon-7b-instruct",
remote=True
)
runner.run(
prompt="What happens when you ask an AI about the meaning of life?",
reflect=True,
style="default",
show_ascii=True
)