Files
codex-agent/main.py
2025-11-08 16:29:47 -05:00

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()