当前位置:   article > 正文

免费使用GPT-4o! Python小白用法_g4f gpt4o

g4f gpt4o

1.先安装g4f 

pip install g4f 

2.main.py运行

  1. from g4f.client import Client
  2. client = Client()
  3. def answer(question: str) -> str:
  4. response = client.chat.completions.create(
  5. model="gpt-4o",
  6. messages=[{"role": "user", "content": question}],
  7. )
  8. return response.choices[0].message.content
  9. def main():
  10. while True:
  11. question = input('\n请输入问题 > ')
  12. print(answer(question))
  13. if __name__ == '__main__':
  14. main()

3.运行结果 

4.可能会出现报错问题,重新运行一下就可以了。

后续可能还会补充。。。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/盐析白兔/article/detail/954401
推荐阅读
相关标签
  

闽ICP备14008679号