Skip to content
This repository was archived by the owner on Feb 26, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
build:
strategy:
matrix:
framework: ['net8.0']
framework: ['net10.0']
runs-on: ubuntu-latest
steps:
# Checkout the repository
Expand All @@ -21,7 +21,7 @@ jobs:
# Set up .NET SDK
- uses: actions/setup-dotnet@v2
with:
dotnet-version: '8.0.x'
dotnet-version: '10.0.x'

# Restore dependencies
- name: Restore dependencies
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/nuget.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
build-and-publish:
strategy:
matrix:
framework: ['net8.0']
framework: ['net10.0']
runs-on: ubuntu-latest
steps:
# Checkout the repository
Expand All @@ -18,7 +18,7 @@ jobs:
# Set up .NET SDK
- uses: actions/setup-dotnet@v2
with:
dotnet-version: '8.0.x'
dotnet-version: '10.0.x'

# Restore dependencies
- name: Restore dependencies
Expand Down
3 changes: 1 addition & 2 deletions examples/GetStarted/GetStarted.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0-windows10.0.17763.0</TargetFramework>
<TargetFramework>net10.0-windows10.0.17763.0</TargetFramework>
<LangVersion>12.0</LangVersion>
<Nullable>enable</Nullable>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
Expand All @@ -15,7 +15,6 @@

<ItemGroup>
<PackageReference Include="LanguageExt.Core" Version="4.4.9" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="9.0.0" />
<PackageReference Include="Serilog.Extensions.Logging" Version="9.0.0" />
<PackageReference Include="Serilog.Sinks.Console" Version="6.0.0" />
<PackageReference Include="SIPSorceryMedia.Windows" Version="8.0.14" />
Expand Down
3 changes: 2 additions & 1 deletion examples/GetStarted/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,8 @@ public class RealtimeCallIncomingData
public required string Call_ID { get; set; }
}

record call_accept(string type = "realtime", string instructions = "You are a support agent.", string model = "gpt-4o-realtime-preview-2024-12-17");
//record call_accept(string type = "realtime", string instructions = "You are a support agent.", string model = "gpt-4o-realtime-preview-2024-12-17");
record call_accept(string type = "realtime", string instructions = "You are a support agent.", string model = "gpt-realtime");

class Program
{
Expand Down
10 changes: 5 additions & 5 deletions src/SIPSorcery.OpenAI.SIP.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net10.0</TargetFramework>
<LangVersion>12.0</LangVersion>
<Nullable>enable</Nullable>
<SuppressTfmSupportBuildWarnings>true</SuppressTfmSupportBuildWarnings>
Expand All @@ -14,7 +14,7 @@
<PackageReference Include="LanguageExt.Core" Version="4.4.9" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="9.0.0" />
<PackageReference Include="Microsoft.Extensions.Http" Version="9.0.0" />
<PackageReference Include="SIPSorcery" Version="8.0.22" />
<PackageReference Include="SIPSorcery" Version="10.0.4-pre" />
</ItemGroup>

<PropertyGroup>
Expand All @@ -40,9 +40,9 @@
<PackageReleaseNotes>-v8.0.0-pre: Initial version.
</PackageReleaseNotes>
<NeutralLanguage>en</NeutralLanguage>
<Version>8.0.1-pre</Version>
<AssemblyVersion>8.0.1</AssemblyVersion>
<FileVersion>8.0.1</FileVersion>
<Version>10.0.1-pre</Version>
<AssemblyVersion>10.0.1</AssemblyVersion>
<FileVersion>10.0.1</FileVersion>
</PropertyGroup>

<PropertyGroup Label="SourceLink">
Expand Down