feat: 添加ichat以支持AI对话
This commit is contained in:
parent
f228884b27
commit
882b0f2cbd
|
@ -0,0 +1,3 @@
|
||||||
|
from django.contrib import admin
|
||||||
|
|
||||||
|
# Register your models here.
|
|
@ -0,0 +1,6 @@
|
||||||
|
from django.apps import AppConfig
|
||||||
|
|
||||||
|
|
||||||
|
class ChatConfig(AppConfig):
|
||||||
|
default_auto_field = 'django.db.models.BigAutoField'
|
||||||
|
name = 'apps.ichat'
|
|
@ -0,0 +1,9 @@
|
||||||
|
from django.db import models
|
||||||
|
from apps.system.models import CommonADModel
|
||||||
|
|
||||||
|
# Create your models here.
|
||||||
|
class Conversation(CommonADModel):
|
||||||
|
"""
|
||||||
|
TN: 对话
|
||||||
|
"""
|
||||||
|
title = models.CharField(max_length=200, default='新对话',verbose_name='对话标题')
|
|
@ -0,0 +1,3 @@
|
||||||
|
from django.test import TestCase
|
||||||
|
|
||||||
|
# Create your tests here.
|
|
@ -0,0 +1,3 @@
|
||||||
|
from django.shortcuts import render
|
||||||
|
|
||||||
|
# Create your views here.
|
Loading…
Reference in New Issue