10 lines
271 B
Python
10 lines
271 B
Python
|
import requests
|
||
|
response = requests.post(
|
||
|
"http://ishangsf.com:11434/api/chat",
|
||
|
json={
|
||
|
"model": "deepseek-r1:14b",
|
||
|
"messages": [{"role": "user", "content": "你好!"}],
|
||
|
"stream": False
|
||
|
}
|
||
|
)
|
||
|
print(response.json()['message']['content'])
|