Compare commits
2 commits
8364fa6544
...
0b2ff36e75
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0b2ff36e75 | ||
|
|
21d6532cce |
2 changed files with 45 additions and 0 deletions
1
dummy_file.md
Normal file
1
dummy_file.md
Normal file
|
|
@ -0,0 +1 @@
|
|||
## dummy file
|
||||
44
structure.md
Normal file
44
structure.md
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
```
|
||||
xml-pipeline/
|
||||
├── agentserver/
|
||||
│ ├── auth/
|
||||
│ │ ├── __init__.py
|
||||
│ │ └── totp.py
|
||||
│ ├── config/
|
||||
│ │ ├── organism_identity/
|
||||
│ │ │ └── README.txt
|
||||
│ │ └── __init__.py
|
||||
│ ├── listeners/
|
||||
│ │ ├── examples/
|
||||
│ │ │ ├── __init__.py
|
||||
│ │ │ └── echo_chamber.py
|
||||
│ │ ├── __init__.py
|
||||
│ │ └── base.py
|
||||
│ ├── privileged/
|
||||
│ │ ├── __init__.py
|
||||
│ │ ├── commands.py
|
||||
│ │ ├── models.py
|
||||
│ │ └── msg_listener.py
|
||||
│ ├── schema/
|
||||
│ │ └── priviledged-msg.xsd
|
||||
│ ├── utils/
|
||||
│ │ ├── __init__.py
|
||||
│ │ ├── logging_setup.py
|
||||
│ │ └── xml_tools.py
|
||||
│ ├── __init__.py
|
||||
│ ├── agentserver.py
|
||||
│ ├── llm_connection.py
|
||||
│ ├── main.py
|
||||
│ └── message_bus.py
|
||||
├── scripts/
|
||||
│ └── generate_organism_key.py
|
||||
├── tests/
|
||||
│ └── __init__.py
|
||||
├── LICENSE
|
||||
├── README.md
|
||||
├── __init__.py
|
||||
├── pyproject.toml
|
||||
├── roadmap.md
|
||||
├── setup-project.ps1
|
||||
└── structure.md
|
||||
```
|
||||
Loading…
Reference in a new issue