Skip to content

Commit

Permalink
Disable openai_agent router
Browse files Browse the repository at this point in the history
  • Loading branch information
kumaranvpl committed Nov 16, 2023
1 parent 439bb9e commit a4c1b9a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions application.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@

import captn.captn_agents # noqa
import google_ads # noqa
import openai_agent # noqa
# import openai_agent # noqa

app = FastAPI()
app.include_router(openai_agent.router, tags=["OpenAI"])
# app.include_router(openai_agent.router, tags=["OpenAI"])
app.include_router(google_ads.router, tags=["Google Ads"])
app.include_router(captn.captn_agents.router, tags=["Captn Agents"])

Expand Down

0 comments on commit a4c1b9a

Please sign in to comment.