openai/ft:gpt-3.5-turbo-0125OpenAI's legacy base language model available for fine-tuning and text completion tasks.
| Mode | chat |
| Context Window | 16K tokens |
| Max Output | 4K tokens |
| Function Calling | - |
| Vision | - |
| Reasoning | - |
| Web Search | - |
| Url Context | - |
from openai import OpenAI
client = OpenAI(
base_url="https://api.haimaker.ai/v1",
api_key="YOUR_API_KEY",
)
response = client.chat.completions.create(
model="openai/ft:gpt-3.5-turbo-0125",
messages=[
{"role": "user", "content": "Hello, how are you?"}
],
)
print(response.choices[0].message.content)OpenAI-compatible endpoint. Start building in minutes.