赞
踩
代码
- from langchain_community.llms import Ollama
-
- # 创建Ollama实例,指定模型名称
- ollama = Ollama(model="llama3")
-
- # 准备输入提示
- prompt = "Once upon a time, in a land far far away..."
-
- # 使用stream方法进行流式生成
- def stream_generation():
- for chunk in ollama.stream(input=prompt):
- print(chunk, end="", flush=True)
-
- # 调用函数执行流式生成
- stream_generation()
其它对于LangChain使用llama模型的方法请访问以下链接:
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。