- Add MongoDB type manager implementation (TypeManagerMongo) - Update environment variables configuration to support MongoDB connection - Add chat functionality - Integrate Azure OpenAI API support - Update dependencies and startup script
9 lines
133 B
Bash
Executable File
9 lines
133 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# 激活conda环境
|
|
eval "$(conda shell.bash hook)"
|
|
conda activate imgsearcher
|
|
|
|
# 运行应用
|
|
poetry run python app.py
|