Update ChatOpenAI docs with fine-tuning example (#9632)

pull/9635/head
Jacob Lee 1 year ago committed by GitHub
parent fc64e6349e
commit 632a83c48e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -142,13 +142,40 @@
")"
]
},
{
"cell_type": "markdown",
"id": "57e27714",
"metadata": {},
"source": [
"## Fine-tuning\n",
"\n",
"You can call fine-tuned OpenAI models by passing in your corresponding `modelName` parameter.\n",
"\n",
"This generally takes the form of `ft:{OPENAI_MODEL_NAME}:{ORG_NAME}::{MODEL_ID}`. For example:"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "c095285d",
"execution_count": 6,
"id": "33c4a8b0",
"metadata": {},
"outputs": [],
"source": []
"outputs": [
{
"data": {
"text/plain": [
"AIMessage(content=\"J'adore la programmation.\", additional_kwargs={}, example=False)"
]
},
"execution_count": 6,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"fine_tuned_model = ChatOpenAI(temperature=0, model_name=\"ft:gpt-3.5-turbo-0613:langchain::7qTVM5AR\")\n",
"\n",
"fine_tuned_model(messages)"
]
}
],
"metadata": {
@ -167,7 +194,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.9.7"
"version": "3.10.5"
}
},
"nbformat": 4,

Loading…
Cancel
Save