Spaces:
Sleeping
Sleeping
Commit
·
3d7b6f6
1
Parent(s):
de9fbbf
Updated readme
Browse files- README.md +18 -5
- docs/instruction.py +18 -5
README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
---
|
| 2 |
-
title:
|
| 3 |
emoji: 📚
|
| 4 |
colorFrom: pink
|
| 5 |
colorTo: yellow
|
|
@@ -8,6 +8,19 @@ sdk_version: 4.27.0
|
|
| 8 |
app_file: app.py
|
| 9 |
pinned: true
|
| 10 |
license: apache-2.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 11 |
---
|
| 12 |
|
| 13 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
@@ -23,15 +36,15 @@ This tool is designed to help you practice coding interviews by simulating the r
|
|
| 23 |
- **Various AI Models**: The tool uses three types of AI models:
|
| 24 |
- **LLM (Large Language Model)**: Acts as the interviewer.
|
| 25 |
- **Speech-to-Text and Text-to-Speech Models**: These help mimic real conversations by converting spoken words to text and vice versa.
|
| 26 |
-
- **Model Flexibility**: The tool works with many different models, including those from OpenAI
|
|
|
|
| 27 |
|
| 28 |
## Planned Updates
|
| 29 |
|
| 30 |
This is just the first beta version, and I'm working on enhancing this tool. Planned updates include:
|
| 31 |
1. **More Interview Types**: Adding simulations like Systems Design, Machine Learning System Design, Math and Logic, Behavioral Interviews, and Theory Tests.
|
| 32 |
-
2. **
|
| 33 |
-
3. **
|
| 34 |
-
4. **Improving the User Interface**: Making it easier to navigate and use, ensuring a better experience for all users.
|
| 35 |
|
| 36 |
|
| 37 |
|
|
|
|
| 1 |
---
|
| 2 |
+
title: Interview With AI
|
| 3 |
emoji: 📚
|
| 4 |
colorFrom: pink
|
| 5 |
colorTo: yellow
|
|
|
|
| 8 |
app_file: app.py
|
| 9 |
pinned: true
|
| 10 |
license: apache-2.0
|
| 11 |
+
short_description: Mock tech interview with AI.
|
| 12 |
+
tags:
|
| 13 |
+
- LLM
|
| 14 |
+
- AI
|
| 15 |
+
- Interview
|
| 16 |
+
- Coding
|
| 17 |
+
- System Design
|
| 18 |
+
- Speech-to-Text
|
| 19 |
+
- Text-to-Speech
|
| 20 |
+
- Agent
|
| 21 |
+
- Chatbot
|
| 22 |
+
- Voice Assistant
|
| 23 |
+
- Education
|
| 24 |
---
|
| 25 |
|
| 26 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
|
| 36 |
- **Various AI Models**: The tool uses three types of AI models:
|
| 37 |
- **LLM (Large Language Model)**: Acts as the interviewer.
|
| 38 |
- **Speech-to-Text and Text-to-Speech Models**: These help mimic real conversations by converting spoken words to text and vice versa.
|
| 39 |
+
- **Model Flexibility**: The tool works with many different models, including those from OpenAI, open-source models from Hugging Face, and locally running models.
|
| 40 |
+
- **Streaming Mode**: The tool can use all models in streaming mode when it is supported. Instead of waiting for the full response from the AI, you can get partial responses in real-time.
|
| 41 |
|
| 42 |
## Planned Updates
|
| 43 |
|
| 44 |
This is just the first beta version, and I'm working on enhancing this tool. Planned updates include:
|
| 45 |
1. **More Interview Types**: Adding simulations like Systems Design, Machine Learning System Design, Math and Logic, Behavioral Interviews, and Theory Tests.
|
| 46 |
+
2. **Testing More Models**: Exploring additional open-source models to enhance the tool’s performance and flexibility.
|
| 47 |
+
3. **Improving the User Interface**: Making it easier to navigate and use, ensuring a better experience for all users.
|
|
|
|
| 48 |
|
| 49 |
|
| 50 |
|
docs/instruction.py
CHANGED
|
@@ -17,15 +17,15 @@ This tool is designed to help you practice coding interviews by simulating the r
|
|
| 17 |
- **Various AI Models**: The tool uses three types of AI models:
|
| 18 |
- **LLM (Large Language Model)**: Acts as the interviewer.
|
| 19 |
- **Speech-to-Text and Text-to-Speech Models**: These help mimic real conversations by converting spoken words to text and vice versa.
|
| 20 |
-
- **Model Flexibility**: The tool works with many different models, including those from OpenAI
|
|
|
|
| 21 |
|
| 22 |
## Planned Updates
|
| 23 |
|
| 24 |
This is just the first beta version, and I'm working on enhancing this tool. Planned updates include:
|
| 25 |
1. **More Interview Types**: Adding simulations like Systems Design, Machine Learning System Design, Math and Logic, Behavioral Interviews, and Theory Tests.
|
| 26 |
-
2. **
|
| 27 |
-
3. **
|
| 28 |
-
4. **Improving the User Interface**: Making it easier to navigate and use, ensuring a better experience for all users.
|
| 29 |
""",
|
| 30 |
"quick_start": """
|
| 31 |
# Running the AI Tech Interviewer Simulator
|
|
@@ -212,7 +212,7 @@ Contributors are required to ensure that their contributions comply with this li
|
|
| 212 |
|
| 213 |
if __name__ == "__main__":
|
| 214 |
spaces_config = """---
|
| 215 |
-
title:
|
| 216 |
emoji: 📚
|
| 217 |
colorFrom: pink
|
| 218 |
colorTo: yellow
|
|
@@ -221,6 +221,19 @@ sdk_version: 4.27.0
|
|
| 221 |
app_file: app.py
|
| 222 |
pinned: true
|
| 223 |
license: apache-2.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 224 |
---
|
| 225 |
|
| 226 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
|
| 17 |
- **Various AI Models**: The tool uses three types of AI models:
|
| 18 |
- **LLM (Large Language Model)**: Acts as the interviewer.
|
| 19 |
- **Speech-to-Text and Text-to-Speech Models**: These help mimic real conversations by converting spoken words to text and vice versa.
|
| 20 |
+
- **Model Flexibility**: The tool works with many different models, including those from OpenAI, open-source models from Hugging Face, and locally running models.
|
| 21 |
+
- **Streaming Mode**: The tool can use all models in streaming mode when it is supported. Instead of waiting for the full response from the AI, you can get partial responses in real-time.
|
| 22 |
|
| 23 |
## Planned Updates
|
| 24 |
|
| 25 |
This is just the first beta version, and I'm working on enhancing this tool. Planned updates include:
|
| 26 |
1. **More Interview Types**: Adding simulations like Systems Design, Machine Learning System Design, Math and Logic, Behavioral Interviews, and Theory Tests.
|
| 27 |
+
2. **Testing More Models**: Exploring additional open-source models to enhance the tool’s performance and flexibility.
|
| 28 |
+
3. **Improving the User Interface**: Making it easier to navigate and use, ensuring a better experience for all users.
|
|
|
|
| 29 |
""",
|
| 30 |
"quick_start": """
|
| 31 |
# Running the AI Tech Interviewer Simulator
|
|
|
|
| 212 |
|
| 213 |
if __name__ == "__main__":
|
| 214 |
spaces_config = """---
|
| 215 |
+
title: Interviw With AI
|
| 216 |
emoji: 📚
|
| 217 |
colorFrom: pink
|
| 218 |
colorTo: yellow
|
|
|
|
| 221 |
app_file: app.py
|
| 222 |
pinned: true
|
| 223 |
license: apache-2.0
|
| 224 |
+
short_description: Mock tech interview with AI.
|
| 225 |
+
tags:
|
| 226 |
+
- LLM
|
| 227 |
+
- AI
|
| 228 |
+
- Interview
|
| 229 |
+
- Coding
|
| 230 |
+
- System Design
|
| 231 |
+
- Speech-to-Text
|
| 232 |
+
- Text-to-Speech
|
| 233 |
+
- Agent
|
| 234 |
+
- Chatbot
|
| 235 |
+
- Voice Assistant
|
| 236 |
+
- Education
|
| 237 |
---
|
| 238 |
|
| 239 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|