Spaces:
Runtime error
Runtime error
from flask import Flask, request, jsonify, render_template, make_response, send_from_directory | |
import anthropic | |
import os | |
import json | |
from datetime import datetime | |
import base64 | |
app = Flask(__name__) | |
app.config['UPLOAD_FOLDER'] = 'uploads' | |
def favicon(): | |
return send_from_directory(os.path.join(app.root_path, 'static'), | |
'favicon.ico', mimetype='image/vnd.microsoft.icon') | |
def index(): | |
recent_files = get_recent_files() | |
response = make_response(render_template('index.html', recent_files=recent_files)) | |
return response | |
def get_recent_files(): | |
if not os.path.exists(app.config['UPLOAD_FOLDER']): | |
os.makedirs(app.config['UPLOAD_FOLDER']) | |
files = os.listdir(app.config['UPLOAD_FOLDER']) | |
valid_files = [f for f in files if f.lower().endswith(('.pdf', '.txt'))] | |
valid_files.sort(key=lambda x: os.path.getmtime(os.path.join(app.config['UPLOAD_FOLDER'], x)), reverse=True) | |
return [{'filename': file, 'date': datetime.fromtimestamp(os.path.getmtime(os.path.join(app.config['UPLOAD_FOLDER'], file))).isoformat()} for file in valid_files[:5]] | |
def get_recent_files_route(): | |
return jsonify(get_recent_files()) | |
def upload_file(): | |
if 'file' not in request.files: | |
return jsonify({'error': 'No file part'}), 400 | |
file = request.files['file'] | |
if file.filename == '': | |
return jsonify({'error': 'No selected file'}), 400 | |
if file and (file.filename.lower().endswith(('.pdf', '.txt', '.epub'))): | |
filename = os.path.join(app.config['UPLOAD_FOLDER'], file.filename) | |
file.save(filename) | |
return jsonify({'message': 'File uploaded successfully', 'filename': file.filename}), 200 | |
return jsonify({'error': 'Invalid file type. Please upload a PDF, TXT, or EPUB file.'}), 400 | |
def get_epub_content(filename): | |
file_path = os.path.join(app.config['UPLOAD_FOLDER'], filename) | |
if os.path.exists(file_path) and filename.endswith('.epub'): | |
with open(file_path, 'rb') as file: | |
epub_content = base64.b64encode(file.read()).decode('utf-8') | |
return jsonify({'epub_content': epub_content}) | |
return jsonify({'error': 'File not found or not an EPUB'}), 404 | |
def open_pdf(filename): | |
return send_from_directory(app.config['UPLOAD_FOLDER'], filename) | |
def generate_flashcard(): | |
data = request.json | |
prompt = data['prompt'] | |
api_key = request.headers.get('X-API-Key') | |
mode = data.get('mode', 'flashcard') | |
client = anthropic.Anthropic(api_key=api_key) | |
try: | |
model = data.get('model', "claude-3-5-sonnet-20240620") | |
message = client.messages.create( | |
model=model, | |
max_tokens=1024, | |
messages=[ | |
{"role": "user", "content": prompt} | |
] | |
) | |
content = message.content[0].text | |
print(prompt) | |
print(content) | |
if mode == 'language': | |
# For Language mode, parse the content and return in the custom format | |
lines = content.split('\n') | |
word = '' | |
translation = '' | |
answer = '' | |
for line in lines: | |
if line.startswith('T:'): | |
translation = line[2:].strip() | |
elif line.startswith('Q:'): | |
word = line[2:].split('<b>')[1].split('</b>')[0].strip() | |
question = line[2:].strip() | |
elif line.startswith('A:'): | |
answer = line[2:].strip() | |
flashcard = { | |
'word': word, | |
'question': question, | |
'translation': translation, | |
'answer': answer | |
} | |
response = make_response(jsonify({'flashcard': flashcard})) | |
elif mode == 'flashcard' or 'flashcard' in prompt.lower(): | |
flashcards = [] | |
current_question = '' | |
current_answer = '' | |
for line in content.split('\n'): | |
if line.startswith('Q:'): | |
if current_question and current_answer: | |
flashcards.append({'question': current_question, 'answer': current_answer}) | |
current_question = line[2:].strip() | |
current_answer = '' | |
elif line.startswith('A:'): | |
current_answer = line[2:].strip() | |
if current_question and current_answer: | |
flashcards.append({'question': current_question, 'answer': current_answer}) | |
response = make_response(jsonify({'flashcards': flashcards})) | |
elif mode == 'explain' or 'explain' in prompt.lower(): | |
# For Explain mode, return the entire content as the explanation | |
response = make_response(jsonify({'explanation': content})) | |
else: | |
response = make_response(jsonify({'error': 'Invalid mode'})) | |
# Set cookie with the API key | |
response.set_cookie('last_working_api_key', api_key, secure=True, httponly=True, samesite='Strict') | |
return response | |
except Exception as e: | |
return jsonify({'error': str(e)}), 500 | |
if __name__ == '__main__': | |
app.run(debug=True) | |