2026-01-09 16:52:45 +08:00
|
|
|
|
|
|
|
|
import openai
|
|
|
|
|
|
|
|
|
|
client = openai.OpenAI(
|
2026-01-22 22:26:04 +08:00
|
|
|
api_key="sk-Gce85QLROESeOWf3icd2mQnYHOrmMYojwVPQ0AubMjGQ5ZE2",
|
|
|
|
|
base_url="https://gemini.jeason.online/v1"
|
2026-01-09 16:52:45 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
response = client.chat.completions.create(
|
2026-01-24 12:52:35 +08:00
|
|
|
model="gemini-2.5-pro",
|
2026-01-09 16:52:45 +08:00
|
|
|
messages=[{"role": "user", "content": "你好,请自我介绍"}]
|
|
|
|
|
)
|
|
|
|
|
print(response.choices[0].message.content)
|