mirror of
https://github.com/blackboxprogramming/lucidia.git
synced 2026-03-17 08:57:17 -05:00
7 lines
178 B
Python
7 lines
178 B
Python
"""Self-embedding utilities for Lucidia."""
|
|
|
|
|
|
def embed_text(text):
|
|
"""Compute embedding for a given text."""
|
|
raise NotImplementedError("Self embedding not implemented")
|