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 asyncio
|
||||||
import base64
|
import base64
|
||||||
import logging
|
|
||||||
from typing import Literal, Union
|
from typing import Literal, Union
|
||||||
|
|
||||||
from playwright.async_api import Browser, Page, Playwright, async_playwright
|
from playwright.async_api import Browser, Page, Playwright, async_playwright
|
||||||
|
|
@ -16,8 +15,10 @@ from agents import (
|
||||||
trace,
|
trace,
|
||||||
)
|
)
|
||||||
|
|
||||||
logging.getLogger("openai.agents").setLevel(logging.DEBUG)
|
# Uncomment to see very verbose logs
|
||||||
logging.getLogger("openai.agents").addHandler(logging.StreamHandler())
|
# import logging
|
||||||
|
# logging.getLogger("openai.agents").setLevel(logging.DEBUG)
|
||||||
|
# logging.getLogger("openai.agents").addHandler(logging.StreamHandler())
|
||||||
|
|
||||||
|
|
||||||
async def main():
|
async def main():
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue