Upload folder using huggingface_hub
Browse files- Dockerfile +1 -1
- core/constants.py +5 -5
Dockerfile
CHANGED
|
@@ -17,7 +17,7 @@ RUN apt-get update && apt-get install -y \
|
|
| 17 |
RUN curl -fsSL https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor -o /usr/share/keyrings/microsoft-prod.gpg \
|
| 18 |
&& curl -fsSL https://packages.microsoft.com/config/debian/12/prod.list > /etc/apt/sources.list.d/mssql-release.list \
|
| 19 |
&& apt-get update \
|
| 20 |
-
&& ACCEPT_EULA=Y apt-get install -y
|
| 21 |
&& rm -rf /var/lib/apt/lists/*
|
| 22 |
|
| 23 |
# Set the working directory
|
|
|
|
| 17 |
RUN curl -fsSL https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor -o /usr/share/keyrings/microsoft-prod.gpg \
|
| 18 |
&& curl -fsSL https://packages.microsoft.com/config/debian/12/prod.list > /etc/apt/sources.list.d/mssql-release.list \
|
| 19 |
&& apt-get update \
|
| 20 |
+
&& ACCEPT_EULA=Y apt-get install -y msodbcsql18 \
|
| 21 |
&& rm -rf /var/lib/apt/lists/*
|
| 22 |
|
| 23 |
# Set the working directory
|
core/constants.py
CHANGED
|
@@ -52,11 +52,11 @@ PODCAST_BGM = [
|
|
| 52 |
]
|
| 53 |
|
| 54 |
PODCAST_FORMATS = [
|
| 55 |
-
{"value": "deep dive", "label": "Deep Dive"},
|
| 56 |
-
{"value": "debate", "label": "Debate"},
|
| 57 |
-
{"value": "summary", "label": "Summary"},
|
| 58 |
-
{"value": "tutorial", "label": "Tutorial"},
|
| 59 |
-
{"value": "interview", "label": "Interview"}
|
| 60 |
]
|
| 61 |
|
| 62 |
# --- Flashcards ---
|
|
|
|
| 52 |
]
|
| 53 |
|
| 54 |
PODCAST_FORMATS = [
|
| 55 |
+
{"value": "deep dive", "label": "Deep Dive", "description": "A lively conversation between two hosts, unpacking and connecting topics in your sources"},
|
| 56 |
+
{"value": "debate", "label": "Debate", "description": "A thoughtful debate between two hosts, illuminating different perspectives on your sources"},
|
| 57 |
+
{"value": "summary", "label": "Summary", "description": "A concise summary of your sources, highlighting key insights and quotes"},
|
| 58 |
+
{"value": "tutorial", "label": "Tutorial", "description": "A step-by-step tutorial on how to use your sources"},
|
| 59 |
+
{"value": "interview", "label": "Interview", "description": "A conversation between two hosts, exploring topics in your sources"}
|
| 60 |
]
|
| 61 |
|
| 62 |
# --- Flashcards ---
|