Carlos Martins

Results 1 issues of Carlos Martins

Please consider the following code: ```python def getEntities(text,verbose=False): agent = LLMfx(verbose=verbose) agent.load_work(text) agent.load_tool("ner") named_entities = agent.ner() entities_json = { "teams": named_entities["llm_response"]["place"], "competition": named_entities["llm_response"]["company"][0], # Assuming there's only one competition extracted...