Skip to content

Commit

Permalink
Merge branch 'main' into rysweet-doc-comments
Browse files Browse the repository at this point in the history
  • Loading branch information
rysweet authored Feb 17, 2025
2 parents 9b178c1 + c76a68c commit 3d3e3ca
Show file tree
Hide file tree
Showing 26 changed files with 494 additions and 133 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,15 @@ jobs:
[
# For main use the workflow target
{ ref: "${{github.ref}}", dest-dir: dev, uv-version: "0.5.13", sphinx-release-override: "dev" },
{ ref: "python-v0.4.6", dest-dir: stable, uv-version: "0.5.13", sphinx-release-override: "stable" },
{ ref: "python-v0.4.7", dest-dir: stable, uv-version: "0.5.13", sphinx-release-override: "stable" },
{ ref: "v0.4.0.post1", dest-dir: "0.4.0", uv-version: "0.5.13", sphinx-release-override: "" },
{ ref: "v0.4.1", dest-dir: "0.4.1", uv-version: "0.5.13", sphinx-release-override: "" },
{ ref: "v0.4.2", dest-dir: "0.4.2", uv-version: "0.5.13", sphinx-release-override: "" },
{ ref: "v0.4.3", dest-dir: "0.4.3", uv-version: "0.5.13", sphinx-release-override: "" },
{ ref: "v0.4.4", dest-dir: "0.4.4", uv-version: "0.5.13", sphinx-release-override: "" },
{ ref: "python-v0.4.5", dest-dir: "0.4.5", uv-version: "0.5.13", sphinx-release-override: "" },
{ ref: "python-v0.4.6", dest-dir: "0.4.6", uv-version: "0.5.13", sphinx-release-override: "" },
{ ref: "python-v0.4.7", dest-dir: "0.4.7", uv-version: "0.5.13", sphinx-release-override: "" },
]
steps:
- name: Checkout
Expand Down
45 changes: 40 additions & 5 deletions docs/switcher.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,53 @@
[
{
"name": "0.4.6 (stable)",
"name": "dev (main)",
"version": "dev",
"url": "/autogen/dev/"
},
{
"name": "0.4.7 (stable)",
"version": "stable",
"url": "/autogen/stable/",
"preferred": true
},
{
"name": "dev (main)",
"version": "dev",
"url": "/autogen/dev/"
"name": "0.4.6",
"version": "0.4.6",
"url": "/autogen/0.4.6/"
},
{
"name": "0.4.5",
"version": "0.4.5",
"url": "/autogen/0.4.5/"
},
{
"name": "0.4.4",
"version": "0.4.4",
"url": "/autogen/0.4.4/"
},
{
"name": "0.4.3",
"version": "0.4.3",
"url": "/autogen/0.4.3/"
},
{
"name": "0.4.2",
"version": "0.4.2",
"url": "/autogen/0.4.2/"
},
{
"name": "0.4.1",
"version": "0.4.1",
"url": "/autogen/0.4.1/"
},
{
"name": "0.4.0",
"version": "0.4.0",
"url": "/autogen/0.4.0/"
},
{
"name": "0.2",
"version": "0.2",
"url": "/autogen/0.2/"
}
]
]
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
<Nullable>enable</Nullable>
</PropertyGroup>

<Import Project="$(RepoRoot)/nuget/nuget-package.props" />

<ItemGroup>
<ProjectReference Include="..\Core\Microsoft.AutoGen.Core.csproj" />
<ProjectReference Include="..\Contracts\Microsoft.AutoGen.Contracts.csproj" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,15 @@
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>

<Import Project="$(RepoRoot)/nuget/nuget-package.props" />

<ItemGroup>
<ProjectReference Include="..\Contracts\Microsoft.AutoGen.Contracts.csproj" />
<ProjectReference Include="..\Core\Microsoft.AutoGen.Core.csproj" />
<ProjectReference Include="..\Core.Grpc\Microsoft.AutoGen.Core.Grpc.csproj" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Orleans.Reminders" />
<PackageReference Include="Microsoft.Orleans.Persistence.Memory" />
Expand All @@ -30,6 +34,7 @@
<PackageReference Include="Microsoft.Orleans.Streaming.EventHubs" />
<PackageReference Include="OrleansDashboard" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Grpc.AspNetCore" />
<PackageReference Include="Grpc.Net.ClientFactory" />
Expand Down
4 changes: 2 additions & 2 deletions python/packages/autogen-agentchat/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "autogen-agentchat"
version = "0.4.6"
version = "0.4.7"
license = {file = "LICENSE-CODE"}
description = "AutoGen agents and teams library"
readme = "README.md"
Expand All @@ -15,7 +15,7 @@ classifiers = [
"Operating System :: OS Independent",
]
dependencies = [
"autogen-core==0.4.6",
"autogen-core==0.4.7",
]

[tool.ruff]
Expand Down
48 changes: 0 additions & 48 deletions python/packages/autogen-core/docs/drawio/tool-use-agent-cfg.drawio

This file was deleted.

This file was deleted.

Loading

0 comments on commit 3d3e3ca

Please sign in to comment.