mirror of
https://github.com/bringout/oca-ai.git
synced 2026-04-23 13:02:08 +02:00
9 lines
198 B
Python
9 lines
198 B
Python
from odoo import fields, models
|
|
|
|
|
|
class BridgeTest(models.Model):
|
|
_name = "bridge.test"
|
|
_inherit = "ai.bridge.thread"
|
|
_description = "Test Model for AI Bridge"
|
|
|
|
name = fields.Char()
|