10 lines
308 B
Python
10 lines
308 B
Python
from src.agent import ClaudeCodeConfig, ClaudeCodeAgent
|
|
|
|
config = ClaudeCodeConfig()
|
|
agent = ClaudeCodeAgent(config)
|
|
|
|
if __name__ == "__main__":
|
|
result = agent("Implement a todo list application")
|
|
agent.push_to_hub("farouk1/claude-code", with_code=True, commit_message="With code")
|
|
print(result)
|