IliaLarchenko commited on
Commit
5efe29a
1 Parent(s): 6eb8be0

Updated readme.md

Browse files
Files changed (2) hide show
  1. README.md +3 -0
  2. docs/instruction.py +5 -0
README.md CHANGED
@@ -28,6 +28,8 @@ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-
28
 
29
  # Welcome to the AI Mock Interviewer!
30
 
 
 
31
  This tool is designed to help you practice various technical interviews by simulating real interview experiences.
32
  Now, you can enhance your skills not only in coding but also in system design, machine learning system design, and other specialized topics.
33
  Here you can brush your interview skills in a realistic setting, although it’s not intended to replace thorough preparations like studying algorithms or practicing coding problems.
@@ -234,3 +236,4 @@ Contributors are required to ensure that their contributions comply with this li
234
 
235
  ## AI-Generated Content Disclaimer
236
  - **Nature of AI Content**: Content generated by this service is derived from artificial intelligence, utilizing models such as Large Language Models (LLM), Speech-to-Text (STT), Text-to-Speech (TTS), and other models. The service owner assumes no responsibility for the content generated by AI. This content is provided for informational or entertainment purposes only and should not be considered legally binding or factually accurate. AI-generated content does not constitute an agreement or acknowledge any factual statements or obligations.
 
 
28
 
29
  # Welcome to the AI Mock Interviewer!
30
 
31
+ You can try this service in the demo mode here: [AI Interviewer](https://huggingface.co/spaces/IliaLarchenko/interviewer). But for good experience you need to run it locally.
32
+
33
  This tool is designed to help you practice various technical interviews by simulating real interview experiences.
34
  Now, you can enhance your skills not only in coding but also in system design, machine learning system design, and other specialized topics.
35
  Here you can brush your interview skills in a realistic setting, although it’s not intended to replace thorough preparations like studying algorithms or practicing coding problems.
 
236
 
237
  ## AI-Generated Content Disclaimer
238
  - **Nature of AI Content**: Content generated by this service is derived from artificial intelligence, utilizing models such as Large Language Models (LLM), Speech-to-Text (STT), Text-to-Speech (TTS), and other models. The service owner assumes no responsibility for the content generated by AI. This content is provided for informational or entertainment purposes only and should not be considered legally binding or factually accurate. AI-generated content does not constitute an agreement or acknowledge any factual statements or obligations.
239
+
docs/instruction.py CHANGED
@@ -9,6 +9,9 @@ instruction = {
9
  "introduction": """
10
  # Welcome to the AI Mock Interviewer!
11
 
 
 
 
12
  This tool is designed to help you practice various technical interviews by simulating real interview experiences.
13
  Now, you can enhance your skills not only in coding but also in system design, machine learning system design, and other specialized topics.
14
  Here you can brush your interview skills in a realistic setting, although it’s not intended to replace thorough preparations like studying algorithms or practicing coding problems.
@@ -247,6 +250,8 @@ tags:
247
  Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
248
 
249
  """
 
 
250
  with open("README.md", "w") as f:
251
  f.write(spaces_config)
252
 
 
9
  "introduction": """
10
  # Welcome to the AI Mock Interviewer!
11
 
12
+ You can try this service in the demo mode here: [AI Interviewer](https://huggingface.co/spaces/IliaLarchenko/interviewer)
13
+ But for the good experience you need to run it locally.
14
+
15
  This tool is designed to help you practice various technical interviews by simulating real interview experiences.
16
  Now, you can enhance your skills not only in coding but also in system design, machine learning system design, and other specialized topics.
17
  Here you can brush your interview skills in a realistic setting, although it’s not intended to replace thorough preparations like studying algorithms or practicing coding problems.
 
250
  Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
251
 
252
  """
253
+
254
+ if __name__ == "__main__":
255
  with open("README.md", "w") as f:
256
  f.write(spaces_config)
257