はじめに
API キーを作成し、初回リクエストを送信する
Fast-Token API を直接呼び出す
TIP
<Fast-Token_API_KEY> は Fast-Token Key に置き換えてください。key の有効期限と利用上限に注意してください。
利用可能な model の一覧は モデル広場 で確認し、モデル名をコピーして置き換えてください。
py
import requests
import json
response = requests.post(
url="https://dev-api.ai-study.icu/v1/chat/completions",
headers={
"Authorization": "Bearer <Fast-Token_API_KEY>",
"Content-Type": "application/json",
},
data=json.dumps({
"model": "gpt-4o-mini", # 替换模型 id
"messages": [
{
"role": "user",
"content": "What is the meaning of life?"
}
]
})
)ts
// 请在 https://dev-api.ai-study.icu 域名下尝试,否则有浏览器跨域问题
fetch("https://dev-api.ai-study.icu/v1/chat/completions", {
method: "POST",
headers: {
Authorization: "Bearer <Fast-Token_API_KEY>",
"Content-Type": "application/json",
},
body: JSON.stringify({
model: "gpt-4o-mini",
messages: [
{
role: "user",
content: "What is the meaning of life?",
},
],
}),
});sh
curl 'https://dev-api.ai-study.icu/v1/chat/completions' \
-H 'Authorization: Bearer <Fast-Token_API_KEY>' \
-H 'Content-Type: application/json' \
-d '{
"model": "gpt-4o-mini",
"messages": [
{
"role": "user",
"content": "What is the meaning of life?"
}
]
}'ストリーミング呼び出しには、パラメータ stream: true を追加するだけです。
OpenAI SDK を使う
<Fast-Token_API_KEY> は Fast-Token Key に置き換えてください。key の有効期限と利用上限に注意してください。利用可能な model の一覧は モデル広場 で確認し、モデル名をコピーして置き換えてください。
py
from openai import OpenAI
import random
client = OpenAI(
base_url="https://dev-api.ai-study.icu/v1",
api_key="<Fast-Token_API_KEY>",
)
completion = client.chat.completions.create(
model="gpt-4o-mini",
messages=[
{
"role": "developer",
"content": "Always answer in English"
},
{
"role": "user",
"content": "What is the meaning of life?"
}
],
temperature=0.8,
max_tokens=1024,
top_p=1,
frequency_penalty=0,
presence_penalty=0,
seed=random.randint(1, 1000000000),
)
print(completion.choices[0].message.content)js
import OpenAI from "openai";
const openai = new OpenAI({
baseURL: "https://dev-api.ai-study.icu/v1",
apiKey: "<Fast-Token_API_KEY>",
});
async function main() {
const completion = await openai.chat.completions.create({
model: "gpt-4o-mini",
messages: [
{
role: "user",
content: "What is the meaning of life?",
},
],
});
console.log(completion.choices[0].message);
}
main();検索対応モデルでは、次のパラメータを追加できます。
python
web_search_options={}, # 搜索参数利用可能なモデル:gpt-4o-search-preview、gpt-4o-mini-search-preview。
INFO
検索モデルは現時点で temperature などの詳細パラメータには対応していません。