24 lines
522 B
Python
24 lines
522 B
Python
import os
|
||
from openai import OpenAI
|
||
from dotenv import load_dotenv
|
||
|
||
load_dotenv()
|
||
|
||
|
||
client = OpenAI(
|
||
api_key=os.getenv("OPENAI_API_KEY"),
|
||
base_url=os.getenv("OPENAI_API_BASE_URL") # 如果使用其他兼容服务,可以设置基础URL
|
||
)
|
||
|
||
chat_completion = client.chat.completions.create(
|
||
messages=[
|
||
{
|
||
"role": "user",
|
||
"content": "Say this is a test",
|
||
}
|
||
],
|
||
# model="gpt-4o-mini"
|
||
model="qwen/qwq-32b:free"
|
||
)
|
||
|
||
print(chat_completion.choices[0].message.content) |