Mythus/BooksCheating
0
1# Number of snippets that will be added to the prompt. Too many snippets and you risk both the prompt going over the2# token limit, and the model not being able to find the correct answer3prompt_number_snippets = 34 5# GPT related constants6gpt_model_to_use = 'gpt-4'7gpt_max_tokens = 10008 9# Number of past user messages that will be used to search relevant snippets10search_number_messages = 411 12# PDF Chunking constants13chunk_size = 50014chunk_overlap = 5015 16# Number of snippets to be retrieved by FAISS17number_snippets_to_retrieve = 318 