Skip to content

Commit d886272

Browse files
committed
Black
1 parent 8804c93 commit d886272

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

few_shot_examples.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,4 +66,4 @@
6666

6767

6868
print("Response:")
69-
print(response.choices[0].message.content)
69+
print(response.choices[0].message.content)

function_calling.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,15 +59,15 @@
5959
},
6060
"additionalProperties": False,
6161
},
62-
}
62+
},
6363
}
6464
]
6565

6666
response = client.chat.completions.create(
6767
model=MODEL_NAME,
6868
messages=[
6969
{"role": "system", "content": "You are a weather chatbot."},
70-
{"role": "user", "content": "Hi, whats the weather like in berkeley?"}
70+
{"role": "user", "content": "Hi, whats the weather like in berkeley?"},
7171
],
7272
tools=tools,
7373
)

0 commit comments

Comments
 (0)