auto-coder 0.1.178__tar.gz → 0.1.181__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.178 → auto_coder-0.1.181}/PKG-INFO +1 -1
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/auto_coder.egg-info/PKG-INFO +1 -1
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/chat_auto_coder.py +1 -6
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/common/interpreter.py +25 -7
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/rag/doc_filter.py +2 -2
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/rag/document_retriever.py +4 -4
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/rag/long_context_rag.py +6 -2
- auto_coder-0.1.181/src/autocoder/version.py +1 -0
- auto-coder-0.1.178/src/autocoder/version.py +0 -1
- {auto-coder-0.1.178 → auto_coder-0.1.181}/LICENSE +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/README.md +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/setup.cfg +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/setup.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/auto_coder.egg-info/SOURCES.txt +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/auto_coder.egg-info/dependency_links.txt +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/auto_coder.egg-info/entry_points.txt +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/auto_coder.egg-info/requires.txt +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/auto_coder.egg-info/top_level.txt +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/__init__.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/agent/__init__.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/agent/auto_tool.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/agent/coder.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/agent/designer.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/agent/planner.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/agent/project_reader.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/auto_coder.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/auto_coder_lang.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/auto_coder_rag.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/auto_coder_server.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/chat/__init__.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/chat_auto_coder_lang.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/command_args.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/common/JupyterClient.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/common/ShellClient.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/common/__init__.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/common/anything2images.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/common/audio.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/common/cleaner.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/common/code_auto_execute.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/common/code_auto_generate.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/common/code_auto_generate_diff.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/common/code_auto_generate_editblock.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/common/code_auto_generate_strict_diff.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/common/code_auto_merge.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/common/code_auto_merge_diff.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/common/code_auto_merge_editblock.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/common/code_auto_merge_strict_diff.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/common/command_completer.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/common/command_generator.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/common/command_templates.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/common/const.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/common/git_utils.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/common/image_to_page.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/common/llm_rerank.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/common/screenshots.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/common/search.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/common/search_replace.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/common/text.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/common/types.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/db/__init__.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/db/store.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/dispacher/__init__.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/dispacher/actions/__init__.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/dispacher/actions/action.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/dispacher/actions/copilot.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/dispacher/actions/plugins/__init__.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/dispacher/actions/plugins/action_regex_project.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/dispacher/actions/plugins/action_translate.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/index/__init__.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/index/for_command.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/index/index.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/index/symbols_utils.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/lang.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/pyproject/__init__.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/rag/__init__.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/rag/api_server.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/rag/llm_wrapper.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/rag/loaders/__init__.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/rag/loaders/docx_loader.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/rag/loaders/excel_loader.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/rag/loaders/pdf_loader.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/rag/loaders/ppt_loader.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/rag/rag_config.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/rag/rag_entry.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/rag/raw_rag.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/rag/relevant_utils.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/rag/simple_directory_reader.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/rag/simple_rag.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/rag/token_checker.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/rag/token_counter.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/rag/token_limiter.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/rag/types.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/rag/variable_holder.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/regexproject/__init__.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/suffixproject/__init__.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/tsproject/__init__.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/utils/__init__.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/utils/conversation_store.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/utils/llm_client_interceptors.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/utils/log_capture.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/utils/multi_turn.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/utils/print_table.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/utils/queue_communicate.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/utils/request_event_queue.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/utils/request_queue.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/utils/rest.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/utils/tests.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/tests/test_action_regex_project.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/tests/test_chat_auto_coder.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/tests/test_code_auto_merge_editblock.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/tests/test_command_completer.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/tests/test_planner.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/tests/test_queue_communicate.py +0 -0
- {auto-coder-0.1.178 → auto_coder-0.1.181}/tests/test_symbols_utils.py +0 -0
|
@@ -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
|
|
|
@@ -2,6 +2,7 @@ import json
|
|
|
2
2
|
import os
|
|
3
3
|
import platform
|
|
4
4
|
import time
|
|
5
|
+
import traceback
|
|
5
6
|
|
|
6
7
|
from watchfiles import Change, DefaultFilter, awatch, watch
|
|
7
8
|
|
|
@@ -24,9 +25,9 @@ from autocoder.rag.loaders import (
|
|
|
24
25
|
extract_text_from_pdf,
|
|
25
26
|
extract_text_from_ppt,
|
|
26
27
|
)
|
|
27
|
-
from autocoder.rag import variable_holder
|
|
28
28
|
from autocoder.rag.token_counter import count_tokens_worker, count_tokens
|
|
29
29
|
from uuid import uuid4
|
|
30
|
+
from autocoder.rag.variable_holder import VariableHolder
|
|
30
31
|
|
|
31
32
|
cache_lock = threading.Lock()
|
|
32
33
|
|
|
@@ -158,8 +159,7 @@ def process_file_local(file_path: str) -> List[SourceCode]:
|
|
|
158
159
|
logger.info(f"Load file {file_path} in {time.time() - start_time}")
|
|
159
160
|
return v
|
|
160
161
|
except Exception as e:
|
|
161
|
-
logger.error(f"Error processing file {file_path}: {str(e)}")
|
|
162
|
-
import traceback
|
|
162
|
+
logger.error(f"Error processing file {file_path}: {str(e)}")
|
|
163
163
|
traceback.print_exc()
|
|
164
164
|
return []
|
|
165
165
|
|
|
@@ -352,7 +352,7 @@ class AutoCoderRAGAsyncUpdateQueue:
|
|
|
352
352
|
with Pool(
|
|
353
353
|
processes=os.cpu_count(),
|
|
354
354
|
initializer=initialize_tokenizer,
|
|
355
|
-
initargs=(
|
|
355
|
+
initargs=(VariableHolder.TOKENIZER_PATH,),
|
|
356
356
|
) as pool:
|
|
357
357
|
results = pool.map(process_file_in_multi_process, files_to_process)
|
|
358
358
|
|
|
@@ -13,6 +13,7 @@ from rich.console import Console
|
|
|
13
13
|
from rich.panel import Panel
|
|
14
14
|
from rich.table import Table
|
|
15
15
|
import statistics
|
|
16
|
+
import traceback
|
|
16
17
|
|
|
17
18
|
from autocoder.common import AutoCoderArgs, SourceCode
|
|
18
19
|
from autocoder.rag.doc_filter import DocFilter
|
|
@@ -32,6 +33,7 @@ from autocoder.rag.variable_holder import VariableHolder
|
|
|
32
33
|
try:
|
|
33
34
|
from autocoder_pro.rag.llm_compute import LLMComputeEngine
|
|
34
35
|
except ImportError:
|
|
36
|
+
logger.warning("Please install auto-coder-pro to enhance llm compute ability")
|
|
35
37
|
LLMComputeEngine = None
|
|
36
38
|
|
|
37
39
|
|
|
@@ -288,7 +290,7 @@ class LongContextRAG:
|
|
|
288
290
|
)
|
|
289
291
|
except Exception as e:
|
|
290
292
|
logger.error(f"Error in stream_chat_oai: {str(e)}")
|
|
291
|
-
|
|
293
|
+
traceback.print_exc()
|
|
292
294
|
return ["出现错误,请稍后再试。"], []
|
|
293
295
|
|
|
294
296
|
def _stream_chat_oai(
|
|
@@ -489,7 +491,9 @@ class LongContextRAG:
|
|
|
489
491
|
)
|
|
490
492
|
|
|
491
493
|
if LLMComputeEngine is not None:
|
|
492
|
-
llm_compute_engine = LLMComputeEngine(
|
|
494
|
+
llm_compute_engine = LLMComputeEngine(
|
|
495
|
+
llm=self.llm, inference_enhance=True, debug=False
|
|
496
|
+
)
|
|
493
497
|
new_conversations = llm_compute_engine.process_conversation(
|
|
494
498
|
conversations, query, [doc.source_code for doc in relevant_docs]
|
|
495
499
|
)
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.1.181"
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.1.178"
|
|
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
|
{auto-coder-0.1.178 → auto_coder-0.1.181}/src/autocoder/common/code_auto_generate_editblock.py
RENAMED
|
File without changes
|
{auto-coder-0.1.178 → auto_coder-0.1.181}/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.178 → auto_coder-0.1.181}/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.178 → auto_coder-0.1.181}/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
|