Spaces:
Running
Running
Geevarghese George
commited on
Commit
·
e24c6f4
1
Parent(s):
138b354
change app path
Browse files
src/upgrade_advisor/app.py
CHANGED
|
@@ -16,17 +16,18 @@ from config import (
|
|
| 16 |
GITHUB_READ_ONLY,
|
| 17 |
GITHUB_TOOLSETS,
|
| 18 |
)
|
| 19 |
-
|
| 20 |
-
from
|
|
|
|
| 21 |
qn_rewriter,
|
| 22 |
run_document_qa,
|
| 23 |
summarize_chat_history,
|
| 24 |
)
|
| 25 |
-
from
|
| 26 |
_monkeypatch_gradio_save_history,
|
| 27 |
get_example_questions,
|
| 28 |
)
|
| 29 |
-
from
|
| 30 |
|
| 31 |
logger = logging.getLogger(__name__)
|
| 32 |
logger.setLevel(logging.INFO)
|
|
|
|
| 16 |
GITHUB_READ_ONLY,
|
| 17 |
GITHUB_TOOLSETS,
|
| 18 |
)
|
| 19 |
+
|
| 20 |
+
from .agents.package import PackageDiscoveryAgent
|
| 21 |
+
from .chat.chat import (
|
| 22 |
qn_rewriter,
|
| 23 |
run_document_qa,
|
| 24 |
summarize_chat_history,
|
| 25 |
)
|
| 26 |
+
from .misc import (
|
| 27 |
_monkeypatch_gradio_save_history,
|
| 28 |
get_example_questions,
|
| 29 |
)
|
| 30 |
+
from .theme import Christmas
|
| 31 |
|
| 32 |
logger = logging.getLogger(__name__)
|
| 33 |
logger.setLevel(logging.INFO)
|