Files
prompt-to-signature/main.py
2025-11-04 11:01:43 -05:00

10 lines
251 B
Python

from agent import PromptToSignatureAgent, PromptToSignatureConfig
agent = PromptToSignatureAgent(PromptToSignatureConfig())
def main():
agent.push_to_hub("fadeleke/prompt-to-signature", with_code=True)
if __name__ == "__main__":
main()