Files
prompt-to-signature/main.py
2025-10-31 18:51:22 +00:00

11 lines
248 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()