traia-iatp 0.1.2__py3-none-any.whl → 0.1.4__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 traia-iatp might be problematic. Click here for more details.
- traia_iatp/cli/main.py +1 -1
- traia_iatp/mcp/traia_mcp_adapter.py +2 -2
- traia_iatp/registry/mongodb_registry.py +4 -4
- traia_iatp/registry/readmes/EMBEDDINGS_SETUP.md +1 -1
- traia_iatp/registry/readmes/IATP_SEARCH_API_GUIDE.md +8 -8
- traia_iatp/registry/readmes/MONGODB_X509_AUTH.md +1 -1
- traia_iatp/registry/readmes/README.md +3 -3
- traia_iatp/registry/readmes/REFACTORING_SUMMARY.md +6 -6
- traia_iatp/server/templates/.dockerignore.j2 +48 -0
- traia_iatp/server/templates/README.md +1 -1
- traia_iatp/special_agencies/registry_search_agency.py +1 -1
- traia_iatp/utils/iatp_utils.py +1 -1
- {traia_iatp-0.1.2.dist-info → traia_iatp-0.1.4.dist-info}/METADATA +1 -1
- {traia_iatp-0.1.2.dist-info → traia_iatp-0.1.4.dist-info}/RECORD +18 -17
- {traia_iatp-0.1.2.dist-info → traia_iatp-0.1.4.dist-info}/WHEEL +0 -0
- {traia_iatp-0.1.2.dist-info → traia_iatp-0.1.4.dist-info}/entry_points.txt +0 -0
- {traia_iatp-0.1.2.dist-info → traia_iatp-0.1.4.dist-info}/licenses/LICENSE +0 -0
- {traia_iatp-0.1.2.dist-info → traia_iatp-0.1.4.dist-info}/top_level.txt +0 -0
traia_iatp/cli/main.py
CHANGED
|
@@ -438,7 +438,7 @@ def example_crew():
|
|
|
438
438
|
# Example: Using utility agencies in a CrewAI crew
|
|
439
439
|
|
|
440
440
|
from crewai import Agent, Crew, Task
|
|
441
|
-
from
|
|
441
|
+
from traia_iatp import create_utility_agency_tools
|
|
442
442
|
|
|
443
443
|
# Find and create tools from utility agencies
|
|
444
444
|
tools = create_utility_agency_tools(
|
|
@@ -236,7 +236,7 @@ all HTTP requests when using streamable-http transport.
|
|
|
236
236
|
Basic Usage
|
|
237
237
|
-----------
|
|
238
238
|
```python
|
|
239
|
-
from
|
|
239
|
+
from traia_iatp.mcp import TraiaMCPAdapter
|
|
240
240
|
|
|
241
241
|
# Standard connection (no authentication)
|
|
242
242
|
server_params = {
|
|
@@ -264,7 +264,7 @@ with TraiaMCPAdapter(server_params) as tools:
|
|
|
264
264
|
Using Helper Functions
|
|
265
265
|
----------------------
|
|
266
266
|
```python
|
|
267
|
-
from
|
|
267
|
+
from traia_iatp.mcp import create_mcp_adapter_with_auth
|
|
268
268
|
|
|
269
269
|
# Create authenticated adapter
|
|
270
270
|
adapter = create_mcp_adapter_with_auth(
|
|
@@ -26,8 +26,8 @@ if __name__ == "__main__":
|
|
|
26
26
|
# When running as a script, import directly
|
|
27
27
|
import sys
|
|
28
28
|
sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))))
|
|
29
|
-
from
|
|
30
|
-
from
|
|
29
|
+
from src.traia_iatp.core.models import UtilityAgentRegistryEntry, UtilityAgent
|
|
30
|
+
from src.traia_iatp.registry.embeddings import get_embedding_service
|
|
31
31
|
from ..utils import get_now_in_utc
|
|
32
32
|
else:
|
|
33
33
|
# When imported as a module
|
|
@@ -401,7 +401,7 @@ class UtilityAgentRegistry:
|
|
|
401
401
|
return False
|
|
402
402
|
|
|
403
403
|
# Create new endpoints based on the new base URL
|
|
404
|
-
from
|
|
404
|
+
from ..utils.iatp_utils import create_iatp_endpoints
|
|
405
405
|
supports_streaming = doc.get("endpoints", {}).get("streaming_endpoint") is not None
|
|
406
406
|
new_endpoints = create_iatp_endpoints(new_base_url, supports_streaming)
|
|
407
407
|
|
|
@@ -700,7 +700,7 @@ if __name__ == "__main__":
|
|
|
700
700
|
)
|
|
701
701
|
|
|
702
702
|
# Create test agent with endpoints
|
|
703
|
-
from
|
|
703
|
+
from ..utils.iatp_utils import create_iatp_endpoints
|
|
704
704
|
test_agent.endpoints = create_iatp_endpoints("http://weather-agent:8100", supports_streaming=True)
|
|
705
705
|
|
|
706
706
|
# Add to registry
|
|
@@ -116,7 +116,7 @@ import os
|
|
|
116
116
|
os.environ["ENABLE_EMBEDDINGS"] = "true"
|
|
117
117
|
os.environ["OPENAI_API_KEY"] = "your-key"
|
|
118
118
|
|
|
119
|
-
from
|
|
119
|
+
from traia_iatp.registry.mongodb_registry import UtilityAgencyRegistry
|
|
120
120
|
|
|
121
121
|
# Create registry (embeddings will be auto-generated)
|
|
122
122
|
registry = UtilityAgencyRegistry()
|
|
@@ -22,7 +22,7 @@ The API automatically detects and uses the appropriate authentication method:
|
|
|
22
22
|
Find a single utility agent by specific criteria.
|
|
23
23
|
|
|
24
24
|
```python
|
|
25
|
-
from
|
|
25
|
+
from traia_iatp.registry.iatp_search_api import find_utility_agent
|
|
26
26
|
|
|
27
27
|
# Find by exact name
|
|
28
28
|
agent = find_utility_agent(name="hyperliquid-mcp-traia-utility-agency")
|
|
@@ -41,7 +41,7 @@ agent = find_utility_agent(query="trading bot")
|
|
|
41
41
|
List utility agents with optional filters.
|
|
42
42
|
|
|
43
43
|
```python
|
|
44
|
-
from
|
|
44
|
+
from traia_iatp.registry.iatp_search_api import list_utility_agents
|
|
45
45
|
|
|
46
46
|
# List all active agents
|
|
47
47
|
agents = list_utility_agents(limit=20)
|
|
@@ -57,7 +57,7 @@ agents = list_utility_agents(capabilities=["market_info", "trading_orders"])
|
|
|
57
57
|
Search utility agents using vector search.
|
|
58
58
|
|
|
59
59
|
```python
|
|
60
|
-
from
|
|
60
|
+
from traia_iatp.registry.iatp_search_api import search_utility_agents
|
|
61
61
|
|
|
62
62
|
# Search using default search_text embedding (recommended for best performance)
|
|
63
63
|
agents = await search_utility_agents("trading hyperliquid", limit=5)
|
|
@@ -83,7 +83,7 @@ agents = await search_utility_agents(
|
|
|
83
83
|
Find a single MCP server by specific criteria.
|
|
84
84
|
|
|
85
85
|
```python
|
|
86
|
-
from
|
|
86
|
+
from traia_iatp.registry.iatp_search_api import find_mcp_server
|
|
87
87
|
|
|
88
88
|
# Find by exact name
|
|
89
89
|
server = find_mcp_server(name="hyperliquid-mcp")
|
|
@@ -96,7 +96,7 @@ server = find_mcp_server(capability="trading_orders")
|
|
|
96
96
|
List MCP servers with optional filters.
|
|
97
97
|
|
|
98
98
|
```python
|
|
99
|
-
from
|
|
99
|
+
from traia_iatp.registry.iatp_search_api import list_mcp_servers
|
|
100
100
|
|
|
101
101
|
# List all servers
|
|
102
102
|
servers = list_mcp_servers(limit=10)
|
|
@@ -109,7 +109,7 @@ servers = list_mcp_servers(capabilities=["market_info"])
|
|
|
109
109
|
Search MCP servers using vector search.
|
|
110
110
|
|
|
111
111
|
```python
|
|
112
|
-
from
|
|
112
|
+
from traia_iatp.registry.iatp_search_api import search_mcp_servers
|
|
113
113
|
|
|
114
114
|
# Search using default embedding fields (description and capabilities)
|
|
115
115
|
servers = await search_mcp_servers("trading", limit=5)
|
|
@@ -126,7 +126,7 @@ servers = await search_mcp_servers(
|
|
|
126
126
|
Get detailed MCP server information by name (returns raw MongoDB document).
|
|
127
127
|
|
|
128
128
|
```python
|
|
129
|
-
from
|
|
129
|
+
from traia_iatp.registry.iatp_search_api import get_mcp_server
|
|
130
130
|
|
|
131
131
|
# Get full server details
|
|
132
132
|
server_doc = get_mcp_server("hyperliquid-mcp")
|
|
@@ -172,7 +172,7 @@ class MCPServerInfo:
|
|
|
172
172
|
#!/usr/bin/env python
|
|
173
173
|
import asyncio
|
|
174
174
|
import os
|
|
175
|
-
from
|
|
175
|
+
from traia_iatp.registry.iatp_search_api import (
|
|
176
176
|
find_utility_agent,
|
|
177
177
|
list_utility_agents,
|
|
178
178
|
search_utility_agents,
|
|
@@ -132,7 +132,7 @@ openssl s_client -connect your-cluster.mongodb.net:27017 -CAfile cert.pem
|
|
|
132
132
|
The registry automatically detects and uses X.509 authentication when configured:
|
|
133
133
|
|
|
134
134
|
```python
|
|
135
|
-
from
|
|
135
|
+
from traia_iatp.registry.mongodb_registry import UtilityAgentRegistry
|
|
136
136
|
|
|
137
137
|
# No need to pass credentials - uses MONGODB_X509_CERT_FILE automatically
|
|
138
138
|
registry = UtilityAgentRegistry()
|
|
@@ -65,7 +65,7 @@ export MONGODB_CONNECTION_STRING=mongodb+srv://user:pass@cluster.mongodb.net/...
|
|
|
65
65
|
### Using the High-Level API (No MongoDB Required)
|
|
66
66
|
|
|
67
67
|
```python
|
|
68
|
-
from
|
|
68
|
+
from traia_iatp.registry.iatp_search_api import find_utility_agent, list_mcp_servers
|
|
69
69
|
|
|
70
70
|
# Find a specific utility agent
|
|
71
71
|
agent = await find_utility_agent(name="trading-agent")
|
|
@@ -77,7 +77,7 @@ servers = list_mcp_servers(limit=10)
|
|
|
77
77
|
### Direct MongoDB Access
|
|
78
78
|
|
|
79
79
|
```python
|
|
80
|
-
from
|
|
80
|
+
from traia_iatp.registry.mongodb_registry import UtilityAgentRegistry
|
|
81
81
|
|
|
82
82
|
# Registry will automatically use configured authentication
|
|
83
83
|
registry = UtilityAgentRegistry()
|
|
@@ -168,7 +168,7 @@ See [atlas_search_indexes.json](./atlas_search_indexes.json) for index definitio
|
|
|
168
168
|
### Register a New Utility Agent
|
|
169
169
|
|
|
170
170
|
```python
|
|
171
|
-
from
|
|
171
|
+
from traia_iatp.core.models import UtilityAgent, AgentEndpoints
|
|
172
172
|
|
|
173
173
|
agent = UtilityAgent(
|
|
174
174
|
name="My Trading Bot",
|
|
@@ -95,7 +95,7 @@ This refactoring separates the concerns between registry management (write opera
|
|
|
95
95
|
|
|
96
96
|
### Registry Operations (Write)
|
|
97
97
|
```python
|
|
98
|
-
from
|
|
98
|
+
from traia_iatp.registry.mongodb_registry import UtilityAgentRegistry
|
|
99
99
|
|
|
100
100
|
# Add new agent
|
|
101
101
|
registry = UtilityAgentRegistry()
|
|
@@ -108,7 +108,7 @@ await registry.update_agent_base_url(agent_id, new_url)
|
|
|
108
108
|
|
|
109
109
|
### Search Operations (Read)
|
|
110
110
|
```python
|
|
111
|
-
from
|
|
111
|
+
from traia_iatp.registry.iatp_search_api import search_utility_agents, find_utility_agent
|
|
112
112
|
|
|
113
113
|
# Search for agents
|
|
114
114
|
agents = await search_utility_agents("hyperliquid trading", limit=5)
|
|
@@ -120,7 +120,7 @@ agent = find_utility_agent(capability="market_data")
|
|
|
120
120
|
### Discovery Test
|
|
121
121
|
```python
|
|
122
122
|
# The discovery test now uses the search API
|
|
123
|
-
from
|
|
123
|
+
from traia_iatp.registry.iatp_search_api import search_utility_agents
|
|
124
124
|
|
|
125
125
|
# Search for Hyperliquid agent
|
|
126
126
|
search_results = await search_utility_agents(
|
|
@@ -137,19 +137,19 @@ search_results = await search_utility_agents(
|
|
|
137
137
|
1. **If using registry for search/query:**
|
|
138
138
|
```python
|
|
139
139
|
# OLD
|
|
140
|
-
from
|
|
140
|
+
from traia_iatp.registry.mongodb_registry import UtilityAgentRegistry
|
|
141
141
|
registry = UtilityAgentRegistry()
|
|
142
142
|
agents = await registry.query_agents(query="trading")
|
|
143
143
|
|
|
144
144
|
# NEW
|
|
145
|
-
from
|
|
145
|
+
from traia_iatp.registry.iatp_search_api import search_utility_agents
|
|
146
146
|
agents = await search_utility_agents("trading")
|
|
147
147
|
```
|
|
148
148
|
|
|
149
149
|
2. **If using registry for write operations:**
|
|
150
150
|
```python
|
|
151
151
|
# No changes needed - these methods are still available
|
|
152
|
-
from
|
|
152
|
+
from traia_iatp.registry.mongodb_registry import UtilityAgentRegistry
|
|
153
153
|
registry = UtilityAgentRegistry()
|
|
154
154
|
await registry.add_utility_agent(agent)
|
|
155
155
|
```
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
# Environment files (should be mounted, not built into image)
|
|
2
|
+
.env
|
|
3
|
+
.env.*
|
|
4
|
+
!.env.example
|
|
5
|
+
|
|
6
|
+
# Python
|
|
7
|
+
__pycache__/
|
|
8
|
+
*.pyc
|
|
9
|
+
*.pyo
|
|
10
|
+
*.pyd
|
|
11
|
+
.Python
|
|
12
|
+
*.egg-info/
|
|
13
|
+
dist/
|
|
14
|
+
build/
|
|
15
|
+
|
|
16
|
+
# Git
|
|
17
|
+
.git/
|
|
18
|
+
.gitignore
|
|
19
|
+
|
|
20
|
+
# IDE
|
|
21
|
+
.vscode/
|
|
22
|
+
.idea/
|
|
23
|
+
*.swp
|
|
24
|
+
*.swo
|
|
25
|
+
|
|
26
|
+
# OS
|
|
27
|
+
.DS_Store
|
|
28
|
+
Thumbs.db
|
|
29
|
+
|
|
30
|
+
# UV/Poetry
|
|
31
|
+
.venv/
|
|
32
|
+
venv/
|
|
33
|
+
env/
|
|
34
|
+
|
|
35
|
+
# Logs
|
|
36
|
+
*.log
|
|
37
|
+
logs/
|
|
38
|
+
|
|
39
|
+
# Testing
|
|
40
|
+
.pytest_cache/
|
|
41
|
+
.coverage
|
|
42
|
+
htmlcov/
|
|
43
|
+
.tox/
|
|
44
|
+
|
|
45
|
+
# Documentation
|
|
46
|
+
docs/
|
|
47
|
+
*.md
|
|
48
|
+
!README.md
|
|
@@ -63,7 +63,7 @@ The templates expect the following variables:
|
|
|
63
63
|
Use the `UtilityAgencyTemplateGenerator` class to generate agencies:
|
|
64
64
|
|
|
65
65
|
```python
|
|
66
|
-
from
|
|
66
|
+
from traia_iatp.server.template_generator import UtilityAgencyTemplateGenerator
|
|
67
67
|
|
|
68
68
|
generator = UtilityAgencyTemplateGenerator()
|
|
69
69
|
output_path = generator.generate_agency(
|
|
@@ -357,7 +357,7 @@ python -m uvicorn server:app --host 0.0.0.0 --port 8000
|
|
|
357
357
|
## Usage Example
|
|
358
358
|
|
|
359
359
|
```python
|
|
360
|
-
from
|
|
360
|
+
from traia_iatp import create_utility_agency_tools
|
|
361
361
|
|
|
362
362
|
# This agency will be discoverable like any other
|
|
363
363
|
tools = create_utility_agency_tools(
|
traia_iatp/utils/iatp_utils.py
CHANGED
|
@@ -4,7 +4,7 @@ import logging
|
|
|
4
4
|
from typing import Dict, Any, Optional, List
|
|
5
5
|
import httpx
|
|
6
6
|
|
|
7
|
-
from
|
|
7
|
+
from ..core.models import AgentCard, AgentSkill, AgentCapabilities, IATPEndpoints
|
|
8
8
|
|
|
9
9
|
logger = logging.getLogger(__name__)
|
|
10
10
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: traia-iatp
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.4
|
|
4
4
|
Summary: Inter-Agent Transfer Protocol (IATP) - Enable AI Agents to utilize other AI Agents as tools
|
|
5
5
|
Project-URL: Documentation, https://pypi.org/project/traia-iatp
|
|
6
6
|
Project-URL: Source, https://github.com/Traia-IO/IATP
|
|
@@ -2,7 +2,7 @@ traia_iatp/README.md,sha256=Ry0X-sXiJ0Qi8WAq58mvUaazDqxIoV3ZvgpAoTtxSSU,10937
|
|
|
2
2
|
traia_iatp/__init__.py,sha256=HCSN9SndlPJ0NoPL9eRkvbrvt5yLIafAksi74NHXzok,966
|
|
3
3
|
traia_iatp/preview_diagrams.html,sha256=v5T6sAyA33b2DHib29WEa02wJq31UlvES9TFkKqrdMk,4708
|
|
4
4
|
traia_iatp/cli/__init__.py,sha256=nGgVg7pOjyIiWN5akKxqhKSHcpvU0VaDrH_vuhBEVcE,65
|
|
5
|
-
traia_iatp/cli/main.py,sha256=
|
|
5
|
+
traia_iatp/cli/main.py,sha256=MmBZxz5tob80_zJMeROKue39V2yvOeCp-8qkzzmFw28,20391
|
|
6
6
|
traia_iatp/client/__init__.py,sha256=eo1oIMijV63WpklHEIftfoNWjEmhW4udcL7aIuZjf6M,259
|
|
7
7
|
traia_iatp/client/a2a_client.py,sha256=fJwcPC9vmuH6Q4QSDUDGFNZyx9QQvuR9pPtbgKavkiM,10116
|
|
8
8
|
traia_iatp/client/crewai_a2a_tools.py,sha256=RTmUzQmPnHx_wHhrAf-zPQjU9gSCyq-6S0RV1RDA7DQ,14317
|
|
@@ -13,7 +13,7 @@ traia_iatp/core/models.py,sha256=nvpLJjXAW2zTLOejjFXaTeDEN_gRo6lETGOCyvYKXPI,838
|
|
|
13
13
|
traia_iatp/mcp/__init__.py,sha256=kb2bX9yMwatWBFb0xq-BeuDD_d7DLRt8huA32hDcnCo,427
|
|
14
14
|
traia_iatp/mcp/client.py,sha256=IMw_fO36GcAa92zHOkCuJJquG9untnkgX6LPOtrN1lU,7859
|
|
15
15
|
traia_iatp/mcp/mcp_agent_template.py,sha256=vGiBJy7ZtQ4Z0KkoHMW2lrmow2MAoIMpY9cjmjYylrU,14997
|
|
16
|
-
traia_iatp/mcp/traia_mcp_adapter.py,sha256=
|
|
16
|
+
traia_iatp/mcp/traia_mcp_adapter.py,sha256=0WIVERdWk2Bnx_mVwito66blT6gstI4RKiP_lP4VoZI,11945
|
|
17
17
|
traia_iatp/mcp/templates/Dockerfile.j2,sha256=bYCbpsawIO8WfGPjncvE8pZ6Dn9US6dsK61WdpW5DN4,1332
|
|
18
18
|
traia_iatp/mcp/templates/README.md.j2,sha256=xxdrFYcY8RmfKzSJs87PGSxRFjkGcrHzfY9a66wN_LI,5781
|
|
19
19
|
traia_iatp/mcp/templates/cursor-rules.md.j2,sha256=ixlzCMTWmmLgRNjnO8k1IIEk2z3Cpl8_TmRYqMFjbio,10976
|
|
@@ -29,22 +29,23 @@ traia_iatp/registry/__init__.py,sha256=YGFGRqgRp0f09ND-FWTG9GQNwxz-HpUBYbt_KhLP-
|
|
|
29
29
|
traia_iatp/registry/atlas_search_indexes.json,sha256=_tXLH9us_AXonubuLKCX7uTDHuqw80u89E7Zt_tcdxI,6843
|
|
30
30
|
traia_iatp/registry/embeddings.py,sha256=LvmQvQFbOBEZsQkCotBRLZWAyWDNYddRjaF5Ir8XEHw,11224
|
|
31
31
|
traia_iatp/registry/iatp_search_api.py,sha256=CvXm0HWbSaspdxsdq4IJAIXvHSCybSA12PE2HHgrY-E,28984
|
|
32
|
-
traia_iatp/registry/mongodb_registry.py,sha256=
|
|
32
|
+
traia_iatp/registry/mongodb_registry.py,sha256=oPj8UXsZrlQZL3YAxBHpw2xeY5Ogauo95m6fmk4dzbY,32579
|
|
33
33
|
traia_iatp/registry/readmes/ATLAS_SEARCH_INDEXES.md,sha256=vwYtLmqOfS-8f18CUc7D5z8meLl0O-GZ6n0cL1LXuy0,6049
|
|
34
34
|
traia_iatp/registry/readmes/ATLAS_SEARCH_SETUP.md,sha256=6fpFmRI-ZYOugK6wW2Y20odlivqhjZrNWcOIa3Smzpo,4782
|
|
35
35
|
traia_iatp/registry/readmes/AUTHENTICATION_UPDATE.md,sha256=sgj6xwd2XSW2AWLVUwEjZ6FME5XNtYEdvegp-AqdsUg,3525
|
|
36
|
-
traia_iatp/registry/readmes/EMBEDDINGS_SETUP.md,sha256=
|
|
37
|
-
traia_iatp/registry/readmes/IATP_SEARCH_API_GUIDE.md,sha256=
|
|
38
|
-
traia_iatp/registry/readmes/MONGODB_X509_AUTH.md,sha256=
|
|
39
|
-
traia_iatp/registry/readmes/README.md,sha256=
|
|
40
|
-
traia_iatp/registry/readmes/REFACTORING_SUMMARY.md,sha256=
|
|
36
|
+
traia_iatp/registry/readmes/EMBEDDINGS_SETUP.md,sha256=qxOOPCcwFTV4auSH6WrVPVW4_vcKFO0ymRAWe0rt1fc,5498
|
|
37
|
+
traia_iatp/registry/readmes/IATP_SEARCH_API_GUIDE.md,sha256=CO2jXeyHGKQ2MNldzN2pXvF0Culs-d5fsaqxgtu1ado,6943
|
|
38
|
+
traia_iatp/registry/readmes/MONGODB_X509_AUTH.md,sha256=VCKzHfklSN4kg-ycdkf2OQdpSh_2cLR8Mx9AyAHmIFo,5415
|
|
39
|
+
traia_iatp/registry/readmes/README.md,sha256=rb8XSQLUUqV-rpD0G7QLlWbvuse2wRXby-bJ4Pv23Iw,7178
|
|
40
|
+
traia_iatp/registry/readmes/REFACTORING_SUMMARY.md,sha256=DwnvOmtCb0kGcqBDR7R2EdpaGxh8z7GycxTyYP5msyA,6038
|
|
41
41
|
traia_iatp/server/__init__.py,sha256=sh_tdZJhF1PO2GBTfPMy9UI4Dqz1TQBqnJTBNA68VgA,385
|
|
42
42
|
traia_iatp/server/a2a_server.py,sha256=3-RZngcoOZn_T9bAEtJrSDeFWGFomfXYMaIRNeHP2TI,7701
|
|
43
43
|
traia_iatp/server/example_template_usage.py,sha256=5hiI9eOxvT0Cow6Khm63IHZIuadNDPDEVOHC94nR5Fc,2294
|
|
44
44
|
traia_iatp/server/iatp_server_agent_generator.py,sha256=uMVO9jODPXyLs6DxGSfhJl01N6l4_CShu88O3I9UZqQ,8880
|
|
45
45
|
traia_iatp/server/iatp_server_template_generator.py,sha256=AALMsYXITlHWC_UUOoBZe0qEOKBjIAgDYEIVJjHdbkc,9772
|
|
46
|
+
traia_iatp/server/templates/.dockerignore.j2,sha256=3XIuxSqhujKRc6-50tqiJ9jqW-b3A7sv-R7RlNGgOwM,388
|
|
46
47
|
traia_iatp/server/templates/Dockerfile.j2,sha256=gkP5HbuOTnJiX5XLN1oD1yoThPTWuYq5bYMNgwW-aNA,1196
|
|
47
|
-
traia_iatp/server/templates/README.md,sha256=
|
|
48
|
+
traia_iatp/server/templates/README.md,sha256=wz1d0dhKvvHXyfTxM3QBDJJE-RdLN1yxCUQnpPmRAqs,5180
|
|
48
49
|
traia_iatp/server/templates/README.md.j2,sha256=yy7N99FQ2ZkS2I-O2_YO9_UmOP3mLGNI3vpKrIqjnig,10625
|
|
49
50
|
traia_iatp/server/templates/__init__.py,sha256=OfnDqxbgP51KEUSxFpfnePOF_72LlC00DOeR744ky4M,53
|
|
50
51
|
traia_iatp/server/templates/__main__.py.j2,sha256=fvVIrQR4zUGmdRv6i1p2QQET6nPntDAS7xZiJD1ZOGg,20756
|
|
@@ -59,14 +60,14 @@ traia_iatp/server/templates/pyproject.toml.j2,sha256=kHA3YilqoeUIF81UTBWpBVduFBX
|
|
|
59
60
|
traia_iatp/server/templates/run_local_docker.sh.j2,sha256=4h1GGtwM8gsSDbChblsea2muS0MYXZtJwY4swso1PyI,3495
|
|
60
61
|
traia_iatp/server/templates/server.py.j2,sha256=uHQfngwj2IDbEjczvsX2SnikYNAxT-yJEKbQl456gFs,6351
|
|
61
62
|
traia_iatp/special_agencies/__init__.py,sha256=9Uh0X8gjrAnl6yjmjGeCaxyJvB3HVwoOKhTc9ljmsr4,122
|
|
62
|
-
traia_iatp/special_agencies/registry_search_agency.py,sha256=
|
|
63
|
+
traia_iatp/special_agencies/registry_search_agency.py,sha256=wnWtyGPD4maZx2FYNhusZOC47FhlJkebk31w5CN8CH0,11225
|
|
63
64
|
traia_iatp/utils/__init__.py,sha256=D739Fc3KWPlAaPZ-3XM7uRvBAA7V8b4t6PBYJvMSsig,202
|
|
64
65
|
traia_iatp/utils/docker_utils.py,sha256=mPD09TPJKEe9SKjrR5E_o9z8xle-iCZq6JLzHZ6JXFk,8634
|
|
65
66
|
traia_iatp/utils/general.py,sha256=g6sRKzalBPwRWobBg3a7pz4eNIvvxv8RefoUNFdHm4o,1503
|
|
66
|
-
traia_iatp/utils/iatp_utils.py,sha256=
|
|
67
|
-
traia_iatp-0.1.
|
|
68
|
-
traia_iatp-0.1.
|
|
69
|
-
traia_iatp-0.1.
|
|
70
|
-
traia_iatp-0.1.
|
|
71
|
-
traia_iatp-0.1.
|
|
72
|
-
traia_iatp-0.1.
|
|
67
|
+
traia_iatp/utils/iatp_utils.py,sha256=RrGzk2ENvGIwuuMigOUrK5Yne0esl1r_K2P2iVygUgM,4680
|
|
68
|
+
traia_iatp-0.1.4.dist-info/licenses/LICENSE,sha256=R8vcu8GZdTTXF40sbOll11-FbarDm7_PiuaGzQp9whw,1065
|
|
69
|
+
traia_iatp-0.1.4.dist-info/METADATA,sha256=M9KGccG8U-KlkvI9ovuGF5NUXVYZABxy6cIiY2ZH4W4,13220
|
|
70
|
+
traia_iatp-0.1.4.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
71
|
+
traia_iatp-0.1.4.dist-info/entry_points.txt,sha256=K4p9Z2lBdPEybzXfed3JbUtrVHDdg60CRnJ178df7K0,55
|
|
72
|
+
traia_iatp-0.1.4.dist-info/top_level.txt,sha256=FozpD3vmZ4WP01hjSDUt5ENn0ttnIxxm1tPrTiIsyzI,11
|
|
73
|
+
traia_iatp-0.1.4.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|