Feat : text to speech & flight api
This commit is contained in:
@@ -2,6 +2,8 @@
|
||||
from sources.utility import pretty_print
|
||||
from sources.agent import Agent
|
||||
from sources.tools.webSearch import webSearch
|
||||
from sources.tools.flightSearch import FlightSearch
|
||||
|
||||
class CasualAgent(Agent):
|
||||
def __init__(self, model, name, prompt_path, provider):
|
||||
"""
|
||||
@@ -9,7 +11,8 @@ class CasualAgent(Agent):
|
||||
"""
|
||||
super().__init__(model, name, prompt_path, provider)
|
||||
self.tools = {
|
||||
"web_search": webSearch()
|
||||
"web_search": webSearch(),
|
||||
"flight_search": FlightSearch()
|
||||
}
|
||||
self.role = "talking"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user