test-work / app.py
junaid12kh's picture
Upload 8 files
c484fda verified
raw
history blame contribute delete
196 Bytes
from agents import SmartCareerAgent
class SmartAgentApp:
def __init__(self):
self.agent = SmartCareerAgent()
def run(self, query):
return self.agent.respond(query)