Skip to content

Commit

Permalink
more cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
rysweet committed Nov 17, 2024
1 parent 682320e commit 3c627b5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion dotnet/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<Import Project="./eng/MetaInfo.props" />
<Import Project="./eng/Sign.props" />
<PropertyGroup>
<PackageTargetFrameworks>net8.0</PackageTargetFrameworks>
<PackageTargetFrameworks>netstandard2.0;net8.0</PackageTargetFrameworks>
<TestTargetFrameworks>net8.0</TestTargetFrameworks>
<LangVersion>preview</LangVersion>
<Nullable>enable</Nullable>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<EmbeddedResource Include="RestoreInteractive.config" />
</ItemGroup>

<ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0'">
<PackageReference Include="Microsoft.DotNet.Interactive.Jupyter" />
<PackageReference Include="Microsoft.DotNet.Interactive.PackageManagement" />
</ItemGroup>
Expand Down
3 changes: 1 addition & 2 deletions python/packages/autogen-core/samples/xlang/worker.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import asyncio
import logging
import os
import sys

from autogen_core.application import WorkerAgentRuntime
from autogen_core.application.protos.agent_events_pb2 import NewMessageReceived
Expand All @@ -18,7 +17,7 @@

async def main() -> None:
load_dotenv()
agentHost = os.getenv("AGENT_HOST")
agentHost = os.getenv("AGENT_HOST") or "localhost:53072"
agnext_logger.info("0")
agnext_logger.info(agentHost)
runtime = WorkerAgentRuntime(host_address=agentHost)
Expand Down

0 comments on commit 3c627b5

Please sign in to comment.