Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
IMladjenovic committed Nov 11, 2024
1 parent 9b12ee0 commit a7772ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/src/agents/knowledge_graph_generator_agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
tools=[],
)
class KnowledgeGraphAgent(Agent):
async def generate_knowledge_graph(self, file_path: str, csv_data: list[list[str]]) -> dict[str, str]:
async def generate_knowledge_graph(self, csv_data: list[list[str]]) -> dict[str, str]:

reduced_data_set = csv_data[slice(50)]

Expand Down

0 comments on commit a7772ef

Please sign in to comment.