Spaces:
Running
on
Zero
Running
on
Zero
sf
Browse files- controllers/gpt_enginner20240707133522 +1 -0
- mysite/interpreter/google_chat.py +2 -2
- staticfiles/audio_20240707134620.wav +0 -0
- text.txt +1 -2
- workspace/refasta_app/__init__.py +0 -0
- workspace/refasta_app/admin.py +3 -0
- workspace/refasta_app/apps.py +6 -0
- workspace/refasta_app/migrations/__init__.py +0 -0
- workspace/refasta_app/models.py +3 -0
- workspace/refasta_app/tests.py +3 -0
- workspace/refasta_app/views.py +3 -0
controllers/gpt_enginner20240707133522
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
Subproject commit 44478d37735e4e09c81c052a28a90c74e01a69e2
|
mysite/interpreter/google_chat.py
CHANGED
@@ -103,7 +103,7 @@ def send_google_chat_card(webhook_url, title, subtitle, link_text, link_url,imag
|
|
103 |
"buttons": [
|
104 |
{
|
105 |
"textButton": {
|
106 |
-
"text": "
|
107 |
"onClick": {
|
108 |
"openLink": {
|
109 |
"url": "https://docs.google.com/spreadsheets/d/13pqP-Ywo5eRlZBsYX2m3ChARG38EoIYOowFd3cWij1c/edit?gid=546803454#gid=546803454"
|
@@ -131,7 +131,7 @@ def send_google_chat_card(webhook_url, title, subtitle, link_text, link_url,imag
|
|
131 |
"buttons": [
|
132 |
{
|
133 |
"textButton": {
|
134 |
-
"text": "
|
135 |
"onClick": {
|
136 |
"openLink": {
|
137 |
"url": "https://urlounge.atlassian.net/browse/KAN-41"
|
|
|
103 |
"buttons": [
|
104 |
{
|
105 |
"textButton": {
|
106 |
+
"text": "็ญใใ็ขบ่ชใใ(GSS)",
|
107 |
"onClick": {
|
108 |
"openLink": {
|
109 |
"url": "https://docs.google.com/spreadsheets/d/13pqP-Ywo5eRlZBsYX2m3ChARG38EoIYOowFd3cWij1c/edit?gid=546803454#gid=546803454"
|
|
|
131 |
"buttons": [
|
132 |
{
|
133 |
"textButton": {
|
134 |
+
"text": "ไบๅฎ็ฎก็ใใใ",
|
135 |
"onClick": {
|
136 |
"openLink": {
|
137 |
"url": "https://urlounge.atlassian.net/browse/KAN-41"
|
staticfiles/audio_20240707134620.wav
ADDED
Binary file (130 kB). View file
|
|
text.txt
CHANGED
@@ -1,2 +1 @@
|
|
1 |
-
|
2 |
-
ใพใๅฎใใใ้กใใใใใพใใ
|
|
|
1 |
+
ใๅฟ็ญใๆปๅฎใใณใใฌใผใ
|
|
workspace/refasta_app/__init__.py
ADDED
File without changes
|
workspace/refasta_app/admin.py
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
from django.contrib import admin
|
2 |
+
|
3 |
+
# Register your models here.
|
workspace/refasta_app/apps.py
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from django.apps import AppConfig
|
2 |
+
|
3 |
+
|
4 |
+
class RefastaAppConfig(AppConfig):
|
5 |
+
default_auto_field = 'django.db.models.BigAutoField'
|
6 |
+
name = 'refasta_app'
|
workspace/refasta_app/migrations/__init__.py
ADDED
File without changes
|
workspace/refasta_app/models.py
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
from django.db import models
|
2 |
+
|
3 |
+
# Create your models here.
|
workspace/refasta_app/tests.py
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
from django.test import TestCase
|
2 |
+
|
3 |
+
# Create your tests here.
|
workspace/refasta_app/views.py
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
from django.shortcuts import render
|
2 |
+
|
3 |
+
# Create your views here.
|