AOSSIE-Org / AOSSIE-Org/Agora-Blockchain

BUG: FileNotFoundError in chatbot/app.py when launched outside chatbot/ directory

未关闭
#258 2 条评论 0 个 reaction 已指派 0 人 在 GitHub 查看
主要语言
JavaScript
星标
97
派生
199
PR 合并指标
30 天内没有已合并 PR

描述

### Is there an existing issue for this?

- [x] I have searched the existing issues

### Issue Description ✍️

## 🚀 Describe the Bug
In `chatbot/app.py`, model data and intents are loaded using relative file paths (`open('intents.json')` and `FILE = "data.pth"`). When the Flask app is launched from outside the `chatbot/` directory (e.g. from the project root), Python cannot resolve these paths and throws a `FileNotFoundError`.

## 🎉 Actual Behavior
Running `python chatbot/app.py` from the project root throws:
`FileNotFoundError: [Errno 2] No such file or directory: 'intents.json'`

## 🎯 Expected Behavior
The app should load `intents.json` and `data.pth` correctly regardless of the working directory it is launched from.

## 🖥️ Screenshot
N/A

## 💡 Suggestions
Construct absolute paths using `__file__`:
```python
import os
BASE_DIR = os.path.dirname(os.path.abspath(__file__))
intents_path = os.path.join(BASE_DIR, 'intents.json')
FILE = os.path.join(BASE_DIR, 'data.pth')
```

### Record

- [x] I have synced all my node versions as mentioned in the project
- [x] I am using the same version of npm as is the project
- [x] My current branch is in sync with the development branch
- [x] I want to work on this issue

贡献指南

这个仓库没有索引到贡献指南

评估

这个 Issue 还没有评估数据。

把新 issue 发到你的邮箱

精选适合新手参与的 GitHub issue 摘要。