- 建立Python项目结构,配置pyproject.toml - 初始化智能体系统基础类和框架 - 添加Python开发环境的完整.gitignore配置 - 配置UV包管理器及锁定文件 - 创建项目脚手架和程序入口 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
7 lines
81 B
Python
7 lines
81 B
Python
def main():
|
|
print("Hello from aim!")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|