diff --git a/examples/notebooks/Local-Model-With-LMStudio.ipynb b/examples/notebooks/Local-Model-With-LMStudio.ipynb index 5d9e51f..977f148 100644 --- a/examples/notebooks/Local-Model-With-LMStudio.ipynb +++ b/examples/notebooks/Local-Model-With-LMStudio.ipynb @@ -25,17 +25,6 @@ "# start a server with lm-studio and point it to the right address; here we use the default address. \n", "client = OpenAI(base_url=\"http://localhost:1234/v1\", api_key=\"lm-studio\")\n", "\n", - "completion = client.chat.completions.create(\n", - " model=\"mlabonne/NeuralBeagle14-7B-GGUF\",\n", - " messages=[\n", - " {\"role\": \"system\", \"content\": \"Always answer in rhymes.\"},\n", - " {\"role\": \"user\", \"content\": \"Introduce yourself.\"}\n", - " ],\n", - " temperature=0.1,\n", - " max_tokens=100\n", - ")\n", - "\n", - "\n", "engine = ChatExternalClient(client=client, model_string='mlabonne/NeuralBeagle14-7B-GGUF')" ] },