AOSSIE-Org / AOSSIE-Org/Agora-Blockchain

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

Abierto
#258 2 comentarios 0 reacciones 0 asignados Ver en GitHub
Lenguaje dominante
JavaScript
Estrellas
97
Forks
199
Métricas de merge de PR
Sin PR fusionados en 30 d

Descripción

### 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

Guía de contribución

No hay ninguna guía de contribución indexada para este repositorio

Evaluación

Este issue todavía no se ha evaluado.

Recibe los nuevos issues en tu correo

Un resumen breve de issues de GitHub para principiantes.