fda
Browse files- cache/user_config.yaml +1 -1
- controllers/gpt_enginner20240706233220 +1 -0
- controllers/gpt_enginner20240706235235 +1 -0
- workspace/goldprices/__init__.py +0 -0
- workspace/goldprices/admin.py +3 -0
- workspace/goldprices/apps.py +6 -0
- workspace/goldprices/migrations/__init__.py +0 -0
- workspace/goldprices/models.py +3 -0
- workspace/goldprices/tests.py +3 -0
- workspace/goldprices/views.py +3 -0
cache/user_config.yaml
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
cache_dir: null
|
2 |
lang: en
|
3 |
-
last_model:
|
4 |
path_dict:
|
5 |
Falcon-180B: tiiuae/falcon-180b
|
6 |
LLaMA3-70B-Chat: meta-llama/Meta-Llama-3-70B-Instruct
|
|
|
1 |
cache_dir: null
|
2 |
lang: en
|
3 |
+
last_model: PaliGemma-3B-pt-448
|
4 |
path_dict:
|
5 |
Falcon-180B: tiiuae/falcon-180b
|
6 |
LLaMA3-70B-Chat: meta-llama/Meta-Llama-3-70B-Instruct
|
controllers/gpt_enginner20240706233220
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
Subproject commit ffad259a7b21ddaed9f4111415479cedca8526a6
|
controllers/gpt_enginner20240706235235
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
Subproject commit 1d402c7926d5139b5f1e8fbd4ac293f223f44dd6
|
workspace/goldprices/__init__.py
ADDED
File without changes
|
workspace/goldprices/admin.py
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
from django.contrib import admin
|
2 |
+
|
3 |
+
# Register your models here.
|
workspace/goldprices/apps.py
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from django.apps import AppConfig
|
2 |
+
|
3 |
+
|
4 |
+
class GoldpricesConfig(AppConfig):
|
5 |
+
default_auto_field = 'django.db.models.BigAutoField'
|
6 |
+
name = 'goldprices'
|
workspace/goldprices/migrations/__init__.py
ADDED
File without changes
|
workspace/goldprices/models.py
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
from django.db import models
|
2 |
+
|
3 |
+
# Create your models here.
|
workspace/goldprices/tests.py
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
from django.test import TestCase
|
2 |
+
|
3 |
+
# Create your tests here.
|
workspace/goldprices/views.py
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
from django.shortcuts import render
|
2 |
+
|
3 |
+
# Create your views here.
|