make computer use example less verbose
This commit is contained in:
parent
c27d7b7d24
commit
37577d33f4
1 changed files with 4 additions and 3 deletions
|
|
@ -1,6 +1,5 @@
|
|||
import asyncio
|
||||
import base64
|
||||
import logging
|
||||
from typing import Literal, Union
|
||||
|
||||
from playwright.async_api import Browser, Page, Playwright, async_playwright
|
||||
|
|
@ -16,8 +15,10 @@ from agents import (
|
|||
trace,
|
||||
)
|
||||
|
||||
logging.getLogger("openai.agents").setLevel(logging.DEBUG)
|
||||
logging.getLogger("openai.agents").addHandler(logging.StreamHandler())
|
||||
# Uncomment to see very verbose logs
|
||||
# import logging
|
||||
# logging.getLogger("openai.agents").setLevel(logging.DEBUG)
|
||||
# logging.getLogger("openai.agents").addHandler(logging.StreamHandler())
|
||||
|
||||
|
||||
async def main():
|
||||
|
|
|
|||
Loading…
Reference in a new issue