Skip to content

Commit

Permalink
fix styles
Browse files Browse the repository at this point in the history
  • Loading branch information
huyiwen committed Jun 3, 2024
1 parent 036e0aa commit b9a63c5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions website/docs/topics/non-openai-models/cloud-keywordsai.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"metadata": {},
"outputs": [],
"source": [
"llm_config={\n",
"llm_config = {\n",
" \"config_list\": [\n",
" {\n",
" # Choose your model name.\n",
Expand All @@ -42,7 +42,7 @@
" \"api_key\": \"Your_Keywords_AI_API_Key\",\n",
" }\n",
" ],\n",
" \"cache_seed\": None # Turns off caching, useful for testing different models\n",
" \"cache_seed\": None, # Turns off caching, useful for testing different models\n",
"}"
]
},
Expand Down Expand Up @@ -143,7 +143,7 @@
}
],
"source": [
"from autogen import UserProxyAgent, ConversableAgent\n",
"from autogen import ConversableAgent, UserProxyAgent\n",
"\n",
"# Create the agent that uses the LLM.\n",
"assistant = ConversableAgent(\n",
Expand Down

0 comments on commit b9a63c5

Please sign in to comment.