Spaces:
Running
on
Zero
Running
on
Zero
fだ
Browse files- chat_history.db +2 -2
- controllers/gpt_enginner20240626072255 +1 -0
- workspace/gold_price/__init__.py +0 -0
- workspace/gold_price/admin.py +3 -0
- workspace/gold_price/apps.py +6 -0
- workspace/gold_price/migrations/__init__.py +0 -0
- workspace/gold_price/models.py +3 -0
- workspace/gold_price/tests.py +3 -0
- workspace/gold_price/views.py +3 -0
- workspace/gold_price_api/__init__.py +0 -0
- workspace/gold_price_api/admin.py +3 -0
- workspace/gold_price_api/apps.py +6 -0
- workspace/gold_price_api/migrations/__init__.py +0 -0
- workspace/gold_price_api/models.py +3 -0
- workspace/gold_price_api/tests.py +3 -0
- workspace/gold_price_api/views.py +3 -0
- workspace/gold_price_project/manage.py +6 -0
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:8b956f7bd7bfc15b8848ffa8a81272d35eacaceb745b1b1cc904a785c7ffb50e
|
3 |
+
size 1630208
|
controllers/gpt_enginner20240626072255
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
Subproject commit afbdd903297f02ca37e1dcdabcb65922b7438333
|
workspace/gold_price/__init__.py
ADDED
File without changes
|
workspace/gold_price/admin.py
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
from django.contrib import admin
|
2 |
+
|
3 |
+
# Register your models here.
|
workspace/gold_price/apps.py
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from django.apps import AppConfig
|
2 |
+
|
3 |
+
|
4 |
+
class GoldPriceConfig(AppConfig):
|
5 |
+
default_auto_field = 'django.db.models.BigAutoField'
|
6 |
+
name = 'gold_price'
|
workspace/gold_price/migrations/__init__.py
ADDED
File without changes
|
workspace/gold_price/models.py
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
from django.db import models
|
2 |
+
|
3 |
+
# Create your models here.
|
workspace/gold_price/tests.py
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
from django.test import TestCase
|
2 |
+
|
3 |
+
# Create your tests here.
|
workspace/gold_price/views.py
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
from django.shortcuts import render
|
2 |
+
|
3 |
+
# Create your views here.
|
workspace/gold_price_api/__init__.py
ADDED
File without changes
|
workspace/gold_price_api/admin.py
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
from django.contrib import admin
|
2 |
+
|
3 |
+
# Register your models here.
|
workspace/gold_price_api/apps.py
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from django.apps import AppConfig
|
2 |
+
|
3 |
+
|
4 |
+
class GoldPriceApiConfig(AppConfig):
|
5 |
+
default_auto_field = 'django.db.models.BigAutoField'
|
6 |
+
name = 'gold_price_api'
|
workspace/gold_price_api/migrations/__init__.py
ADDED
File without changes
|
workspace/gold_price_api/models.py
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
from django.db import models
|
2 |
+
|
3 |
+
# Create your models here.
|
workspace/gold_price_api/tests.py
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
from django.test import TestCase
|
2 |
+
|
3 |
+
# Create your tests here.
|
workspace/gold_price_api/views.py
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
from django.shortcuts import render
|
2 |
+
|
3 |
+
# Create your views here.
|
workspace/gold_price_project/manage.py
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from django.core.management import execute_from_command_line
|
2 |
+
import os
|
3 |
+
import sys
|
4 |
+
|
5 |
+
if __name__ == '__main__':
|
6 |
+
execute_from_command_line(sys.argv)
|