Commit 8257287
committed
Fix installation issues and update project structure
Related to #1
Update project to resolve installation and module import issues.
* **pyproject.toml**: Update the `name` field to "integuru" and add `[tool.poetry.scripts]` section with `integuru = "integuru.__main__:cli"` entry.
* **main.ipynb**: Update all imports to use `integuru` instead of `integration_agent` and update the kernel name to match the new project name "integuru".
* **README.md**: Update the usage instructions to reflect the new project name "integuru" and add instructions to register the Poetry virtual environment with Jupyter.
* **integuru/agent.py**: Update import statements to use `integuru.util.LLM`, `integuru.models.DAGManager`, `integuru.util.har_processing`, `integuru.models.request`, and `integuru.models.agent_state` instead of `integration_agent.util.LLM`, `integration_agent.models.DAGManager`, `integration_agent.util.har_processing`, `integration_agent.models.request`, and `integration_agent.models.agent_state`.
* **integuru/graph_builder.py**: Update import statements to use `integuru.models.agent_state`, `integuru.agent`, and `integuru.util.print` instead of `integration_agent.models.agent_state`, `integration_agent.agent`, and `integration_agent.util.print`.
* **integuru/main.py**: Update import statements to use `integuru.graph_builder` and `integuru.util.LLM` instead of `integration_agent.graph_builder` and `integration_agent.util.LLM`.
* **integuru/__main__.py**: Update the import statement to use `integuru.main` instead of `integration_agent.main`.
* **integuru/models/DAGManager.py**: Remove unnecessary blank lines.
* **tests/__init__.py**: Delete the file.1 parent 212d87b commit 8257287
File tree
6 files changed
+13
-10
lines changed- integuru
- models
- tests
6 files changed
+13
-10
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
49 | 49 | | |
50 | 50 | | |
51 | 51 | | |
52 | | - | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
53 | 57 | | |
54 | 58 | | |
55 | 59 | | |
56 | 60 | | |
57 | | - | |
| 61 | + | |
58 | 62 | | |
59 | | - | |
| 63 | + | |
60 | 64 | | |
61 | 65 | | |
62 | 66 | | |
| |||
67 | 71 | | |
68 | 72 | | |
69 | 73 | | |
70 | | - | |
71 | | - | |
| 74 | + | |
| 75 | + | |
72 | 76 | | |
73 | 77 | | |
74 | 78 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
409 | 409 | | |
410 | 410 | | |
411 | 411 | | |
412 | | - | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
64 | 64 | | |
65 | 65 | | |
66 | 66 | | |
67 | | - | |
68 | | - | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
101 | 101 | | |
102 | 102 | | |
103 | 103 | | |
104 | | - | |
| 104 | + | |
105 | 105 | | |
106 | | - | |
| 106 | + | |
107 | 107 | | |
108 | 108 | | |
109 | 109 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
18 | 18 | | |
19 | 19 | | |
20 | 20 | | |
| 21 | + | |
| 22 | + | |
21 | 23 | | |
22 | 24 | | |
23 | 25 | | |
| |||
Whitespace-only changes.
0 commit comments