kenken999 commited on
Commit
0e7a2d3
โ€ข
1 Parent(s): b98282f
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": "Q&Aใ‚’่ฟฝๅŠ  GSSใซ่ฟฝๅŠ ใฎ็‰ฉใ‚’ใƒใ‚งใƒƒใ‚ฏ",
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": "JIRAใ‚ฟใ‚นใ‚ฏ็ฎก็†ใ‚’้–‹ใ",
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.