Added basic AI generation endpoint

This commit is contained in:
2025-09-13 19:53:41 +01:00
parent 0be88678df
commit 49d924be20

37
main.py
View File

@@ -1,4 +1,5 @@
from flask import Flask, jsonify, request, render_template from flask import Flask, jsonify, request, render_template, Response
from flask_cors import CORS, cross_origin
from pymongo import MongoClient from pymongo import MongoClient
from bson.objectid import ObjectId from bson.objectid import ObjectId
from bson.json_util import dumps, loads from bson.json_util import dumps, loads
@@ -9,6 +10,7 @@ import string
import json import json
import requests import requests
from urllib.parse import parse_qs from urllib.parse import parse_qs
from ollama import chat
with open("config/settings.json", "r") as f: with open("config/settings.json", "r") as f:
settings = json.load(f) settings = json.load(f)
@@ -44,6 +46,7 @@ except Exception as e:
print("Error connecting to MongoDB:", e) print("Error connecting to MongoDB:", e)
app = Flask(__name__) app = Flask(__name__)
CORS(app)
def checkUserPermission(token, permission): def checkUserPermission(token, permission):
# Find the correct user token in user db # Find the correct user token in user db
@@ -83,6 +86,38 @@ def checkChatPermission(token, chatId, permission):
else: else:
return False, "Invalid Token" return False, "Invalid Token"
# Message Generation Endpoint
# Generate a new message on a specific chat
# Arguments: token (required), chatId (required), message
@app.route('/api/chat/<_id>/generate', methods =['POST'])
@cross_origin()
def generateMessage(_id):
# Get user auth token
token = request.headers['token']
a, userId = checkChatPermission(token, _id, "view")
if (a == True):
returnedChat = chatCollection.find_one({'_id': ObjectId(_id)})
message = request.json['message']
messages = returnedChat['messages']
messages.append({'role':'user', 'content':message})
stream = chat(
model=returnedChat['model'],
messages=messages,
stream=True
)
def generateStream():
response = ""
for chunk in stream:
print(chunk['message']['content'], end='', flush=True)
content = chunk['message']['content']
response += content
json_data = {"response": response}
yield f"data: {json.dumps(json_data)}\n\n"
return Response(generateStream(), mimetype='text/event-stream')
else:
return userId
# Chat List Endpoint: # Chat List Endpoint:
# Get all the chats associated with a user # Get all the chats associated with a user
# Arguments: token (required) # Arguments: token (required)