auto-coder 0.1.180__tar.gz → 0.1.182__tar.gz
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.
Potentially problematic release.
This version of auto-coder might be problematic. Click here for more details.
- {auto_coder-0.1.180 → auto_coder-0.1.182}/PKG-INFO +2 -2
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/auto_coder.egg-info/PKG-INFO +2 -2
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/auto_coder.egg-info/requires.txt +1 -1
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/chat_auto_coder.py +1 -6
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/common/interpreter.py +25 -7
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/rag/doc_filter.py +2 -2
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/rag/long_context_rag.py +6 -4
- auto_coder-0.1.182/src/autocoder/version.py +1 -0
- auto_coder-0.1.180/src/autocoder/version.py +0 -1
- {auto_coder-0.1.180 → auto_coder-0.1.182}/LICENSE +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/README.md +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/setup.cfg +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/setup.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/auto_coder.egg-info/SOURCES.txt +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/auto_coder.egg-info/dependency_links.txt +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/auto_coder.egg-info/entry_points.txt +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/auto_coder.egg-info/top_level.txt +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/__init__.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/agent/__init__.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/agent/auto_tool.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/agent/coder.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/agent/designer.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/agent/planner.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/agent/project_reader.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/auto_coder.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/auto_coder_lang.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/auto_coder_rag.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/auto_coder_server.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/chat/__init__.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/chat_auto_coder_lang.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/command_args.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/common/JupyterClient.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/common/ShellClient.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/common/__init__.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/common/anything2images.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/common/audio.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/common/cleaner.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/common/code_auto_execute.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/common/code_auto_generate.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/common/code_auto_generate_diff.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/common/code_auto_generate_editblock.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/common/code_auto_generate_strict_diff.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/common/code_auto_merge.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/common/code_auto_merge_diff.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/common/code_auto_merge_editblock.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/common/code_auto_merge_strict_diff.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/common/command_completer.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/common/command_generator.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/common/command_templates.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/common/const.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/common/git_utils.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/common/image_to_page.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/common/llm_rerank.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/common/screenshots.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/common/search.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/common/search_replace.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/common/text.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/common/types.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/db/__init__.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/db/store.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/dispacher/__init__.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/dispacher/actions/__init__.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/dispacher/actions/action.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/dispacher/actions/copilot.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/dispacher/actions/plugins/__init__.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/dispacher/actions/plugins/action_regex_project.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/dispacher/actions/plugins/action_translate.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/index/__init__.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/index/for_command.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/index/index.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/index/symbols_utils.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/lang.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/pyproject/__init__.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/rag/__init__.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/rag/api_server.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/rag/document_retriever.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/rag/llm_wrapper.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/rag/loaders/__init__.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/rag/loaders/docx_loader.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/rag/loaders/excel_loader.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/rag/loaders/pdf_loader.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/rag/loaders/ppt_loader.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/rag/rag_config.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/rag/rag_entry.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/rag/raw_rag.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/rag/relevant_utils.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/rag/simple_directory_reader.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/rag/simple_rag.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/rag/token_checker.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/rag/token_counter.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/rag/token_limiter.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/rag/types.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/rag/variable_holder.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/regexproject/__init__.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/suffixproject/__init__.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/tsproject/__init__.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/utils/__init__.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/utils/conversation_store.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/utils/llm_client_interceptors.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/utils/log_capture.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/utils/multi_turn.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/utils/print_table.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/utils/queue_communicate.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/utils/request_event_queue.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/utils/request_queue.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/utils/rest.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/utils/tests.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/tests/test_action_regex_project.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/tests/test_chat_auto_coder.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/tests/test_code_auto_merge_editblock.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/tests/test_command_completer.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/tests/test_planner.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/tests/test_queue_communicate.py +0 -0
- {auto_coder-0.1.180 → auto_coder-0.1.182}/tests/test_symbols_utils.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: auto-coder
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.182
|
|
4
4
|
Summary: AutoCoder: AutoCoder
|
|
5
5
|
Author: allwefantasy
|
|
6
6
|
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
@@ -26,7 +26,7 @@ Requires-Dist: tabulate
|
|
|
26
26
|
Requires-Dist: jupyter_client
|
|
27
27
|
Requires-Dist: prompt-toolkit
|
|
28
28
|
Requires-Dist: tokenizers
|
|
29
|
-
Requires-Dist: byzerllm[saas]>=0.1.
|
|
29
|
+
Requires-Dist: byzerllm[saas]>=0.1.135
|
|
30
30
|
Requires-Dist: patch
|
|
31
31
|
Requires-Dist: diff_match_patch
|
|
32
32
|
Requires-Dist: GitPython
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: auto-coder
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.182
|
|
4
4
|
Summary: AutoCoder: AutoCoder
|
|
5
5
|
Author: allwefantasy
|
|
6
6
|
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
@@ -26,7 +26,7 @@ Requires-Dist: tabulate
|
|
|
26
26
|
Requires-Dist: jupyter_client
|
|
27
27
|
Requires-Dist: prompt-toolkit
|
|
28
28
|
Requires-Dist: tokenizers
|
|
29
|
-
Requires-Dist: byzerllm[saas]>=0.1.
|
|
29
|
+
Requires-Dist: byzerllm[saas]>=0.1.135
|
|
30
30
|
Requires-Dist: patch
|
|
31
31
|
Requires-Dist: diff_match_patch
|
|
32
32
|
Requires-Dist: GitPython
|
|
@@ -931,12 +931,7 @@ class CommandCompleter(Completer):
|
|
|
931
931
|
field_name + ":"
|
|
932
932
|
for field_name in AutoCoderArgs.model_fields.keys()
|
|
933
933
|
if field_name.startswith(current_word)
|
|
934
|
-
]
|
|
935
|
-
completions += [
|
|
936
|
-
field_name + ":"
|
|
937
|
-
for field_name in AutoCoderArgs.model_fields.keys()
|
|
938
|
-
if field_name.startswith(current_word)
|
|
939
|
-
]
|
|
934
|
+
]
|
|
940
935
|
|
|
941
936
|
for completion in completions:
|
|
942
937
|
yield Completion(completion, start_position=-len(current_word))
|
|
@@ -1,30 +1,39 @@
|
|
|
1
1
|
from autocoder.common.JupyterClient import JupyterNotebook
|
|
2
2
|
from autocoder.common.ShellClient import ShellClient
|
|
3
3
|
from autocoder.common import ExecuteSteps
|
|
4
|
-
from typing import List,Dict,Any,Optional,
|
|
4
|
+
from typing import List, Dict, Any, Optional, Callable
|
|
5
|
+
|
|
5
6
|
|
|
6
7
|
class Interpreter:
|
|
7
|
-
def __init__(self,cwd:Optional[str]=None):
|
|
8
|
+
def __init__(self, cwd: Optional[str] = None):
|
|
8
9
|
self.jupyter_client = JupyterNotebook()
|
|
9
10
|
self.shell_client = ShellClient(working_dir=cwd)
|
|
10
11
|
|
|
11
12
|
def close(self):
|
|
12
13
|
self.jupyter_client.close()
|
|
13
|
-
self.shell_client.close()
|
|
14
|
+
self.shell_client.close()
|
|
14
15
|
|
|
15
|
-
def execute_steps(
|
|
16
|
+
def execute_steps(
|
|
17
|
+
self, steps: ExecuteSteps, output_callback: Optional[Callable] = None
|
|
18
|
+
) -> str:
|
|
16
19
|
jupyter_client = self.jupyter_client
|
|
17
20
|
shell_client = self.shell_client
|
|
18
21
|
|
|
19
22
|
if steps.steps[0].cwd:
|
|
20
|
-
self.shell_client.working_dir = steps.steps[0].cwd
|
|
23
|
+
self.shell_client.working_dir = steps.steps[0].cwd
|
|
21
24
|
try:
|
|
22
25
|
output = ""
|
|
23
26
|
for step in steps.steps:
|
|
24
27
|
if step.lang and step.lang.lower() in ["python"]:
|
|
25
28
|
output += f"Python Code:\n{step.code}\n"
|
|
29
|
+
if output_callback:
|
|
30
|
+
output_callback("code", step.code)
|
|
26
31
|
output += "Output:\n"
|
|
27
32
|
result, error = jupyter_client.add_and_run(step.code)
|
|
33
|
+
if output_callback:
|
|
34
|
+
output_callback("result", result)
|
|
35
|
+
if error:
|
|
36
|
+
output_callback("error", error)
|
|
28
37
|
output += result + "\n"
|
|
29
38
|
if error:
|
|
30
39
|
output += f"Error: {str(error)}\n"
|
|
@@ -40,16 +49,25 @@ class Interpreter:
|
|
|
40
49
|
]:
|
|
41
50
|
output += f"Shell Command:\n{step.code}\n"
|
|
42
51
|
output += "Output:\n"
|
|
52
|
+
if output_callback:
|
|
53
|
+
output_callback("code", step.code)
|
|
43
54
|
stdout, stderr = shell_client.add_and_run(step.code)
|
|
55
|
+
if output_callback:
|
|
56
|
+
output_callback("result", stdout)
|
|
57
|
+
if stderr:
|
|
58
|
+
output_callback("error", stderr)
|
|
44
59
|
output += stdout + "\n"
|
|
45
60
|
if stderr:
|
|
46
61
|
output += f"Error: {stderr}\n"
|
|
62
|
+
if output_callback:
|
|
63
|
+
output_callback("error", stderr)
|
|
47
64
|
else:
|
|
48
65
|
output += f"Unknown step type: {step.lang}\n"
|
|
49
66
|
|
|
50
67
|
output += "-" * 20 + "\n"
|
|
51
68
|
except Exception as e:
|
|
52
|
-
output += f"Error: {str(e)}\n"
|
|
69
|
+
output += f"Error: {str(e)}\n"
|
|
70
|
+
if output_callback:
|
|
71
|
+
output_callback("error", str(e))
|
|
53
72
|
|
|
54
73
|
return output
|
|
55
|
-
|
|
@@ -52,8 +52,8 @@ def _check_relevance_with_conversation(
|
|
|
52
52
|
{{ filter_config }}
|
|
53
53
|
{% endif %}
|
|
54
54
|
|
|
55
|
-
|
|
56
|
-
|
|
55
|
+
请结合提供的文档以及用户对话历史,判断提供的文档是不是能和用户的最后一个问题相关。
|
|
56
|
+
如果该文档提供的知识能够和用户的问题相关,那么请回复"yes/<relevant>" 否则回复"no/<relevant>"。
|
|
57
57
|
其中, <relevant> 是你认为文档中和问题的相关度,0-10之间的数字,数字越大表示相关度越高。
|
|
58
58
|
"""
|
|
59
59
|
|
|
@@ -31,8 +31,8 @@ from tokenizers import Tokenizer
|
|
|
31
31
|
from autocoder.rag.variable_holder import VariableHolder
|
|
32
32
|
|
|
33
33
|
try:
|
|
34
|
-
from autocoder_pro.rag.llm_compute import LLMComputeEngine
|
|
35
|
-
except ImportError:
|
|
34
|
+
from autocoder_pro.rag.llm_compute import LLMComputeEngine
|
|
35
|
+
except ImportError:
|
|
36
36
|
logger.warning("Please install auto-coder-pro to enhance llm compute ability")
|
|
37
37
|
LLMComputeEngine = None
|
|
38
38
|
|
|
@@ -289,7 +289,7 @@ class LongContextRAG:
|
|
|
289
289
|
llm_config=llm_config,
|
|
290
290
|
)
|
|
291
291
|
except Exception as e:
|
|
292
|
-
logger.error(f"Error in stream_chat_oai: {str(e)}")
|
|
292
|
+
logger.error(f"Error in stream_chat_oai: {str(e)}")
|
|
293
293
|
traceback.print_exc()
|
|
294
294
|
return ["出现错误,请稍后再试。"], []
|
|
295
295
|
|
|
@@ -491,7 +491,9 @@ class LongContextRAG:
|
|
|
491
491
|
)
|
|
492
492
|
|
|
493
493
|
if LLMComputeEngine is not None:
|
|
494
|
-
llm_compute_engine = LLMComputeEngine(
|
|
494
|
+
llm_compute_engine = LLMComputeEngine(
|
|
495
|
+
llm=self.llm, inference_enhance=True, debug=False
|
|
496
|
+
)
|
|
495
497
|
new_conversations = llm_compute_engine.process_conversation(
|
|
496
498
|
conversations, query, [doc.source_code for doc in relevant_docs]
|
|
497
499
|
)
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.1.182"
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.1.180"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/common/code_auto_generate_editblock.py
RENAMED
|
File without changes
|
{auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/common/code_auto_generate_strict_diff.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/common/code_auto_merge_strict_diff.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{auto_coder-0.1.180 → auto_coder-0.1.182}/src/autocoder/dispacher/actions/plugins/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|