Spaces:
Running
on
Zero
Running
on
Zero
test
Browse files
controllers/gpt_enginner20240719081349/prompt
ADDED
@@ -0,0 +1,79 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
下記の質問に対応するコードをdjangoでアプリを作成 プロジェクトはいりません
|
3 |
+
fastapiでrouter部分を作成 組み込みはメイン部分でします
|
4 |
+
フロントエンドをgradioで作成
|
5 |
+
#google apps script frontend
|
6 |
+
googleappsscript doGet でのgradioの表示処理を作成 google.script.runで関数は呼び出し
|
7 |
+
#google apps script backend
|
8 |
+
frontendからの呼び出し用のバックエンドスクリプト
|
9 |
+
仕様書の作成
|
10 |
+
PlantUMLでシーケンス図の作成
|
11 |
+
Markdownでのプログラム殺名
|
12 |
+
#下記参考にAPIも作成しておいて
|
13 |
+
action insert list edit update でCRUDがかわる
|
14 |
+
同じようにGASのAPIも作成しておいて
|
15 |
+
|
16 |
+
def create_vector():
|
17 |
+
inputs = tokenizer(result, return_tensors="pt", max_length=512, truncation=True)
|
18 |
+
outputs = model(**inputs)
|
19 |
+
# [CLS]トークンの出力を取得
|
20 |
+
embeddings = outputs.last_hidden_state[:,0,:].squeeze().detach().cpu().numpy().tolist()
|
21 |
+
print(embeddings)
|
22 |
+
import requests
|
23 |
+
|
24 |
+
url = "https://kenken999-php.hf.space/api/v1.php"
|
25 |
+
|
26 |
+
payload = "model_name={embeddings}&vector_text={result}&table=products&action=insert""
|
27 |
+
headers = {
|
28 |
+
'X-Auth-Token': 'admin',
|
29 |
+
'Content-Type': 'application/x-www-form-urlencoded',
|
30 |
+
'Cookie': 'runnerSession=muvclb78zpsdjbm7y9c3; pD1lszvk6ratOZhmmgvkp=13767810ebf0782b0b51bf72dedb63b3'
|
31 |
+
}
|
32 |
+
|
33 |
+
response = requests.request("POST", url, headers=headers, data=payload)
|
34 |
+
|
35 |
+
print(response.text)
|
36 |
+
return True
|
37 |
+
|
38 |
+
下記の質問 作成対応内容
|
39 |
+
|
40 |
+
ございしゃいました!リファスタのアシスタントとして、商品検索や査定に対応するためのお手伝いを致します。ご家庭で最高の購入体験を提供します!
|
41 |
+
下記の質問に対応するコードをdjangoでアプリを作成 プロジェクトはいりません
|
42 |
+
fastapiでrouter部分を作成 組み込みはメイン部分でします
|
43 |
+
フロントエンドをgradioで作成
|
44 |
+
#google apps script frontend
|
45 |
+
googleappsscript doGet でのgradioの表示処理を作成 google.script.runで関数は呼び出し
|
46 |
+
#google apps script backend
|
47 |
+
frontendからの呼び出し用のバックエンドスクリプト
|
48 |
+
仕様書の作成
|
49 |
+
PlantUMLでシーケンス図の作成
|
50 |
+
Markdownでのプログラム殺名
|
51 |
+
#下記参考にAPIも作成しておいて
|
52 |
+
action insert list edit update でCRUDがかわる
|
53 |
+
同じようにGASのAPIも作成しておいて
|
54 |
+
|
55 |
+
def create_vector():
|
56 |
+
inputs = tokenizer(result, return_tensors="pt", max_length=512, truncation=True)
|
57 |
+
outputs = model(**inputs)
|
58 |
+
# [CLS]トークンの出力を取得
|
59 |
+
embeddings = outputs.last_hidden_state[:,0,:].squeeze().detach().cpu().numpy().tolist()
|
60 |
+
print(embeddings)
|
61 |
+
import requests
|
62 |
+
|
63 |
+
url = "https://kenken999-php.hf.space/api/v1.php"
|
64 |
+
|
65 |
+
payload = "model_name={embeddings}&vector_text={result}&table=products&action=insert""
|
66 |
+
headers = {
|
67 |
+
'X-Auth-Token': 'admin',
|
68 |
+
'Content-Type': 'application/x-www-form-urlencoded',
|
69 |
+
'Cookie': 'runnerSession=muvclb78zpsdjbm7y9c3; pD1lszvk6ratOZhmmgvkp=13767810ebf0782b0b51bf72dedb63b3'
|
70 |
+
}
|
71 |
+
|
72 |
+
response = requests.request("POST", url, headers=headers, data=payload)
|
73 |
+
|
74 |
+
print(response.text)
|
75 |
+
return True
|
76 |
+
|
77 |
+
下記の質問 作成対応内容
|
78 |
+
|
79 |
+
ございしゃいました!リファスタのアシスタントとして、商品検索や査定に対応するためのお手伝いを致します。ご家庭で最高の購入体験を提供します!
|