Skip to content

Commit

Permalink
small changes to swarm agent
Browse files Browse the repository at this point in the history
  • Loading branch information
Oleksandr Chepizhko committed Aug 23, 2024
1 parent 2074c60 commit 86672b2
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions server/app/swarm_agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ def load_parameters(self, file_path: str) -> dict:
raise FileNotFoundError(f"The file {file_path} does not exist.")
with open(file_path, "r") as file:
return json.load(file)


def transform_query_to_keyword(query):
"""
Expand Down Expand Up @@ -150,10 +149,6 @@ def getGoodnessValues(

def step(self):
response = self.local_query()

# print("Response head:", response.head)
print("Response dir:", dir(response))

self.get_neighbor_pheromones()
print("pheromone_table[{keyword}]".format(keyword=self.keyword), self.pheromone_table[self.keyword])
goodness_values=self.getGoodnessValues(self.keyword)
Expand Down

0 comments on commit 86672b2

Please sign in to comment.