AOSSIE-Org / AOSSIE-Org/Agora-Blockchain
BUG: FileNotFoundError in chatbot/app.py when launched outside chatbot/ directory
- Lingua principale
- JavaScript
- Stelle
- 97
- Fork
- 199
- Metriche di merge delle PR
- Nessuna PR unita negli ultimi 30g
Descrizione
### 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
Guida per i contributori
Nessuna guida per i contributori indicizzata per questo repository
Valutazione
Questa issue non è ancora stata valutata.