agentgraph-server 0.6.1__tar.gz → 0.7.0__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.
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/.agents/skills/agentgraph/SKILL.md +24 -7
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/.agents/skills/agentgraph/references/commands.md +12 -9
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/.agents/skills/agentgraph/references/data-model.md +1 -1
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/.agents/skills/agentgraph/references/operations.md +14 -5
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/PKG-INFO +12 -12
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/agentgraph/backends/sqlite/backend.py +314 -147
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/agentgraph/backends/sqlite/schema.sql +2 -2
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/agentgraph/backends/sqlite/vector.py +26 -19
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/agentgraph/cli.py +134 -78
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/agentgraph/cli_query.py +127 -125
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/agentgraph/cli_sync.py +17 -8
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/agentgraph/config.py +41 -7
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/agentgraph/connectors/base.py +20 -1
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/agentgraph/connectors/command_effects.py +2 -1
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/agentgraph/connectors/feed.py +59 -1
- agentgraph_server-0.7.0/agentgraph/connectors/match_patterns.py +97 -0
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/agentgraph/core/storage.py +31 -12
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/agentgraph/graph/bookmark.py +9 -7
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/agentgraph/graph/embeddings.py +11 -2
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/agentgraph/graph/fetch.py +3 -1
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/agentgraph/graph/person.py +15 -0
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/agentgraph/graph/query.py +43 -10
- agentgraph_server-0.7.0/agentgraph/graph/upsert.py +101 -0
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/agentgraph/mcp/server.py +243 -198
- agentgraph_server-0.7.0/agentgraph/query_client.py +552 -0
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/agentgraph/server/app.py +28 -2
- agentgraph_server-0.6.1/agentgraph/server/cli_api.py → agentgraph_server-0.7.0/agentgraph/server/browse_api.py +32 -157
- agentgraph_server-0.7.0/agentgraph/server/graph_api.py +227 -0
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/agentgraph/server/observation.py +11 -4
- agentgraph_server-0.7.0/agentgraph/server/presentation.py +70 -0
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/agentgraph/server/static/viewer.html +23 -14
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/agentgraph/server/sync.py +20 -7
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/agentgraph/server/sync_api.py +1 -1
- agentgraph_server-0.7.0/agentgraph/server/uds.py +112 -0
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/agentgraph_server.egg-info/PKG-INFO +12 -12
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/agentgraph_server.egg-info/SOURCES.txt +13 -1
- agentgraph_server-0.7.0/agentgraph_server.egg-info/requires.txt +38 -0
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/pyproject.toml +12 -12
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/tests/test_browse.py +200 -150
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/tests/test_cli.py +188 -37
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/tests/test_command_effects.py +35 -0
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/tests/test_config.py +71 -1
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/tests/test_connectors.py +68 -0
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/tests/test_docs_build.py +8 -3
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/tests/test_embeddings.py +31 -16
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/tests/test_feed_connectors.py +158 -0
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/tests/test_fetch.py +31 -1
- agentgraph_server-0.7.0/tests/test_match_patterns.py +32 -0
- agentgraph_server-0.7.0/tests/test_mcp_transport.py +193 -0
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/tests/test_observation.py +69 -11
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/tests/test_query.py +244 -34
- agentgraph_server-0.7.0/tests/test_query_client.py +232 -0
- agentgraph_server-0.7.0/tests/test_query_parity.py +292 -0
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/tests/test_release_metadata.py +1 -1
- agentgraph_server-0.7.0/tests/test_route_resolution.py +72 -0
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/tests/test_rss_connector.py +90 -24
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/tests/test_schema.py +81 -1
- agentgraph_server-0.7.0/tests/test_server_lifespan.py +89 -0
- agentgraph_server-0.7.0/tests/test_server_uds.py +118 -0
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/tests/test_sync.py +55 -3
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/tests/test_upsert.py +408 -23
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/tests/test_viewer_layout_contract.py +14 -9
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/tests/test_web_connector.py +112 -16
- agentgraph_server-0.6.1/agentgraph/graph/upsert.py +0 -49
- agentgraph_server-0.6.1/agentgraph_server.egg-info/requires.txt +0 -38
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/.agents/skills/slack-auth/SKILL.md +0 -0
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/LICENSE +0 -0
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/README.md +0 -0
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/agentgraph/__init__.py +0 -0
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/agentgraph/auth/__init__.py +0 -0
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/agentgraph/auth/credentials.py +0 -0
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/agentgraph/backends/__init__.py +0 -0
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/agentgraph/backends/sqlite/__init__.py +0 -0
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/agentgraph/connectors/__init__.py +0 -0
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/agentgraph/connectors/registry.py +0 -0
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/agentgraph/connectors/status.py +0 -0
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/agentgraph/core/__init__.py +0 -0
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/agentgraph/core/context.py +0 -0
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/agentgraph/core/runtime.py +0 -0
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/agentgraph/demo.py +0 -0
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/agentgraph/demo_fixtures/reliable-webhooks.md +0 -0
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/agentgraph/demo_fixtures/retry-guidance.md +0 -0
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/agentgraph/graph/__init__.py +0 -0
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/agentgraph/graph/delete.py +0 -0
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/agentgraph/graph/download.py +0 -0
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/agentgraph/graph/expiration.py +0 -0
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/agentgraph/graph/link.py +0 -0
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/agentgraph/graph/operations.py +0 -0
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/agentgraph/logging.py +0 -0
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/agentgraph/mcp/__init__.py +0 -0
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/agentgraph/perf.py +0 -0
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/agentgraph/server/__init__.py +0 -0
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/agentgraph/server/meta_api.py +0 -0
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/agentgraph/server/router.py +0 -0
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/agentgraph/skills.py +0 -0
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/agentgraph_server.egg-info/dependency_links.txt +0 -0
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/agentgraph_server.egg-info/entry_points.txt +0 -0
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/agentgraph_server.egg-info/top_level.txt +0 -0
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/setup.cfg +0 -0
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/tests/test_auth.py +0 -0
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/tests/test_auth_status_methods.py +0 -0
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/tests/test_benchmarks.py +0 -0
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/tests/test_discord_attachments.py +0 -0
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/tests/test_entity_types.py +0 -0
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/tests/test_expiration.py +0 -0
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/tests/test_graph_operations.py +0 -0
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/tests/test_launch_demo.py +0 -0
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/tests/test_logging.py +0 -0
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/tests/test_registry.py +0 -0
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/tests/test_router.py +0 -0
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/tests/test_server_imports.py +0 -0
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/tests/test_slack_auth_artifacts.py +0 -0
- {agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/tests/test_slack_oauth.py +0 -0
|
@@ -17,19 +17,33 @@ Use `agentgraph demo add` or `add_demo_tool` to add the fictional Atlas fixtures
|
|
|
17
17
|
the configured graph. Remove them afterward with `agentgraph demo remove` or
|
|
18
18
|
`remove_demo_tool`.
|
|
19
19
|
|
|
20
|
-
## Commands that use
|
|
20
|
+
## Commands that use the local server
|
|
21
21
|
|
|
22
22
|
`agentgraph poll` and connector or authentication commands that queue a poll or
|
|
23
|
-
historical ingest call the
|
|
24
|
-
|
|
25
|
-
the
|
|
23
|
+
historical ingest always call the local AgentGraph server. Reads (`search`, `get`,
|
|
24
|
+
`edges`, `traverse`) and `fetch`/`download` use it when it is reachable and
|
|
25
|
+
otherwise read the database directly, so they work with no server running.
|
|
26
|
+
|
|
27
|
+
Many agent sandboxes deny loopback TCP but allow an allowlisted Unix socket, so the
|
|
28
|
+
server listens on both and clients prefer the socket. If a command fails because the
|
|
29
|
+
sandbox blocked it:
|
|
30
|
+
|
|
31
|
+
- For `poll`, ingest, or auth commands there is no fallback — request permission to
|
|
32
|
+
contact the local server, or ask the user to allowlist the socket
|
|
33
|
+
(`~/.agentgraph/agentgraph.sock`), then retry.
|
|
34
|
+
- For reads, `AGENTGRAPH_QUERY_TRANSPORT=in-process` bypasses the server entirely.
|
|
35
|
+
- `AGENTGRAPH_QUERY_TRANSPORT=server agentgraph search x --limit 1` reports plainly
|
|
36
|
+
whether the server is reachable, instead of silently falling back.
|
|
37
|
+
|
|
38
|
+
See the Coding agent sandboxes section of the configuration docs for the per-agent
|
|
39
|
+
allowlist settings.
|
|
26
40
|
|
|
27
41
|
## Investigation workflow
|
|
28
42
|
|
|
29
43
|
1. Discover likely entities with `agentgraph search "<query>" --json` or
|
|
30
44
|
`search_entities_tool`.
|
|
31
45
|
2. Open promising results with `agentgraph get <target> --json` or
|
|
32
|
-
`get_entity_tool` to read full content and source metadata. Search
|
|
46
|
+
`get_entity_tool` to read full content and source metadata. Search results
|
|
33
47
|
contain bounded snippets and set `content_truncated` when content was shortened.
|
|
34
48
|
3. Follow relationships with `agentgraph edges`, `agentgraph traverse`,
|
|
35
49
|
`get_edges_tool`, or `traverse_graph_tool`.
|
|
@@ -39,8 +53,11 @@ the command after approval.
|
|
|
39
53
|
each source URL or entity identifier used.
|
|
40
54
|
|
|
41
55
|
Start with search unless the user already supplied a graph ID, platform reference, or
|
|
42
|
-
known indexed URL.
|
|
43
|
-
|
|
56
|
+
known indexed URL. `search` covers both jobs: pass a query string for ranked
|
|
57
|
+
discovery, and add or use only its filters (`--type`, `--platform`, `--filter`,
|
|
58
|
+
`--since`, `--mine`, `--has-attachments`) when the entity type or constraints are
|
|
59
|
+
already known. Omitting the query string turns it into a deterministic listing
|
|
60
|
+
ordered by date.
|
|
44
61
|
|
|
45
62
|
## Context lifecycle
|
|
46
63
|
|
{agentgraph_server-0.6.1 → agentgraph_server-0.7.0}/.agents/skills/agentgraph/references/commands.md
RENAMED
|
@@ -3,19 +3,23 @@
|
|
|
3
3
|
## CLI
|
|
4
4
|
|
|
5
5
|
```bash
|
|
6
|
-
agentgraph search "<query>" [--type <type>] [--platform <platform>] [--limit N] [--min-score N] [--json]
|
|
7
|
-
agentgraph query --type <entity-type> [--filter key=value] [--since 12h|30m|2d] [--mine] [--has-attachments] [--limit N] [--order-by created_at|updated_at|source_created_at|source_updated_at|observed_at|synced_at] [--json]
|
|
6
|
+
agentgraph search ["<query>"] [--type <type>] [--platform <platform>] [--filter key=value] [--since 12h|30m|2d] [--mine] [--has-attachments] [--limit N] [--order-by created_at|updated_at|source_created_at|source_updated_at|observed_at|synced_at] [--min-score N] [--json]
|
|
8
7
|
agentgraph get <entity-id|platform/ref|url> [--resolve] [--json]
|
|
9
8
|
agentgraph edges <entity-id|platform/ref> [--type <edge-type>] [--direction in|out|both] [--json]
|
|
10
9
|
agentgraph traverse <entity-id|platform/ref> [--resolve] [--depth 0..4] [--json]
|
|
11
10
|
```
|
|
12
11
|
|
|
12
|
+
The query string is optional. With one, results are ranked by relevance and every
|
|
13
|
+
filter is applied as a hard constraint (`--limit` defaults to 10). Without one there
|
|
14
|
+
is no ranking: the filters select the entities, `--order-by` sorts them newest first,
|
|
15
|
+
`--min-score` is ignored, and `--limit` defaults to 50.
|
|
16
|
+
|
|
13
17
|
`get` and `traverse` do not resolve stubs unless `--resolve` is supplied. Depth 0
|
|
14
18
|
returns only the starting entity; depths 1 through 4 include that many relationship
|
|
15
19
|
hops.
|
|
16
20
|
|
|
17
|
-
Use `--json` when results will be parsed programmatically. Search
|
|
18
|
-
|
|
21
|
+
Use `--json` when results will be parsed programmatically. Search returns bounded
|
|
22
|
+
content snippets with `content_truncated`; use `get` for the complete entity.
|
|
19
23
|
|
|
20
24
|
Targets accepted by `get` are full UUIDs, unambiguous UUID prefixes, platform
|
|
21
25
|
references such as `slack/T123/C123`, and indexed HTTP(S) URLs. `edges` and `traverse`
|
|
@@ -24,16 +28,15 @@ accept full UUIDs, unambiguous UUID prefixes, and platform references.
|
|
|
24
28
|
## MCP equivalents
|
|
25
29
|
|
|
26
30
|
```text
|
|
27
|
-
agentgraph search ... -> search_entities_tool(query, entity_types, platform, limit, min_score, refresh)
|
|
28
|
-
agentgraph query ... -> query_by_filter_tool(entity_type, filters, since, authored_by_me, has_attachments, limit, order_by, refresh)
|
|
31
|
+
agentgraph search ... -> search_entities_tool(query, entity_types, platform, filters, since, authored_by_me, has_attachments, limit, order_by, min_score, refresh)
|
|
29
32
|
agentgraph get ... -> get_entity_tool(entity_id, resolve)
|
|
30
33
|
agentgraph edges ... -> get_edges_tool(entity_id, edge_type, direction)
|
|
31
34
|
agentgraph traverse ... -> traverse_graph_tool(entity_id, max_depth, resolve)
|
|
32
35
|
```
|
|
33
36
|
|
|
34
|
-
MCP search
|
|
35
|
-
|
|
36
|
-
|
|
37
|
+
MCP search defaults to `refresh=false`; set it only when fresh connector-owned
|
|
38
|
+
presentation metadata is needed. It does not replace a targeted source fetch for
|
|
39
|
+
stale content.
|
|
37
40
|
|
|
38
41
|
## Stubs
|
|
39
42
|
|
|
@@ -27,7 +27,7 @@ context is sufficient and traversal when the investigation needs a bounded subgr
|
|
|
27
27
|
Chat photos and file uploads are attachments on `Message` entities. Query them with:
|
|
28
28
|
|
|
29
29
|
```bash
|
|
30
|
-
agentgraph
|
|
30
|
+
agentgraph search --type Message --has-attachments --since 7d --json
|
|
31
31
|
```
|
|
32
32
|
|
|
33
33
|
`metadata.attachments` is a JSON array containing `url`, `filename`, `content_type`,
|
|
@@ -12,7 +12,7 @@ agentgraph auth remove <provider> [--account <account-id>] [--json]
|
|
|
12
12
|
Use `agentgraph list-connectors --json` to discover installed connector source names,
|
|
13
13
|
valid platform values, URL ownership, polling delegation, and sync state. Do not rely
|
|
14
14
|
on a hardcoded platform list. Use `--verify` only when a live provider check is
|
|
15
|
-
needed.
|
|
15
|
+
needed.
|
|
16
16
|
|
|
17
17
|
MCP equivalents are `list_connectors_tool`, `list_auth_providers_tool`,
|
|
18
18
|
`authenticate_provider_tool`, and `remove_auth_provider_tool`.
|
|
@@ -30,8 +30,10 @@ agentgraph connector <source> --help
|
|
|
30
30
|
The MCP equivalents are `fetch_entity_tool`, `fetch_entity_by_id_tool`,
|
|
31
31
|
`poll_connectors_tool`, and `run_connector_command_tool`.
|
|
32
32
|
|
|
33
|
-
Fetch persists the connector's complete returned batch before reporting
|
|
34
|
-
|
|
33
|
+
Fetch persists the connector's complete returned batch before reporting entity,
|
|
34
|
+
metadata-patch, person, and edge counts. Metadata patches record successful non-material
|
|
35
|
+
refreshes without entity upsert events. Fetch does not update `observed_at`. Poll reports
|
|
36
|
+
`polled`, `already_running`, and `skipped`.
|
|
35
37
|
A connector can be refreshed by another connector, so also inspect `polled_by` and
|
|
36
38
|
`sync` in connector status.
|
|
37
39
|
|
|
@@ -80,9 +82,16 @@ first Person is canonical and keeps its ID. Deletion removes connected edges.
|
|
|
80
82
|
process-management instructions rather than starting a duplicate foreground server
|
|
81
83
|
when a service manager already owns it.
|
|
82
84
|
|
|
85
|
+
The server listens on a Unix socket (`AGENTGRAPH_SERVER_UDS_PATH`, default
|
|
86
|
+
`~/.agentgraph/agentgraph.sock`) as well as TCP, because most agent sandboxes deny
|
|
87
|
+
loopback TCP while permitting an allowlisted socket.
|
|
88
|
+
|
|
83
89
|
`agentgraph poll` and connector or authentication commands that queue a poll or ingest
|
|
84
|
-
contact that service
|
|
85
|
-
|
|
90
|
+
always contact that service and have no local fallback; if sandboxed execution blocks
|
|
91
|
+
one, request permission to contact the server or ask for the socket to be allowlisted,
|
|
92
|
+
then retry. Reads and `fetch`/`download` follow `AGENTGRAPH_QUERY_TRANSPORT`
|
|
93
|
+
(`auto` by default: socket, then TCP, then in-process), so they keep working when the
|
|
94
|
+
server is unreachable.
|
|
86
95
|
|
|
87
96
|
```bash
|
|
88
97
|
agentgraph mcp-config
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: agentgraph-server
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.7.0
|
|
4
4
|
Summary: A local-first CLI and MCP server that turns selected digital sources into a searchable graph for the AI agent you already use.
|
|
5
5
|
Requires-Python: >=3.12
|
|
6
6
|
Description-Content-Type: text/markdown
|
|
7
7
|
License-File: LICENSE
|
|
8
8
|
Requires-Dist: aiosqlite>=0.20.0
|
|
9
|
-
Requires-Dist: agentgraph-connector-web<0.7,>=0.5.
|
|
9
|
+
Requires-Dist: agentgraph-connector-web<0.7,>=0.5.5
|
|
10
10
|
Requires-Dist: apscheduler>=3.11.2
|
|
11
11
|
Requires-Dist: click<8.4
|
|
12
12
|
Requires-Dist: fastapi>=0.135.2
|
|
@@ -22,21 +22,21 @@ Requires-Dist: sqlite-vec>=0.1.9
|
|
|
22
22
|
Requires-Dist: typer>=0.24.1
|
|
23
23
|
Requires-Dist: uvicorn>=0.42.0
|
|
24
24
|
Provides-Extra: google
|
|
25
|
-
Requires-Dist: agentgraph-connector-google<0.7,>=0.5.
|
|
25
|
+
Requires-Dist: agentgraph-connector-google<0.7,>=0.5.5; extra == "google"
|
|
26
26
|
Provides-Extra: slack
|
|
27
|
-
Requires-Dist: agentgraph-connector-slack<0.7,>=0.5.
|
|
27
|
+
Requires-Dist: agentgraph-connector-slack<0.7,>=0.5.5; extra == "slack"
|
|
28
28
|
Provides-Extra: discord
|
|
29
|
-
Requires-Dist: agentgraph-connector-discord<0.7,>=0.5.
|
|
29
|
+
Requires-Dist: agentgraph-connector-discord<0.7,>=0.5.5; extra == "discord"
|
|
30
30
|
Provides-Extra: rss
|
|
31
|
-
Requires-Dist: agentgraph-connector-rss<0.7,>=0.5.
|
|
31
|
+
Requires-Dist: agentgraph-connector-rss<0.7,>=0.5.5; extra == "rss"
|
|
32
32
|
Provides-Extra: web
|
|
33
|
-
Requires-Dist: agentgraph-connector-web<0.7,>=0.5.
|
|
33
|
+
Requires-Dist: agentgraph-connector-web<0.7,>=0.5.5; extra == "web"
|
|
34
34
|
Provides-Extra: all
|
|
35
|
-
Requires-Dist: agentgraph-connector-web<0.7,>=0.5.
|
|
36
|
-
Requires-Dist: agentgraph-connector-google<0.7,>=0.5.
|
|
37
|
-
Requires-Dist: agentgraph-connector-slack<0.7,>=0.5.
|
|
38
|
-
Requires-Dist: agentgraph-connector-discord<0.7,>=0.5.
|
|
39
|
-
Requires-Dist: agentgraph-connector-rss<0.7,>=0.5.
|
|
35
|
+
Requires-Dist: agentgraph-connector-web<0.7,>=0.5.5; extra == "all"
|
|
36
|
+
Requires-Dist: agentgraph-connector-google<0.7,>=0.5.5; extra == "all"
|
|
37
|
+
Requires-Dist: agentgraph-connector-slack<0.7,>=0.5.5; extra == "all"
|
|
38
|
+
Requires-Dist: agentgraph-connector-discord<0.7,>=0.5.5; extra == "all"
|
|
39
|
+
Requires-Dist: agentgraph-connector-rss<0.7,>=0.5.5; extra == "all"
|
|
40
40
|
Dynamic: license-file
|
|
41
41
|
|
|
42
42
|
# AgentGraph
|