Files
Ivan Office 3e248ea4c8 add deepseek
2025-02-07 18:31:32 +08:00

11 lines
287 B
Python

# -*- 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')