Openchat
OpenChat 3.5
openchat/openchat-7b
OpenChat is a library of open-source language models, fine-tuned with "C-RLFT (Conditioned Reinforcement Learning Fine-Tuning)" - a strategy inspired by offline reinforcement learning. It has been trained on mixed-quality data without preference labels.
Community
Open Source
Context Window
8,192
Using OpenChat 3.5 with Python API
Using OpenChat 3.5 with OpenAI compatible API
import openai
client = openai.Client(
api_key= '{your_api_key}',
base_url="https://api.model.box/v1",
)
response = client.chat.completions.create(
model="openchat/openchat-7b",
messages: [
{
role: 'user',
content:
'introduce your self',
},
]
)
print(response)