Skip to content

Commit 39e3f5c

Browse files
committed
fix: github links
Signed-off-by: Radek Ježek <[email protected]>
1 parent b8a950b commit 39e3f5c

File tree

12 files changed

+21
-21
lines changed

12 files changed

+21
-21
lines changed

agent-registry.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
providers:
2-
- location: ghcr.io/i-am-bee/beeai-platform/agents/chat:0.4.0-rc1
3-
- location: ghcr.io/i-am-bee/beeai-platform/agents/rag:0.4.0-rc1
4-
- location: ghcr.io/i-am-bee/beeai-platform/agents/form:0.4.0-rc1
2+
- location: ghcr.io/i-am-bee/agentstack/agents/chat:0.4.0-rc1
3+
- location: ghcr.io/i-am-bee/agentstack/agents/rag:0.4.0-rc1
4+
- location: ghcr.io/i-am-bee/agentstack/agents/form:0.4.0-rc1

agents/chat/src/chat/agent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
@server.agent(
7979
name="Chat",
8080
documentation_url=(
81-
f"https://github.com/i-am-bee/beeai-platform/blob/{os.getenv('RELEASE_VERSION', 'main')}/agents/chat"
81+
f"https://github.com/i-am-bee/agentstack/blob/{os.getenv('RELEASE_VERSION', 'main')}/agents/chat"
8282
),
8383
version="1.0.0",
8484
default_input_modes=["text", "text/plain"],

agents/form/src/form/agent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777

7878
@server.agent(
7979
name="Single-turn Form Agent",
80-
documentation_url=f"https://github.com/i-am-bee/beeai-platform/blob/{os.getenv('RELEASE_VERSION', 'main')}/agents/form",
80+
documentation_url=f"https://github.com/i-am-bee/agentstack/blob/{os.getenv('RELEASE_VERSION', 'main')}/agents/form",
8181
version="1.0.0",
8282
default_input_modes=["text", "text/plain"],
8383
default_output_modes=["text", "text/plain"],

agents/rag/src/rag/agent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
7979
@server.agent(
8080
name="RAG",
8181
documentation_url=(
82-
f"https://github.com/i-am-bee/beeai-platform/blob/{os.getenv('RELEASE_VERSION', 'main')}/agents/rag"
82+
f"https://github.com/i-am-bee/agentstack/blob/{os.getenv('RELEASE_VERSION', 'main')}/agents/rag"
8383
),
8484
version="1.0.0",
8585
default_input_modes=[

apps/agentstack-cli/src/agentstack_cli/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class Configuration(pydantic_settings.BaseSettings):
3333
debug: bool = False
3434
home: pathlib.Path = pydantic.Field(default_factory=lambda: pathlib.Path.home() / ".agentstack")
3535
agent_registry: pydantic.AnyUrl = HttpUrl(
36-
f"https://github.com/i-am-bee/beeai-platform@v{version()}#path=agent-registry.yaml"
36+
f"https://github.com/i-am-bee/agentstack@v{version()}#path=agent-registry.yaml"
3737
)
3838
admin_password: SecretStr | None = None
3939
oidc_enabled: bool = False

apps/agentstack-server/tests/conftest.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ class TestConfiguration(BaseSettings):
2727
llm_api_base: str = "http://localhost:11434/v1"
2828
llm_model: str = "other:llama3.1:8b"
2929
llm_api_key: Secret[str] = Secret("dummy")
30-
test_agent_image: str = "ghcr.io/i-am-bee/beeai-platform/official/beeai-framework/chat:0.3.2"
31-
test_agent_build_repo: str = "https://github.com/i-am-bee/beeai-platform-agent-starter"
30+
test_agent_image: str = "ghcr.io/i-am-bee/agentstack/agents/chat:0.4.0-rc1"
31+
test_agent_build_repo: str = "https://github.com/i-am-bee/agentstack-starter"
3232
server_url: str = "http://agentstack-server-svc:8333"
3333
db_url: str = "postgresql+asyncpg://agentstack-user:password@postgresql:5432/agentstack"
3434

apps/agentstack-server/tests/integration/utils/test_docker.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def configuration():
2727
@pytest.mark.parametrize(
2828
"image",
2929
[
30-
DockerImageID(root="ghcr.io/i-am-bee/beeai-platform/official/beeai-framework/chat:agents-v0.2.14"),
30+
DockerImageID(root="ghcr.io/i-am-bee/agentstack/official/beeai-framework/chat:agents-v0.2.14"),
3131
DockerImageID(root="redis:latest"),
3232
DockerImageID(root="icr.io/ibm-messaging/mq:latest"),
3333
DockerImageID(root="registry.goharbor.io/nightly/goharbor/harbor-log:v1.10.0"),

apps/agentstack-server/tests/integration/utils/test_github.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ async def test_github_private_resolve(configuration: Configuration):
4242

4343

4444
async def test_github_public_resolve(configuration: Configuration):
45-
resolved_url = await GithubUrl("https://github.com/i-am-bee/beeai-platform").resolve_version()
45+
resolved_url = await GithubUrl("https://github.com/i-am-bee/agentstack").resolve_version()
4646
assert resolved_url.version == "main"
4747
assert resolved_url.commit_hash
4848
async with httpx.AsyncClient() as client:

docs/community-and-support/acp-a2a-migration-guide.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -309,5 +309,5 @@ yield response_text
309309

310310
## Complete Examples
311311

312-
1. https://github.com/i-am-bee/beeai-platform/blob/main/agents/chat/src/chat/agent.py
312+
1. https://github.com/i-am-bee/agentstack/blob/main/agents/chat/src/chat/agent.py
313313
2. https://github.com/jenna-winkler/granite_chat/blob/main/src/beeai_agents/agent.py

docs/community-and-support/community-calls/26-08-2025.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -71,11 +71,11 @@ Through the `agentstack model setup` CLI flow:
7171
## 🗺️ What's Next
7272

7373
**Priorities:**
74-
1. Open Canvas functionality [#168](https://github.com/i-am-bee/beeai-platform/issues/168)
75-
2. Session history [#623](https://github.com/i-am-bee/beeai-platform/issues/623)
76-
3. MCP Support [#780](https://github.com/i-am-bee/beeai-platform/issues/780)
77-
4. Support Structured/Form Input in new Form Interface [#982](https://github.com/i-am-bee/beeai-platform/issues/982)
78-
5. User configurable agent settings at runtime [#633](https://github.com/i-am-bee/beeai-platform/issues/633)
74+
1. Open Canvas functionality [#168](https://github.com/i-am-bee/agentstack/issues/168)
75+
2. Session history [#623](https://github.com/i-am-bee/agentstack/issues/623)
76+
3. MCP Support [#780](https://github.com/i-am-bee/agentstack/issues/780)
77+
4. Support Structured/Form Input in new Form Interface [#982](https://github.com/i-am-bee/agentstack/issues/982)
78+
5. User configurable agent settings at runtime [#633](https://github.com/i-am-bee/agentstack/issues/633)
7979

8080
---
8181

0 commit comments

Comments
 (0)