bioguider 0.2.8__py3-none-any.whl → 0.2.10__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.
Potentially problematic release.
This version of bioguider might be problematic. Click here for more details.
- bioguider/agents/agent_tools.py +17 -8
- bioguider/agents/common_agent_2step.py +1 -1
- bioguider/agents/evaluation_installation_task.py +1 -2
- bioguider/agents/evaluation_task.py +42 -30
- bioguider/agents/identification_observe_step.py +2 -1
- bioguider/managers/evaluation_manager.py +2 -2
- bioguider/rag/data_pipeline.py +8 -19
- bioguider/rag/rag.py +14 -10
- {bioguider-0.2.8.dist-info → bioguider-0.2.10.dist-info}/METADATA +1 -1
- {bioguider-0.2.8.dist-info → bioguider-0.2.10.dist-info}/RECORD +12 -12
- {bioguider-0.2.8.dist-info → bioguider-0.2.10.dist-info}/LICENSE +0 -0
- {bioguider-0.2.8.dist-info → bioguider-0.2.10.dist-info}/WHEEL +0 -0
bioguider/agents/agent_tools.py
CHANGED
|
@@ -51,13 +51,22 @@ Returns:
|
|
|
51
51
|
return content
|
|
52
52
|
|
|
53
53
|
class summarize_file_tool(agent_tool):
|
|
54
|
-
"""
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
54
|
+
""" Read a file and generate a summary according to a specified prompt.
|
|
55
|
+
|
|
56
|
+
Arguments
|
|
57
|
+
----------
|
|
58
|
+
file_path : str, required
|
|
59
|
+
Path to the file to read.
|
|
60
|
+
summarize_prompt : str, optional
|
|
61
|
+
Instruction guiding the summarization focus (default is "N/A").
|
|
62
|
+
Use this to emphasize specific aspects of the content.
|
|
63
|
+
|
|
64
|
+
Returns
|
|
65
|
+
-------
|
|
66
|
+
str or None
|
|
67
|
+
A summarized version of the file content.
|
|
68
|
+
Returns None if the file does not exist or cannot be read.
|
|
69
|
+
"""
|
|
61
70
|
def __init__(
|
|
62
71
|
self,
|
|
63
72
|
llm: BaseChatOpenAI,
|
|
@@ -96,7 +105,7 @@ Returns:
|
|
|
96
105
|
summarized_text=summarized_text,
|
|
97
106
|
token_usage=token_usage,
|
|
98
107
|
)
|
|
99
|
-
def run(self, file_path: str, summarize_prompt: str) -> str | None:
|
|
108
|
+
def run(self, file_path: str, summarize_prompt: str = "N/A") -> str | None:
|
|
100
109
|
if file_path is None:
|
|
101
110
|
return None
|
|
102
111
|
if summarize_prompt is None or len(summarize_prompt) == 0:
|
|
@@ -154,7 +154,7 @@ class CommonAgentTwoChainSteps(CommonAgentTwoSteps):
|
|
|
154
154
|
def _invoke_agent(self, system_prompt, instruction_prompt, schema, post_process = None, **kwargs):
|
|
155
155
|
# Initialize the callback handler
|
|
156
156
|
callback_handler = OpenAICallbackHandler()
|
|
157
|
-
processed_system_prompt = system_prompt.replace("{", "
|
|
157
|
+
processed_system_prompt = system_prompt.replace("{", "{{").replace("}", "}}")
|
|
158
158
|
cot_prompt = self._build_prompt_for_cot_step(
|
|
159
159
|
system_prompt=processed_system_prompt,
|
|
160
160
|
instruction_prompt=instruction_prompt
|
|
@@ -52,14 +52,12 @@ Please assess the installation information using the following criteria. For eac
|
|
|
52
52
|
|
|
53
53
|
Your response **must exactly follow** the structure below:
|
|
54
54
|
|
|
55
|
-
```
|
|
56
55
|
**FinalAnswer**
|
|
57
56
|
**Overall Score:** [Poor / Fair / Good / Excellent]
|
|
58
57
|
**Ease of Access:** <your comments>
|
|
59
58
|
**Clarity of Dependency Specification:** <your comments>
|
|
60
59
|
**Hardware Requirements:** <your comments>
|
|
61
60
|
**Installation Guide:** <your comments>
|
|
62
|
-
```
|
|
63
61
|
|
|
64
62
|
---
|
|
65
63
|
|
|
@@ -149,6 +147,7 @@ class EvaluationInstallationTask(EvaluationTask):
|
|
|
149
147
|
schema=EvaluationInstallationResultSchema,
|
|
150
148
|
)
|
|
151
149
|
res = EvaluationInstallationResult(**res)
|
|
150
|
+
self.print_step(step_output=reasoning_process)
|
|
152
151
|
evaluation = {
|
|
153
152
|
"score": res.score,
|
|
154
153
|
"ease_of_access": res.ease_of_access,
|
|
@@ -18,7 +18,8 @@ from ..utils.gitignore_checker import GitignoreChecker
|
|
|
18
18
|
logger = logging.getLogger(__name__)
|
|
19
19
|
|
|
20
20
|
EVALUATION_README_SYSTEM_PROMPT = """
|
|
21
|
-
You are an expert in evaluating the quality of README files in software repositories.
|
|
21
|
+
You are an expert in evaluating the quality of README files in software repositories.
|
|
22
|
+
Your task is to analyze the provided README file and generate a comprehensive quality report.
|
|
22
23
|
|
|
23
24
|
---
|
|
24
25
|
|
|
@@ -28,9 +29,10 @@ First, determine whether the provided README is a **project-level README** (typi
|
|
|
28
29
|
|
|
29
30
|
---
|
|
30
31
|
|
|
31
|
-
### **
|
|
32
|
+
### **Evaluation Criteria**
|
|
33
|
+
|
|
34
|
+
#### If the README is a **project-level** file, evaluate it using the following criteria.
|
|
32
35
|
|
|
33
|
-
If the README is a **project-level** file, evaluate it using the following criteria.
|
|
34
36
|
For each criterion below, provide a brief assessment followed by specific, actionable comments for improvement.
|
|
35
37
|
|
|
36
38
|
**1. Project Clarity & Purpose**
|
|
@@ -38,30 +40,45 @@ For each criterion below, provide a brief assessment followed by specific, actio
|
|
|
38
40
|
* **Improvement Suggestions**:
|
|
39
41
|
* **Original text:** [Quote a specific line/section from the README.]
|
|
40
42
|
* **Improving comments:** [Provide your suggestions to improve clarity.]
|
|
43
|
+
* **Original text:** [Quote a specific line/section from the README.]
|
|
44
|
+
* **Improving comments:** [Provide your suggestions to improve clarity.]
|
|
45
|
+
...
|
|
41
46
|
|
|
42
47
|
**2. Installation Instructions**
|
|
43
48
|
* **Assessment**: [Your evaluation of the installation instructions.]
|
|
44
49
|
* **Improvement Suggestions**:
|
|
45
50
|
* **Original text:** [Quote text related to installation.]
|
|
46
51
|
* **Improving comments:** [Provide your suggestions.]
|
|
52
|
+
* **Original text:** [Quote text related to installation.]
|
|
53
|
+
* **Improving comments:** [Provide your suggestions.]
|
|
54
|
+
...
|
|
47
55
|
|
|
48
56
|
**3. Usage Instructions**
|
|
49
57
|
* **Assessment**: [Your evaluation of the usage instructions.]
|
|
50
58
|
* **Improvement Suggestions**:
|
|
51
59
|
* **Original text:** [Quote text related to usage.]
|
|
52
60
|
* **Improving comments:** [Provide your suggestions.]
|
|
61
|
+
* **Original text:** [Quote text related to usage.]
|
|
62
|
+
* **Improving comments:** [Provide your suggestions.]
|
|
63
|
+
...
|
|
53
64
|
|
|
54
65
|
**4. Contributing Guidelines**
|
|
55
66
|
* **Assessment**: [Your evaluation of the contributing guidelines.]
|
|
56
67
|
* **Improvement Suggestions**:
|
|
57
68
|
* **Original text:** [Quote text related to contributions.]
|
|
58
69
|
* **Improving comments:** [Provide your suggestions.]
|
|
70
|
+
* **Original text:** [Quote text related to contributions.]
|
|
71
|
+
* **Improving comments:** [Provide your suggestions.]
|
|
72
|
+
...
|
|
59
73
|
|
|
60
74
|
**5. License Information**
|
|
61
75
|
* **Assessment**: [Your evaluation of the license information.]
|
|
62
76
|
* **Improvement Suggestions**:
|
|
63
77
|
* **Original text:** [Quote text related to the license.]
|
|
64
78
|
* **Improving comments:** [Provide your suggestions.]
|
|
79
|
+
* **Original text:** [Quote text related to the license.]
|
|
80
|
+
* **Improving comments:** [Provide your suggestions.]
|
|
81
|
+
...
|
|
65
82
|
|
|
66
83
|
**6. Readability Analysis**
|
|
67
84
|
* **Flesch Reading Ease**: `{flesch_reading_ease}` (A higher score is better, with 60-70 being easily understood by most adults).
|
|
@@ -70,29 +87,9 @@ For each criterion below, provide a brief assessment followed by specific, actio
|
|
|
70
87
|
* **SMOG Index**: `{smog_index}` (Estimates the years of education needed to understand the text).
|
|
71
88
|
* **Assessment**: Based on these scores, evaluate the overall readability and technical complexity of the language used.
|
|
72
89
|
|
|
73
|
-
**Final Answer**
|
|
74
|
-
The final answer **must exactly match** the following format:
|
|
75
|
-
```
|
|
76
|
-
* Project-Level README: Yes / No
|
|
77
|
-
* **Score:** <number from 0 to 100>
|
|
78
|
-
* **Key Strengths**: <brief summary of the README's strongest points in 2-3 sentences>
|
|
79
|
-
* **Overall Improvement Suggestions:**
|
|
80
|
-
- "Original text snippet 1" - Improving comment 1
|
|
81
|
-
- "Original text snippet 2" - Improving comment 2
|
|
82
|
-
- ...
|
|
83
|
-
```
|
|
84
|
-
|
|
85
|
-
* **Project-Level README**: Indicate “Yes” if the README is project-level, otherwise “No.”
|
|
86
|
-
* **Score**: Provide an overall quality score (100 = perfect).
|
|
87
|
-
* **Key Strengths**: Provide the README's strongest points in 2-3 sentences
|
|
88
|
-
* **Overall Improvement Suggestions**:
|
|
89
|
-
* List each original text snippet that needs improvement, followed by your suggestion.
|
|
90
|
-
|
|
91
90
|
---
|
|
92
91
|
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
If the README is a **folder-level** file, use the following criteria instead.
|
|
92
|
+
#### If if is a **folder-level** file, use the following criteria instead.
|
|
96
93
|
|
|
97
94
|
For each criterion below, provide a brief assessment followed by specific, actionable comments for improvement.
|
|
98
95
|
|
|
@@ -121,15 +118,30 @@ For each criterion below, provide a brief assessment followed by specific, actio
|
|
|
121
118
|
* **SMOG Index**: `{smog_index}` (Estimates the years of education needed to understand the text).
|
|
122
119
|
* **Assessment**: Based on these scores, evaluate the overall readability and technical complexity of the language used.
|
|
123
120
|
|
|
124
|
-
|
|
125
|
-
|
|
121
|
+
---
|
|
122
|
+
|
|
123
|
+
### Final Report Format
|
|
124
|
+
|
|
125
|
+
#### Your output **must exactly match** the following template:
|
|
126
|
+
|
|
127
|
+
**FinalAnswer**
|
|
128
|
+
|
|
126
129
|
* Project-Level README: Yes / No
|
|
127
|
-
* **Score:**
|
|
130
|
+
* **Score:** [Poor / Fair / Good / Excellent]
|
|
128
131
|
* **Key Strengths**: <brief summary of the README's strongest points in 2-3 sentences>
|
|
129
132
|
* **Overall Improvement Suggestions:**
|
|
130
133
|
- "Original text snippet 1" - Improving comment 1
|
|
131
134
|
- "Original text snippet 2" - Improving comment 2
|
|
132
135
|
- ...
|
|
136
|
+
|
|
137
|
+
#### Notes
|
|
138
|
+
|
|
139
|
+
* **Project-Level README**: "Yes" if root-level; "No" if folder-level.
|
|
140
|
+
* **Score**: Overall quality rating, could be Poor / Fair / Good / Excellent.
|
|
141
|
+
* **Key Strengths**: Briefly highlight the README's strongest aspects.
|
|
142
|
+
* **Improvement Suggestions**: Provide concrete snippets and suggested improvements.
|
|
143
|
+
|
|
144
|
+
|
|
133
145
|
---
|
|
134
146
|
|
|
135
147
|
### **README path:**
|
|
@@ -188,7 +200,7 @@ class EvaluationTask(ABC):
|
|
|
188
200
|
|
|
189
201
|
class EvaluationREADMEResult(BaseModel):
|
|
190
202
|
project_level: Optional[bool]=Field(description="A boolean value specifying if the README file is **project-level** README. TRUE: project-level, FALSE, folder-level")
|
|
191
|
-
score: Optional[
|
|
203
|
+
score: Optional[str]=Field(description="An overall score")
|
|
192
204
|
key_strengths: Optional[str]=Field(description="A string specifying the key strengths of README file.")
|
|
193
205
|
overall_improvement_suggestions: Optional[list[str]]=Field(description="A list of overall improvement suggestions")
|
|
194
206
|
|
|
@@ -202,7 +214,7 @@ EvaluationREADMEResultSchema = {
|
|
|
202
214
|
"title": "Project Level"
|
|
203
215
|
},
|
|
204
216
|
"score": {
|
|
205
|
-
"anyOf": [{"type": "
|
|
217
|
+
"anyOf": [{"type": "string"}, {"type": "null"}],
|
|
206
218
|
"description": "An overall score",
|
|
207
219
|
"title": "Score"
|
|
208
220
|
},
|
|
@@ -248,7 +260,7 @@ class EvaluationREADMETask(EvaluationTask):
|
|
|
248
260
|
readme_evaluations[readme_file] = {
|
|
249
261
|
"evaluation": {
|
|
250
262
|
"project_level": "/" in readme_file,
|
|
251
|
-
"score":
|
|
263
|
+
"score": "Poor",
|
|
252
264
|
"key_strengths": f"{readme_file} is an empty file.",
|
|
253
265
|
"overall_improvement_suggestions": f"{readme_file} is an empty file.",
|
|
254
266
|
},
|
|
@@ -25,7 +25,8 @@ Carefully review the **Goal**, **Repository File Structure**, and **Intermediate
|
|
|
25
25
|
- Then provide your result under **FinalAnswer**
|
|
26
26
|
```
|
|
27
27
|
**Analysis**: your analysis here
|
|
28
|
-
**FinalAnswer**: your final answer here, in json format **without**
|
|
28
|
+
**FinalAnswer**: your final answer here, in **raw json format**, **including** the surrounding "{{}}" but **without** using code fence (```json ... ```),
|
|
29
|
+
For example, output exactly: {final_answer_example}
|
|
29
30
|
```
|
|
30
31
|
- If the information is **not sufficient** to achieve the goal, simply explain why under **Thoughts**:
|
|
31
32
|
```
|
|
@@ -25,8 +25,8 @@ class EvaluationManager:
|
|
|
25
25
|
self.repo_url = repo_url
|
|
26
26
|
self.rag = RAG()
|
|
27
27
|
self.rag.initialize_db_manager()
|
|
28
|
-
self.rag.
|
|
29
|
-
|
|
28
|
+
self.rag.initialize_repo(repo_url_or_path=repo_url)
|
|
29
|
+
|
|
30
30
|
author, repo_name = parse_repo_url(repo_url)
|
|
31
31
|
self.summary_file_db = SummarizedFilesDb(author, repo_name)
|
|
32
32
|
|
bioguider/rag/data_pipeline.py
CHANGED
|
@@ -504,7 +504,11 @@ class DatabaseManager:
|
|
|
504
504
|
self.repo_url_or_path = None
|
|
505
505
|
self.repo_paths = None
|
|
506
506
|
|
|
507
|
-
def
|
|
507
|
+
def reset_database_and_create_repo(self, repo_url_or_path: str, access_token: str = None):
|
|
508
|
+
self._reset_database()
|
|
509
|
+
self._create_repo(repo_url_or_path, access_token)
|
|
510
|
+
|
|
511
|
+
def prepare_database(self) -> Tuple[List[Document], List[Document]]:
|
|
508
512
|
"""
|
|
509
513
|
Create a new database from the repository.
|
|
510
514
|
|
|
@@ -515,9 +519,7 @@ class DatabaseManager:
|
|
|
515
519
|
Returns:
|
|
516
520
|
Tuple[List[Document], List[Document]]: Tuple of two Lists of Document objects
|
|
517
521
|
"""
|
|
518
|
-
self.
|
|
519
|
-
self._create_repo(repo_url_or_path, access_token)
|
|
520
|
-
return self.prepare_db_index()
|
|
522
|
+
return self._prepare_db_index()
|
|
521
523
|
|
|
522
524
|
def _extract_repo_name_from_url(self, repo_url_or_path: str, repo_type: str) -> str:
|
|
523
525
|
# Extract owner and repo name to create unique identifier
|
|
@@ -534,7 +536,7 @@ class DatabaseManager:
|
|
|
534
536
|
repo_name = url_parts[-1].replace(".git", "")
|
|
535
537
|
return repo_name
|
|
536
538
|
|
|
537
|
-
def
|
|
539
|
+
def _reset_database(self):
|
|
538
540
|
"""
|
|
539
541
|
Reset the database to its initial state.
|
|
540
542
|
"""
|
|
@@ -608,7 +610,7 @@ class DatabaseManager:
|
|
|
608
610
|
return self.repo_paths["save_repo_dir"]
|
|
609
611
|
return None
|
|
610
612
|
|
|
611
|
-
def
|
|
613
|
+
def _prepare_db_index(self) -> Tuple[List[Document], List[Document]]:
|
|
612
614
|
"""
|
|
613
615
|
Prepare the indexed database for the repository.
|
|
614
616
|
:return: Tuple of two Lists of Document objects
|
|
@@ -647,16 +649,3 @@ class DatabaseManager:
|
|
|
647
649
|
logger.info(f"Total transformed code documents: {len(transformed_code_documents)}")
|
|
648
650
|
return transformed_doc_documents, transformed_code_documents
|
|
649
651
|
|
|
650
|
-
def prepare_retriever(self, repo_url_or_path: str, access_token: str = None):
|
|
651
|
-
"""
|
|
652
|
-
Prepare the retriever for a repository.
|
|
653
|
-
This is a compatibility method for the isolated API.
|
|
654
|
-
|
|
655
|
-
Args:
|
|
656
|
-
repo_url_or_path (str): The URL or local path of the repository
|
|
657
|
-
access_token (str, optional): Access token for private repositories
|
|
658
|
-
|
|
659
|
-
Returns:
|
|
660
|
-
List[Document]: List of Document objects
|
|
661
|
-
"""
|
|
662
|
-
return self.prepare_database(repo_url_or_path, access_token)
|
bioguider/rag/rag.py
CHANGED
|
@@ -50,22 +50,25 @@ class RAG(adal.Component):
|
|
|
50
50
|
def initialize_db_manager(self):
|
|
51
51
|
"""Initialize the database manager with local storage"""
|
|
52
52
|
self.db_manager = DatabaseManager()
|
|
53
|
-
self.transformed_doc_documents =
|
|
54
|
-
self.transformed_code_documents =
|
|
53
|
+
self.transformed_doc_documents: list | None = None
|
|
54
|
+
self.transformed_code_documents: list | None = None
|
|
55
|
+
self.access_token: str | None = None
|
|
55
56
|
|
|
56
|
-
def
|
|
57
|
+
def initialize_repo(self, repo_url_or_path: str, access_token: str = None):
|
|
58
|
+
self.repo_url_or_path = repo_url_or_path
|
|
59
|
+
self.access_token = access_token
|
|
60
|
+
self.db_manager.reset_database_and_create_repo(repo_url_or_path, access_token)
|
|
61
|
+
|
|
62
|
+
def _prepare_retriever(self):
|
|
57
63
|
"""
|
|
58
64
|
Prepare the retriever for a repository.
|
|
59
65
|
Will load database from local storage if available.
|
|
60
|
-
|
|
61
|
-
Args:
|
|
62
|
-
repo_url_or_path: URL or local path to the repository
|
|
63
|
-
access_token: Optional access token for private repositories
|
|
64
66
|
"""
|
|
65
|
-
self.
|
|
66
|
-
|
|
67
|
+
if self.transformed_code_documents is not None and self.transformed_doc_documents is not None:
|
|
68
|
+
# retrievers have been prepared
|
|
69
|
+
return
|
|
67
70
|
self.transformed_doc_documents, self.transformed_code_documents \
|
|
68
|
-
= self.db_manager.prepare_database(
|
|
71
|
+
= self.db_manager.prepare_database()
|
|
69
72
|
logger.info(f"Loaded {len(self.transformed_doc_documents)} doc documents for retrieval")
|
|
70
73
|
logger.info(f"Loaded {len(self.transformed_code_documents)} code documents for retrieval")
|
|
71
74
|
self.doc_retriever = FAISSRetriever(
|
|
@@ -93,6 +96,7 @@ class RAG(adal.Component):
|
|
|
93
96
|
Returns:
|
|
94
97
|
retrieved_documents: List of documents retrieved based on the query
|
|
95
98
|
"""
|
|
99
|
+
self._prepare_retriever()
|
|
96
100
|
retrieved_documents = self.doc_retriever(query)
|
|
97
101
|
# Fill in the documents
|
|
98
102
|
retrieved_documents[0].documents = [
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
bioguider/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
2
|
bioguider/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
3
|
bioguider/agents/agent_task.py,sha256=SX4iLdGqQttT39qvr-RtXiSpQEzm7Z3ECVw8IGQzpDc,2828
|
|
4
|
-
bioguider/agents/agent_tools.py,sha256=
|
|
4
|
+
bioguider/agents/agent_tools.py,sha256=YWF44vGjTzK0H9dxfdZyJ5K2H4z2j1bz-Q0bVw1UoE8,7014
|
|
5
5
|
bioguider/agents/agent_utils.py,sha256=GASgM8pwGcbs3xQ8RaryBtWCim19rAcd3_c4EDranmU,12843
|
|
6
6
|
bioguider/agents/collection_execute_step.py,sha256=Ev4BLjjmBdsc52M1zrq7QK8g7fsffDkSxu-jN2rvedw,5614
|
|
7
7
|
bioguider/agents/collection_observe_step.py,sha256=iNeV6f16Emk1LMStSR4FXBPZ6Sc0eTjwxEfmoeegV-U,4554
|
|
@@ -9,17 +9,17 @@ bioguider/agents/collection_plan_step.py,sha256=mx-_5Y3pqKDPBaMMyFElKlpq1GWN7g03
|
|
|
9
9
|
bioguider/agents/collection_task.py,sha256=blrsS71aR-Du0vtO4MpFI6q0aUJdMvlAAYvHb1pBUfY,7368
|
|
10
10
|
bioguider/agents/collection_task_utils.py,sha256=WRzzpMV6r8aY0FlX_zroHbLDXyrmvS48OSiBr_fIq2Q,3677
|
|
11
11
|
bioguider/agents/common_agent.py,sha256=eGs8m8bjO0dmW6lDIen7DQNdWdHD7j8Udf3XhL1k6vI,5242
|
|
12
|
-
bioguider/agents/common_agent_2step.py,sha256=
|
|
12
|
+
bioguider/agents/common_agent_2step.py,sha256=Vton0RKtmMyEgIIFhnBk4CFU_hynX0LvwREcZ9kvMxQ,7918
|
|
13
13
|
bioguider/agents/common_step.py,sha256=GdOCbmj1pwh4etg-futVFYVDQuoUG89DnIrw-B6QbzM,2594
|
|
14
14
|
bioguider/agents/dockergeneration_execute_step.py,sha256=F92jDlkc6KjAvTkX7q1FsCYP8J15SCaNgmwh3YPqfDo,6500
|
|
15
15
|
bioguider/agents/dockergeneration_observe_step.py,sha256=93PO_Y4YyUShVTKRt0nErcjb-xYTcwcZCj7TgniS9t4,6098
|
|
16
16
|
bioguider/agents/dockergeneration_plan_step.py,sha256=SB8tQM9PkIKsD2o1DFD7bedcxz6r6hSy8n_EVK60Fz0,7235
|
|
17
17
|
bioguider/agents/dockergeneration_task.py,sha256=ezsweVHJsFpOyOI6rYMt1DZ3PE19dcq4J3Lm-d0IA8M,6220
|
|
18
18
|
bioguider/agents/dockergeneration_task_utils.py,sha256=v7emqrJlVW-A5ZdLmPSdiaMSKCR8uzy9UYzx_1cgzyo,9041
|
|
19
|
-
bioguider/agents/evaluation_installation_task.py,sha256=
|
|
20
|
-
bioguider/agents/evaluation_task.py,sha256=
|
|
19
|
+
bioguider/agents/evaluation_installation_task.py,sha256=G8oFpyiT99bGyHGgqE6eCW6_i5le64i3Hd7hSQkrndE,6498
|
|
20
|
+
bioguider/agents/evaluation_task.py,sha256=vZxjtj20BSGO5VP4-JdmiJRbg8pEzz664mjFTJioaZQ,17367
|
|
21
21
|
bioguider/agents/identification_execute_step.py,sha256=w3IjL8f2WiHCyiLjVSoySnIAXpi1-hK1DLKCnXbAN2Y,5587
|
|
22
|
-
bioguider/agents/identification_observe_step.py,sha256=
|
|
22
|
+
bioguider/agents/identification_observe_step.py,sha256=j4Fniv86jljkClTFc-p3pA39_zxhGJLPS9K7jNpxhJ0,3750
|
|
23
23
|
bioguider/agents/identification_plan_step.py,sha256=p0BKziXdB4ph4D_T9FU5bH8CbHD5Gv0YuszMds_xh-Y,5224
|
|
24
24
|
bioguider/agents/identification_task.py,sha256=vQxNEkX1Sw-XK391Z2_bi3kjr0tcIU1u6y7JBaEXUFU,8790
|
|
25
25
|
bioguider/agents/identification_task_utils.py,sha256=5gevknha9hJiiQN5L7Yp9-pyhAlbR_j31aGRK5j0D_w,522
|
|
@@ -29,12 +29,12 @@ bioguider/agents/python_ast_repl_tool.py,sha256=o7-4P1h8jS8ikhGSA4CI_OWQ2a0Eg5tE
|
|
|
29
29
|
bioguider/agents/rag_collection_task.py,sha256=r_jPAMjQcC7dIydKxX77UuMqjJ3MiVKswNZ-yNw7yx8,5199
|
|
30
30
|
bioguider/conversation.py,sha256=DIvk_d7pz_guuORByK1eaaF09FAK-8shcNTrbSUHz9Y,1779
|
|
31
31
|
bioguider/database/summarized_file_db.py,sha256=tDSi2iCvm2-lrx0rBJo0C11gYl9FswsDZTG2-Yhu5cE,4646
|
|
32
|
-
bioguider/managers/evaluation_manager.py,sha256=
|
|
32
|
+
bioguider/managers/evaluation_manager.py,sha256=oQVcrJXR_ushU4IBT4yR0o6rXFHftfkJywrteGrkISY,4910
|
|
33
33
|
bioguider/rag/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
34
34
|
bioguider/rag/config.py,sha256=5g4IqTzgyfZfax9Af9CTkXShgItPOt4_9TEMSekCPik,4602
|
|
35
|
-
bioguider/rag/data_pipeline.py,sha256=
|
|
35
|
+
bioguider/rag/data_pipeline.py,sha256=bkJ2IUCgPx_OL2uZtPd6cIBor2VFZEIfGd5kVlmiPjw,27292
|
|
36
36
|
bioguider/rag/embedder.py,sha256=jofR8hOj3Aj2IyBQ9y6FeAc84tgq5agbIfCGyFxYpJ8,650
|
|
37
|
-
bioguider/rag/rag.py,sha256=
|
|
37
|
+
bioguider/rag/rag.py,sha256=JFPwrJlKDSyd3U3Gce_NSxI5343eNUbqPG9Fs5Pfoq0,4696
|
|
38
38
|
bioguider/settings.py,sha256=BD_iz9aYarxmWUl0XaKl4-D4oTXMhFzljsXLNn2phis,3143
|
|
39
39
|
bioguider/utils/constants.py,sha256=_xMAhwE3py2RR0pIimnb2qfucXdnTj4ZNeKGACouh2w,932
|
|
40
40
|
bioguider/utils/default.gitignore,sha256=XjPdyO2KV8z8iyuqluaNR_70tBQftMpyKL8HboVNyeI,1605
|
|
@@ -42,7 +42,7 @@ bioguider/utils/file_utils.py,sha256=9VfAHsz1UkFPtzAmvWZvPl1TMaKIYNjNlLgsfB8tNjg
|
|
|
42
42
|
bioguider/utils/gitignore_checker.py,sha256=pOYUwsS9D5014LxcZb0cj3s2CAYaD2uF_pYJpaNKcho,6532
|
|
43
43
|
bioguider/utils/pyphen_utils.py,sha256=cdZc3qphkvMDeL5NiZ8Xou13M_uVNP7ifJ-FwxO-0BE,2680
|
|
44
44
|
bioguider/utils/utils.py,sha256=YP3HXgU_rvYDWkEcTzWGiYZw-mlfVrqGhUGSc0_4Pms,900
|
|
45
|
-
bioguider-0.2.
|
|
46
|
-
bioguider-0.2.
|
|
47
|
-
bioguider-0.2.
|
|
48
|
-
bioguider-0.2.
|
|
45
|
+
bioguider-0.2.10.dist-info/LICENSE,sha256=qzkvZcKwwA5DuSuhXMOm2LcO6BdEr4V7jwFZVL2-jL4,1065
|
|
46
|
+
bioguider-0.2.10.dist-info/METADATA,sha256=OGjtW0XGNonKac0PuNjF4o_iNDuLk07t_4_0EVgfMtc,1868
|
|
47
|
+
bioguider-0.2.10.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
48
|
+
bioguider-0.2.10.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|