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