RAG implementation, content moderation, prompt classification, new LLM chain, document storage

This commit is contained in:
2025-05-14 03:27:38 -05:00
parent 57695353d0
commit f5d29166a6
32 changed files with 2628 additions and 359 deletions

9
strip_and_upgrade.py Normal file
View File

@@ -0,0 +1,9 @@
outfile = open("requirements.txt",'w')
for line in open('requirements.dev','r'):
line = line.strip()
if line:
values = line.split('==')
print(values[0])
outfile.write(values[0] + '\n')