9 lines
214 B
Python
9 lines
214 B
Python
from src import CodexAgent, CodexAgentConfig
|
|
|
|
codex_agent = CodexAgent(CodexAgentConfig())
|
|
|
|
def main():
|
|
codex_agent.push_to_hub("darinkishore/codex-agent", with_code=True)
|
|
|
|
if __name__ == "__main__":
|
|
main() |