pilot.linkstec 0.0.93__py3-none-any.whl → 0.0.95__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,16 +1,10 @@
1
- import threading
2
-
3
1
  from pilot.job.impl.base_job import BaseJob
4
2
 
5
3
  from pilot.conver.converfileEncodding import nkf_convert
6
4
 
7
5
 
8
6
  class EncodingTransformerJob(BaseJob):
9
- _begin_file_lock = threading.Lock()
10
7
  def run(self):
11
- with self._begin_file_lock:
12
- if not self.change_current_trg_to_begin():
13
- return
14
8
  nkf_args = ['-w', '--overwrite']
15
9
  nkf_convert(self.file_path, nkf_args)
16
10
  super().run()
@@ -1,14 +1,10 @@
1
- import threading
2
1
  from pathlib import Path
3
2
 
4
3
  from pilot.job.impl.base_job import BaseJob
5
4
 
6
5
  class TabReplaceJob(BaseJob):
7
- _begin_file_lock = threading.Lock()
6
+
8
7
  def run(self):
9
- with self._begin_file_lock:
10
- if not self.change_current_trg_to_begin():
11
- return
12
8
  self.replace_tabs_with_spaces()
13
9
  super().run()
14
10
 
File without changes
@@ -0,0 +1,42 @@
1
+ import json
2
+ import os
3
+ import threading
4
+ import time
5
+
6
+ from pilot.job.impl.base_job import BaseJob
7
+
8
+ from pilot.generater.vertexai import VertexAISingleton
9
+
10
+ class generateJsonBaseJob(BaseJob):
11
+
12
+ prompt_content: str
13
+ result_content: str
14
+ result_file_path: str
15
+
16
+ def run(self):
17
+ #with self._begin_file_lock:
18
+ # if not self.change_current_trg_to_begin():
19
+ # return
20
+ #prompt = self.get_file_content()
21
+ prompt = self.prompt_content
22
+ # トークン数チェック
23
+ vertexai = VertexAISingleton.get_instance()
24
+ token_count = vertexai.count_tokens(prompt)
25
+ if token_count == 0:
26
+ super().run()
27
+ return
28
+ if token_count > 900000:
29
+ print(f"警告: promptのトークン数が900000を超えています ({token_count} tokens)")
30
+ super().run()
31
+ return
32
+ # VertexAI で生成
33
+ start = time.time()
34
+ result = vertexai.generate_content(prompt)
35
+ end = time.time()
36
+ print(f"Ai 処理時間 {self.file_path}: {end - start:.2f}秒")
37
+
38
+ result_content = result.get('response', '')
39
+ data = json.loads(result_content)
40
+ with open(self.result_file_path, 'w', encoding='utf-8') as f:
41
+ json.dump(data, f, ensure_ascii=False, indent=2)
42
+ super().run()
@@ -0,0 +1,40 @@
1
+ import json
2
+ import os
3
+ import threading
4
+ import time
5
+
6
+ from pilot.job.impl.base_job import BaseJob
7
+
8
+ from pilot.generater.vertexai import VertexAISingleton
9
+
10
+ class textBaseJob(BaseJob):
11
+
12
+ prompt_content: str
13
+ result_content: str
14
+ result_file_path: str
15
+
16
+ def run(self):
17
+ #with self._begin_file_lock:
18
+ # if not self.change_current_trg_to_begin():
19
+ # return
20
+ #prompt = self.get_file_content()
21
+ prompt = self.prompt_content
22
+ # トークン数チェック
23
+ vertexai = VertexAISingleton.get_instance()
24
+ token_count = vertexai.count_tokens(prompt)
25
+ if token_count == 0:
26
+ super().run()
27
+ return
28
+ if token_count > 900000:
29
+ print(f"警告: promptのトークン数が900000を超えています ({token_count} tokens)")
30
+ super().run()
31
+ return
32
+ # VertexAI で生成
33
+ start = time.time()
34
+ result = vertexai.generate_content(prompt)
35
+ end = time.time()
36
+ print(f"AI 処理時間 {self.file_path}: {end - start:.2f}秒")
37
+ result_content = result.get('response', '')
38
+ with open(self.result_file_path, 'w', encoding='utf-8') as f:
39
+ f.write(result_content)
40
+ super().run()
@@ -31,7 +31,8 @@ class BaseUnit(UnitInterface):
31
31
  job.file_path = file_path
32
32
  if self.job_need_run(job, filename, index):
33
33
  job.run()
34
- job.post_run()
34
+ if index != 0:
35
+ job.post_run()
35
36
 
36
37
  def job_need_run(self, job:BaseJob,filename: str,index):
