Skip to content

Commit

Permalink
Add _run method to SEC tool
Browse files Browse the repository at this point in the history
  • Loading branch information
homanp committed Apr 24, 2024
1 parent edfc02b commit b79af5b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions libs/superagent/app/tools/sec.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ class SEC(BaseTool):
description = "useful for searching SEC filings for a company"
return_direct = False

def _run(self, ticker: str) -> str:
pass

async def _arun(self, ticker: str) -> str:
form = self.metadata.get("form")
identity = self.metadata.get("identity")
Expand Down

0 comments on commit b79af5b

Please sign in to comment.