Spaces:
Running
on
Zero
Running
on
Zero
df
Browse files- babyagi/prompt.txt +1 -1
- chat_history.db +2 -2
- controllers/gpt_enginner20240628082214 +1 -0
- controllers/gpt_enginner20240628083015 +1 -0
- controllers/gpt_enginner20240628083305 +1 -0
- controllers/gpt_enginner20240628085014 +1 -0
- controllers/gpt_enginner20240628085218 +1 -0
- controllers/gpt_enginner20240628085640 +1 -0
- controllers/gpt_enginner20240628085908 +1 -0
- controllers/gpt_enginner20240628090127 +1 -0
- controllers/gpt_enginner20240628090427 +1 -0
- workspace/diamonds_app/__init__.py +0 -0
- workspace/diamonds_app/admin.py +3 -0
- workspace/diamonds_app/apps.py +6 -0
- workspace/diamonds_app/migrations/__init__.py +0 -0
- workspace/diamonds_app/models.py +3 -0
- workspace/diamonds_app/tests.py +3 -0
- workspace/diamonds_app/views.py +3 -0
- workspace/hagaki/__init__.py +0 -0
- workspace/hagaki/admin.py +3 -0
- workspace/hagaki/apps.py +6 -0
- workspace/hagaki/migrations/__init__.py +0 -0
- workspace/hagaki/models.py +3 -0
- workspace/hagaki/tests.py +3 -0
- workspace/hagaki/views.py +3 -0
- workspace/kosébrand_project/api/__init__.py +0 -0
- workspace/kosébrand_project/api/router.py +0 -0
- workspace/new_file.py +0 -0
- workspace/workspace/hagaki/__init__.py +0 -0
- workspace/workspace/hagaki/admin.py +3 -0
- workspace/workspace/hagaki/apps.py +6 -0
- workspace/workspace/hagaki/migrations/__init__.py +0 -0
- workspace/workspace/hagaki/models.py +3 -0
- workspace/workspace/hagaki/tests.py +3 -0
- workspace/workspace/hagaki/views.py +3 -0
babyagi/prompt.txt
CHANGED
@@ -1 +1 @@
|
|
1 |
-
|
|
|
1 |
+
また新しいのですか?の質問 についてチャットボットでよりよく対応するプランを日本語で作成して
|
chat_history.db
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e3f097bb48a1b21d105a0552c8e1ca98fa53cb4d260f4626b441e5cfa8e6d8a0
|
3 |
+
size 1601536
|
controllers/gpt_enginner20240628082214
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
Subproject commit a71abae02662126480a1dd82c33a4bdf7327eb3c
|
controllers/gpt_enginner20240628083015
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
Subproject commit 1f6759f0152d139ad9c5aff5649ea9642de911c0
|
controllers/gpt_enginner20240628083305
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
Subproject commit d76817ea8a9a653030a5fac8a238a97c9fafe026
|
controllers/gpt_enginner20240628085014
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
Subproject commit a03dc8538685fb3f15630ea4f53708458efe921e
|
controllers/gpt_enginner20240628085218
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
Subproject commit 3c7ac01d71f1fe717005702cfa5e4664ec81b3db
|
controllers/gpt_enginner20240628085640
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
Subproject commit 0c48b1f36cb7ff414fee3eaebc82a2d0d0d4e7e6
|
controllers/gpt_enginner20240628085908
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
Subproject commit 105b2a55105fd94201606dfa7d67c68857a8424d
|
controllers/gpt_enginner20240628090127
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
Subproject commit f7a1684388ca0ccf029e2bcac907b5b4ed86d5ab
|
controllers/gpt_enginner20240628090427
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
Subproject commit 76f2a3e7bdb01a17f515ca88c286c23d1583b1f6
|
workspace/diamonds_app/__init__.py
ADDED
File without changes
|
workspace/diamonds_app/admin.py
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
from django.contrib import admin
|
2 |
+
|
3 |
+
# Register your models here.
|
workspace/diamonds_app/apps.py
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from django.apps import AppConfig
|
2 |
+
|
3 |
+
|
4 |
+
class DiamondsAppConfig(AppConfig):
|
5 |
+
default_auto_field = 'django.db.models.BigAutoField'
|
6 |
+
name = 'diamonds_app'
|
workspace/diamonds_app/migrations/__init__.py
ADDED
File without changes
|
workspace/diamonds_app/models.py
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
from django.db import models
|
2 |
+
|
3 |
+
# Create your models here.
|
workspace/diamonds_app/tests.py
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
from django.test import TestCase
|
2 |
+
|
3 |
+
# Create your tests here.
|
workspace/diamonds_app/views.py
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
from django.shortcuts import render
|
2 |
+
|
3 |
+
# Create your views here.
|
workspace/hagaki/__init__.py
ADDED
File without changes
|
workspace/hagaki/admin.py
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
from django.contrib import admin
|
2 |
+
|
3 |
+
# Register your models here.
|
workspace/hagaki/apps.py
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from django.apps import AppConfig
|
2 |
+
|
3 |
+
|
4 |
+
class HagakiConfig(AppConfig):
|
5 |
+
default_auto_field = 'django.db.models.BigAutoField'
|
6 |
+
name = 'hagaki'
|
workspace/hagaki/migrations/__init__.py
ADDED
File without changes
|
workspace/hagaki/models.py
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
from django.db import models
|
2 |
+
|
3 |
+
# Create your models here.
|
workspace/hagaki/tests.py
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
from django.test import TestCase
|
2 |
+
|
3 |
+
# Create your tests here.
|
workspace/hagaki/views.py
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
from django.shortcuts import render
|
2 |
+
|
3 |
+
# Create your views here.
|
workspace/kosébrand_project/api/__init__.py
ADDED
File without changes
|
workspace/kosébrand_project/api/router.py
ADDED
File without changes
|
workspace/new_file.py
ADDED
File without changes
|
workspace/workspace/hagaki/__init__.py
ADDED
File without changes
|
workspace/workspace/hagaki/admin.py
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
from django.contrib import admin
|
2 |
+
|
3 |
+
# Register your models here.
|
workspace/workspace/hagaki/apps.py
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from django.apps import AppConfig
|
2 |
+
|
3 |
+
|
4 |
+
class HagakiConfig(AppConfig):
|
5 |
+
default_auto_field = 'django.db.models.BigAutoField'
|
6 |
+
name = 'hagaki'
|
workspace/workspace/hagaki/migrations/__init__.py
ADDED
File without changes
|
workspace/workspace/hagaki/models.py
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
from django.db import models
|
2 |
+
|
3 |
+
# Create your models here.
|
workspace/workspace/hagaki/tests.py
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
from django.test import TestCase
|
2 |
+
|
3 |
+
# Create your tests here.
|
workspace/workspace/hagaki/views.py
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
from django.shortcuts import render
|
2 |
+
|
3 |
+
# Create your views here.
|