13 lines
275 B
Python
13 lines
275 B
Python
import ollama
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
with open("Prompt.txt", "r", encoding="utf-8") as file:
|
|
prompt = file.read()
|
|
|
|
response = ollama.generate(
|
|
model="gemma3:12b-it-q8_0",
|
|
prompt=prompt
|
|
)
|
|
print(response["response"]) |