OpenAI API

OpenAI API #

https://platform.openai.com/docs/api-reference/introduction

EndPoints #

Chat #

https://platform.openai.com/docs/api-reference/chat

给定一组包含对话的消息列表(messages),模型将返回一个回复(response)。

 1from openai import OpenAI
 2client = OpenAI()
 3
 4response = client.chat.completions.create(
 5  model="gpt-4o-mini",
 6  messages=[
 7    {"role": "system", "content": "你是一个有用的助手."},
 8    {"role": "user", "content": "什么是大语言模型?"}
 9  ],
10  temperature=0
11)
12print(response.choices[0].message.content)

环境变量

1export OPENAI_BASE_URL=https://xxx.com/v1
2export OPENAI_API_KEY=xxx

Embeddings #

https://platform.openai.com/docs/api-reference/embeddings

获取给定输入的向量表示,这种表示可以被机器学习模型和算法轻松使用。

© 2024 青蛙小白