Spaces:
Running
Running
Ignore unfixable warnings
Browse files
app.py
CHANGED
@@ -27,7 +27,7 @@ def answer(query):
|
|
27 |
if not package_installed("cv_assistant"):
|
28 |
os.system("pip install cv_assistant-0.1-py2.py3-none-any.whl")
|
29 |
|
30 |
-
from cv_assistant.agent import Agent
|
31 |
|
32 |
agent = Agent(
|
33 |
faiss_index_path="./content_assets/docs.index",
|
@@ -38,7 +38,7 @@ description = """
|
|
38 |
### Ask about my experience, skills, and education!
|
39 |
|
40 |
I built this using [Gradio](https://gradio.app) and [LangChain](https://langchain.readthedocs.io/en/latest/).
|
41 |
-
"""
|
42 |
title = "Career Chatbot"
|
43 |
|
44 |
iface = gr.Interface(
|
|
|
27 |
if not package_installed("cv_assistant"):
|
28 |
os.system("pip install cv_assistant-0.1-py2.py3-none-any.whl")
|
29 |
|
30 |
+
from cv_assistant.agent import Agent # noqa: E402
|
31 |
|
32 |
agent = Agent(
|
33 |
faiss_index_path="./content_assets/docs.index",
|
|
|
38 |
### Ask about my experience, skills, and education!
|
39 |
|
40 |
I built this using [Gradio](https://gradio.app) and [LangChain](https://langchain.readthedocs.io/en/latest/).
|
41 |
+
""" # noqa: E501
|
42 |
title = "Career Chatbot"
|
43 |
|
44 |
iface = gr.Interface(
|