37
38
  return True
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pilot.linkstec
3
- Version: 0.0.93
3
+ Version: 0.0.95
4
4
  Summary: pilot of the ship, a tool for managing and deploying Python projects.
5
5
  Author-email: wanglr <wanglr1980@gmail.com>
6
6
  License-Expression: MIT
@@ -47,8 +47,11 @@ pilot/job/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
47
47
  pilot/job/job_interface.py,sha256=EKtuj0IcdolP494aAgTtctgamyQIoFXVwRORwOQck7A,124
48
48
  pilot/job/base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
49
49
  pilot/job/base/convert/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
50
- pilot/job/base/convert/encodingTransformerJob.py,sha256=tJI2JcBK3869pIgJxf9WFa7D-wCnHHO1aU8vQo7qjds,457
51
- pilot/job/base/convert/tabReplaceJob.py,sha256=ev5uoPbiwhVCSDPdonvFDnWI-vi4R-4Adoa4eJddL9w,917
50
+ pilot/job/base/convert/encodingTransformerJob.py,sha256=P6txCqAcQ4w999ttA_gmA4VKr6klvTz4SrQIYT1gv6U,279
51
+ pilot/job/base/convert/tabReplaceJob.py,sha256=FtPLbWwDPgH1jGsK3y5_sY4lAZ4Lhsv7GQ-1A-QgAFE,743
52
+ pilot/job/base/generate/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
53
+ pilot/job/base/generate/generateJsonBaseJob.py,sha256=5klyS0tj9YTAcLVldcxUe1GXnWYXsQhvpcB7bRjq_n4,1377
54
+ pilot/job/base/generate/generateTextBaseJob.py,sha256=yJVzeM_87T_lqo3x39j9Mi4IuKwGj_Ww3bxXUuY_F6o,1299
52
55
  pilot/job/base/generater/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
53
56
  pilot/job/base/generater/generateJsonBaseJob.py,sha256=Nea0GUvILgYyBiFpMOb3ZctYlxbE0pwGeJfeEWFjveQ,1348
54
57
  pilot/job/base/generater/generateTextBaseJob.py,sha256=UCEkoDGN9qdHPSXrP_zpFDOpHtfjse1SskMuS31uOwk,1265
@@ -68,11 +71,11 @@ pilot/splitters/cobolsplitter.py,sha256=oPwxKRjA7TyXWaWV3jdy59lJZy1mRn6yxD9ivqFY
68
71
  pilot/unit/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
69
72
  pilot/unit/unit_interface.py,sha256=fE8N4h_rZU-dWLHy9o0EE3yyErGmRyIuGUDb-zqe7qo,167
70
73
  pilot/unit/impl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
71
- pilot/unit/impl/base_unit.py,sha256=pF3R1TxoJtDIt5MCggSPO1H5jFI-wO1gQosz4haYTQo,1308
74
+ pilot/unit/impl/base_unit.py,sha256=UV-RsCrSAknO6a2yZAQA0vD8Uo9yqJsNCXC5e8yZE6A,1348
72
75
  pilot/util/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
73
76
  pilot/util/files.py,sha256=v9uzfzo3Aq4xgnUIASEZeBJoA2nD9Qz_EA3P-FwzGFQ,1896
74
- pilot_linkstec-0.0.93.dist-info/licenses/LICENSE,sha256=6kbiFSfobTZ7beWiKnHpN902HgBx-Jzgcme0SvKqhKY,1091
75
- pilot_linkstec-0.0.93.dist-info/METADATA,sha256=Ty1Ol3qT93jIibsagJ-5yMMuSam8mY0J_65wxJWR9Mk,679
76
- pilot_linkstec-0.0.93.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
77
- pilot_linkstec-0.0.93.dist-info/top_level.txt,sha256=BijnVJdXnIPxxx3s60M848seL4Z12gNUPod6KPJxK9c,6
78
- pilot_linkstec-0.0.93.dist-info/RECORD,,
77
+ pilot_linkstec-0.0.95.dist-info/licenses/LICENSE,sha256=6kbiFSfobTZ7beWiKnHpN902HgBx-Jzgcme0SvKqhKY,1091
78
+ pilot_linkstec-0.0.95.dist-info/METADATA,sha256=oZGxmKBaFeI6-rZmMMs7PGAJ6sCoTN6w6H7QX6x5H4k,679
79
+ pilot_linkstec-0.0.95.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
80
+ pilot_linkstec-0.0.95.dist-info/top_level.txt,sha256=BijnVJdXnIPxxx3s60M848seL4Z12gNUPod6KPJxK9c,6
81
+ pilot_linkstec-0.0.95.dist-info/RECORD,,