update to 15 deepseek

This commit is contained in:
Ivan Office
2025-02-07 18:28:22 +08:00
parent e0b8b1270c
commit d4785003c3
58 changed files with 733 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
# -*- coding: utf-8 -*-
from odoo import http
class ChatgptController(http.Controller):
@http.route(['/chatgpt_form'], type='http', auth="public", csrf=False,
website=True)
def question_submit(self):
return http.request.render('app_chatgpt.connector')