kenken999 commited on
Commit
2651eaf
·
1 Parent(s): 90a420e
cache/user_config.yaml CHANGED
@@ -1,6 +1,6 @@
1
  cache_dir: null
2
  lang: en
3
- last_model: LLaMA3-70B-Chat
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.