kenken999 commited on
Commit
afd0f13
1 Parent(s): aa09360
babyagi/prompt.txt CHANGED
@@ -1,2 +1 @@
1
- お世話になります。
2
- 3点査定お願い致します。の質問 についてチャットボットでよりよく対応するプランを日本語で作成して
 
1
+ オンライン買取鑑定書(ソーティングメモ)の発行代行希望ですの質問 についてチャットボットでよりよく対応するプランを日本語で作成して
 
controllers/gpt_enginner20240629080938 ADDED
@@ -0,0 +1 @@
 
 
1
+ Subproject commit d68fb8d0986e2f5df880f6e0eb6e2d5febda829c
controllers/gpt_enginner20240629081127 ADDED
@@ -0,0 +1 @@
 
 
1
+ Subproject commit cb42102b8d8a68f94070eb176cdd9c79f9fd914f
controllers/gpt_enginner20240629081839 ADDED
@@ -0,0 +1 @@
 
 
1
+ Subproject commit f4f2e7fe354705cf263884cfb023e68645f32491
controllers/gpt_enginner20240629082004 ADDED
@@ -0,0 +1 @@
 
 
1
+ Subproject commit 48ca8f584ab07c19f9ae159994cfa4c3002d321f
controllers/gpt_enginner20240629082457 ADDED
@@ -0,0 +1 @@
 
 
1
+ Subproject commit 3906886927201dbf2bb6aad18d6a7186240b261a
controllers/gpt_enginner20240629082709 ADDED
@@ -0,0 +1 @@
 
 
1
+ Subproject commit af82faa489f129cca3343087a0cfed18be087267
controllers/gpt_enginner20240629082936 ADDED
@@ -0,0 +1 @@
 
 
1
+ Subproject commit fdb5deecba1a11b51198ab9ff8caf26e7db3f064
controllers/gpt_enginner20240629083208 ADDED
@@ -0,0 +1 @@
 
 
1
+ Subproject commit 4a3bc8923f4bc210a913a8f050f482a80ae50ed7
controllers/gpt_enginner20240629084340 ADDED
@@ -0,0 +1 @@
 
 
1
+ Subproject commit 71d4741ba5e93988d1a8aa98a60bc4b38b596878
controllers/gpt_enginner20240629084641 ADDED
@@ -0,0 +1 @@
 
 
1
+ Subproject commit e9408692f05851b62d96c34096aa7e70c00b529a
diamonds/__init__.py ADDED
File without changes
diamonds/admin.py ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ from django.contrib import admin
2
+
3
+ # Register your models here.
diamonds/apps.py ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ from django.apps import AppConfig
2
+
3
+
4
+ class DiamondsConfig(AppConfig):
5
+ default_auto_field = 'django.db.models.BigAutoField'
6
+ name = 'diamonds'
diamonds/migrations/__init__.py ADDED
File without changes
diamonds/models.py ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ from django.db import models
2
+
3
+ # Create your models here.
diamonds/tests.py ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ from django.test import TestCase
2
+
3
+ # Create your tests here.
diamonds/views.py ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ from django.shortcuts import render
2
+
3
+ # Create your views here.