10 lines
251 B
Python
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()
|