This commit is contained in:
Flatlogic Bot 2026-03-23 00:11:51 +00:00
parent 23199338ec
commit 4fda4c24bb
2 changed files with 10 additions and 1 deletions

View File

@ -91,4 +91,13 @@ class NetworkDiscoveryService:
person.photo_url = found_photo or f"https://api.dicebear.com/7.x/initials/svg?seed={quote(query)}"
person.save()
return person
return person
class EntityResolutionService:
@staticmethod
def resolve(data):
# Fallback to NetworkDiscoveryService for now
query = data.get('query')
if query:
return NetworkDiscoveryService.perform_osint_search(query)
return None