kenken999 commited on
Commit
4c22249
·
1 Parent(s): b59cbd4
babyagi/prompt.txt CHANGED
@@ -1 +1 @@
1
- 査定ありがとうございます。少し考えます。ありがとうございます。の質問 についてチャットボットでよりよく対応するプランを日本語で作成して
 
1
+ 電話番号の質問 についてチャットボットでよりよく対応するプランを日本語で作成して
controllers/gpt_enginner20240701075608 ADDED
@@ -0,0 +1 @@
 
 
1
+ Subproject commit b0177ffebd1dbb85e7c12b87541eaf30ad8de3c0
controllers/gpt_enginner20240701075934 ADDED
@@ -0,0 +1 @@
 
 
1
+ Subproject commit f7326ada44e0ccb634065abd246bd696bb6731e7
controllers/gpt_enginner20240701080518 ADDED
@@ -0,0 +1 @@
 
 
1
+ Subproject commit 690204fb92064c3cde9bb3d0a5351bf26682e164
controllers/gpt_enginner20240701081558 ADDED
@@ -0,0 +1 @@
 
 
1
+ Subproject commit 8b928b9c43bc0dd3c2fd5e74fe9aa9a8d156fc59
controllers/gpt_enginner20240701082021 ADDED
@@ -0,0 +1 @@
 
 
1
+ Subproject commit cfe5190c79b3e8a2816fa81c2fdc3d321f42030a
controllers/gpt_enginner20240701082806 ADDED
@@ -0,0 +1 @@
 
 
1
+ Subproject commit 3e3304df70446bcc26f2aa4a632301df21d054af
controllers/gpt_enginner20240701083021 ADDED
@@ -0,0 +1 @@
 
 
1
+ Subproject commit 060e2b9ad156c34dff7d38f16b5d22a891dd3652
controllers/gpt_enginner20240701083208 ADDED
@@ -0,0 +1 @@
 
 
1
+ Subproject commit a889c10b4a888c28572857b60a7058242e968971
controllers/gpt_enginner20240701083432 ADDED
@@ -0,0 +1 @@
 
 
1
+ Subproject commit d43275d01555cecd48d6846fe5b2aaba37c681fd
controllers/gpt_enginner20240701083634 ADDED
@@ -0,0 +1 @@
 
 
1
+ Subproject commit 96d47ccb2aea13ef54473bd50b57b4494e5b920d
controllers/gpt_enginner20240701084054 ADDED
@@ -0,0 +1 @@
 
 
1
+ Subproject commit 73fe8ef8a63a81aacca7399f31b94f75094ff8fd
controllers/gpt_enginner20240701084305 ADDED
@@ -0,0 +1 @@
 
 
1
+ Subproject commit 5304ebb536b406753ad7d08193875d874214c11c
myapp/__init__.py ADDED
File without changes
myapp/admin.py ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ from django.contrib import admin
2
+
3
+ # Register your models here.
myapp/apps.py ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ from django.apps import AppConfig
2
+
3
+
4
+ class MyappConfig(AppConfig):
5
+ default_auto_field = 'django.db.models.BigAutoField'
6
+ name = 'myapp'
myapp/migrations/__init__.py ADDED
File without changes
myapp/models.py ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ from django.db import models
2
+
3
+ # Create your models here.
myapp/tests.py ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ from django.test import TestCase
2
+
3
+ # Create your tests here.
myapp/views.py ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ from django.shortcuts import render
2
+
3
+ # Create your views here.
mysite/interpreter/google_chat.py CHANGED
@@ -69,7 +69,22 @@ def send_google_chat_card(webhook_url, title, subtitle, link_text, link_url,imag
69
  }
70
  }
71
  ]
72
- },
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
73
  ]
74
  }
75
  ]
 
69
  }
70
  }
71
  ]
72
+ },
73
+ {
74
+ "buttons": [
75
+ {
76
+ "textButton": {
77
+ "text": "テスト用チャットを開く",
78
+ "onClick": {
79
+ "openLink": {
80
+ "url": "https://kenken999-nodex-n8n.hf.space/webhook/6264497c-6231-4023-abef-82b86f8e298b/chat"
81
+ }
82
+ }
83
+ }
84
+ }
85
+ ]
86
+ },
87
+
88
  ]
89
  }
90
  ]
workspace/myapp/routes/api.py ADDED
File without changes
workspace/router.py ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from fastapi import FastAPI, APIRouter
2
+ echo ##active_line3##
3
+
4
+ echo ##active_line4##
5
+ router = APIRouter()
6
+ echo ##active_line5##
7
+
8
+ echo ##active_line6##
9
+ @router.get("/ninarichi")
10
+ echo ##active_line7##
11
+ async def read_ninarichi():
12
+ echo ##active_line8##
13
+ return {"message": "Ninarichi Ring information"}