mirror of
https://github.com/camel-ai/owl.git
synced 2026-03-22 05:57:17 +08:00
- 在 run_openai_compatiable_model.py 中新增不同角色使用不同模型的支持 - 在 .env_template 中添加角色专属 API 配置选项 - 新增命令行参数支持直接传入问题 - 在 README_zh.md 和 README.md 中更新使用示例文档 - 优化网页应用描述提升表述清晰度 - 在 .gitignore 中添加 `.venv` 和 `tmp/` 目录
63 lines
571 B
Plaintext
63 lines
571 B
Plaintext
# Python
|
|
__pycache__/
|
|
**/__pycache__/
|
|
*/__pycache__/*
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
.dist
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
|
|
# Virtual Environment
|
|
venv/
|
|
env/
|
|
ENV/
|
|
.env
|
|
.venv
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
.DS_Store
|
|
|
|
# Project specific
|
|
owl/data
|
|
owl/tmp
|
|
owl/.env
|
|
owl/utils/__pycache__/
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
log/
|
|
|
|
# Coverage reports
|
|
htmlcov/
|
|
.tox/
|
|
.coverage
|
|
.coverage.*
|
|
.cache
|
|
coverage.xml
|
|
*.cover
|
|
|
|
owl/camel/types/__pycache__/
|
|
owl/camel/__pycache__/
|
|
owl/camel/utils/__pycache_/
|
|
tmp/
|