エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
import ollama response1 = ollama.chat( model = "llama3.2-vision", messages = [{ "role": "user", "... import ollama response1 = ollama.chat( model = "llama3.2-vision", messages = [{ "role": "user", "content": "What is in this image?", "images": ["image.png"], }], ) print(response1["message"]["content"]) response2 = ollama.chat( model = "aya-expanse", messages = [{ "role": "user", "content": "Translate into Japanese:\n" + response1["message"]["content"], }], ) print(response2["message"]["content"])