gpt4free/g4f/gui/server/backend.py

109 lines
3.6 KiB
Python
Raw Normal View History

import json
from flask import request, Flask
from g4f.image import is_allowed_extension, to_image
2024-03-16 05:48:37 -04:00
from .api import Api
2023-10-06 14:52:17 -04:00
2024-03-16 05:48:37 -04:00
class Backend_Api(Api):
"""
Handles various endpoints in a Flask application for backend operations.
This class provides methods to interact with models, providers, and to handle
various functionalities like conversations, error handling, and version management.
Attributes:
app (Flask): A Flask application instance.
routes (dict): A dictionary mapping API endpoints to their respective handlers.
"""
def __init__(self, app: Flask) -> None:
"""
Initialize the backend API with the given Flask application.
Args:
app (Flask): Flask application instance to attach routes to.
"""
self.app: Flask = app
2023-10-06 14:52:17 -04:00
self.routes = {
2023-10-19 09:27:29 -04:00
'/backend-api/v2/models': {
'function': self.get_models,
'methods': ['GET']
2023-10-19 09:27:29 -04:00
},
2024-03-13 12:52:48 -04:00
'/backend-api/v2/models/<provider>': {
'function': self.get_provider_models,
'methods': ['GET']
},
'/backend-api/v2/providers': {
'function': self.get_providers,
'methods': ['GET']
},
'/backend-api/v2/version': {
'function': self.get_version,
'methods': ['GET']
},
2023-10-06 14:52:17 -04:00
'/backend-api/v2/conversation': {
'function': self.handle_conversation,
2023-10-06 14:52:17 -04:00
'methods': ['POST']
},
'/backend-api/v2/gen.set.summarize:title': {
'function': self.generate_title,
2023-10-06 14:52:17 -04:00
'methods': ['POST']
},
2023-10-19 15:25:13 -04:00
'/backend-api/v2/error': {
'function': self.handle_error,
2023-10-19 15:25:13 -04:00
'methods': ['POST']
}
2023-10-06 14:52:17 -04:00
}
2024-03-16 05:48:37 -04:00
def handle_error(self):
"""
Initialize the backend API with the given Flask application.
Args:
app (Flask): Flask application instance to attach routes to.
"""
2023-10-19 15:25:13 -04:00
print(request.json)
return 'ok', 200
def handle_conversation(self):
"""
Handles conversation requests and streams responses back.
Returns:
Response: A Flask response object for streaming.
"""
2024-03-16 05:48:37 -04:00
kwargs = {}
2024-03-16 05:48:37 -04:00
if "file" in request.files:
file = request.files['file']
if file.filename != '' and is_allowed_extension(file.filename):
kwargs['image'] = to_image(file.stream, file.filename.endswith('.svg'))
2024-02-11 00:59:53 -05:00
kwargs['image_name'] = file.filename
if "json" in request.form:
json_data = json.loads(request.form['json'])
else:
json_data = request.json
2024-03-16 05:48:37 -04:00
kwargs = self._prepare_conversation_kwargs(json_data, kwargs)
2024-03-16 05:48:37 -04:00
return self.app.response_class(
2024-03-28 06:36:25 -04:00
self._create_response_stream(kwargs, json_data.get("conversation_id"), json_data.get("provider")),
2024-03-16 05:48:37 -04:00
mimetype='text/event-stream'
)
2024-03-16 05:48:37 -04:00
def get_provider_models(self, provider: str):
models = super().get_provider_models(provider)
if models is None:
return 404, "Provider not found"
return models
def _format_json(self, response_type: str, content) -> str:
"""
Formats and returns a JSON response.
Args:
response_type (str): The type of the response.
content: The content to be included in the response.
Returns:
str: A JSON formatted string.
"""
2024-03-16 05:48:37 -04:00
return json.dumps(super()._format_json(response_type, content)) + "\n"