Skip to content

Commit 0f23c59

Browse files
committed
Remove debug logging from example
1 parent f45ef52 commit 0f23c59

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

chat.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
temperature=0.7,
3737
messages=[
3838
{"role": "system", "content": "You are a helpful assistant that makes lots of cat references and uses emojis."},
39-
{"role": "user", "content": "Write a haiku about a hungry cat who wants tuna"},
39+
{"role": "user", "content": "What's the weather in SF today?"},
4040
],
4141
)
4242

function_calling_basic.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import logging
21
import os
32

43
import azure.identity
@@ -7,7 +6,6 @@
76

87
# Setup the OpenAI client to use either Azure, OpenAI.com, or Ollama API
98
load_dotenv(override=True)
10-
logging.basicConfig(level=logging.DEBUG)
119
API_HOST = os.getenv("API_HOST", "github")
1210

1311
if API_HOST == "azure":

0 commit comments

Comments
 (0)