Files
codex-agent/main.py

9 lines
261 B
Python

from src import CodexAgent, CodexAgentConfig
codex_agent = CodexAgent(CodexAgentConfig())
def main():
codex_agent.push_to_hub("darinkishore/codex-agent", with_code=True, commit_message="Do not call forward directly")
if __name__ == "__main__":
main()