fix : start_service.sh & compose

This commit is contained in:
martin legrand
2025-04-16 08:43:32 +02:00
parent 2cb7ac34ce
commit 906dc18060
7 changed files with 4 additions and 21 deletions
-7
View File
@@ -1,7 +0,0 @@
def print_hello():
hello = "Hello World"
print(hello)
if __name__ == "__main__":
print_hello()
+1
View File
@@ -16,6 +16,7 @@ class FlightSearch(Tools):
"""
super().__init__()
self.tag = "flight_search"
self.api_key = None
self.api_key = api_key or os.getenv("AVIATIONSTACK_API_KEY")
def execute(self, blocks: str, safety: bool = True) -> str:
-1
View File
@@ -31,7 +31,6 @@ class Tools():
"""
def __init__(self):
self.tag = "undefined"
self.api_key = None
self.client = None
self.messages = []
self.logger = Logger("tools.log")