Spaces:
Running
on
Zero
Running
on
Zero
ds
Browse files
chat_history.db
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:75afc59abe2db8e8020dcb0fdb467a1aac8073ce314cffd56e9bc7075141a54f
|
3 |
+
size 2035712
|
controllers/gpt_enginner20240626105117/prompt
CHANGED
@@ -41,4 +41,47 @@ def create_vector():
|
|
41 |
|
42 |
「電話番号は何ですか?」
|
43 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
44 |
お電話番号をお聞きしたいのですが、お電話番号を教えてください。
|
|
|
41 |
|
42 |
「電話番号は何ですか?」
|
43 |
|
44 |
+
お電話番号をお聞きしたいのですが、お電話番号を教えてください。
|
45 |
+
下記の質問に対応するコードをdjangoでアプリを作成 プロジェクトはいりません
|
46 |
+
fastapiでrouter部分を作成 組み込みはメイン部分でします
|
47 |
+
フロントエンドをgradioで作成
|
48 |
+
#google apps script frontend
|
49 |
+
googleappsscript doGet でのgradioの表示処理を作成 google.script.runで関数は呼び出し
|
50 |
+
#google apps script backend
|
51 |
+
frontendからの呼び出し用のバックエンドスクリプト
|
52 |
+
仕様書の作成
|
53 |
+
PlantUMLでシーケンス図の作成
|
54 |
+
Markdownでのプログラム殺名
|
55 |
+
#下記参考にAPIも作成しておいて
|
56 |
+
action insert list edit update でCRUDがかわる
|
57 |
+
同じようにGASのAPIも作成しておいて
|
58 |
+
|
59 |
+
def create_vector():
|
60 |
+
inputs = tokenizer(result, return_tensors="pt", max_length=512, truncation=True)
|
61 |
+
outputs = model(**inputs)
|
62 |
+
# [CLS]トークンの出力を取得
|
63 |
+
embeddings = outputs.last_hidden_state[:,0,:].squeeze().detach().cpu().numpy().tolist()
|
64 |
+
print(embeddings)
|
65 |
+
import requests
|
66 |
+
|
67 |
+
url = "https://kenken999-php.hf.space/api/v1.php"
|
68 |
+
|
69 |
+
payload = "model_name={embeddings}&vector_text={result}&table=products&action=insert""
|
70 |
+
headers = {
|
71 |
+
'X-Auth-Token': 'admin',
|
72 |
+
'Content-Type': 'application/x-www-form-urlencoded',
|
73 |
+
'Cookie': 'runnerSession=muvclb78zpsdjbm7y9c3; pD1lszvk6ratOZhmmgvkp=13767810ebf0782b0b51bf72dedb63b3'
|
74 |
+
}
|
75 |
+
|
76 |
+
response = requests.request("POST", url, headers=headers, data=payload)
|
77 |
+
|
78 |
+
print(response.text)
|
79 |
+
return True
|
80 |
+
|
81 |
+
下記の質問 作成対応内容
|
82 |
+
|
83 |
+
いただいた電話番号をお訊きしたいのですが、弊社の査定人に対してわかりやすい質問に変更します。
|
84 |
+
|
85 |
+
「電話番号は何ですか?」
|
86 |
+
|
87 |
お電話番号をお聞きしたいのですが、お電話番号を教えてください。
|