mirror of
https://github.com/onestardao/WFGY.git
synced 2026-04-28 03:29:51 +00:00
13 lines
328 B
Python
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
|
|
)
|