Skip to content

Commit

Permalink
Removed styles, updated package use fast GPT
Browse files Browse the repository at this point in the history
  • Loading branch information
bradystroud committed Nov 8, 2023
1 parent d37a252 commit 3f228f8
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 21 deletions.
6 changes: 3 additions & 3 deletions src/TimesheetGPT.Core/Services/SemKerAiService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ public SemKerAiService(IConfiguration configuration, IGraphService graphService)

builder.WithOpenAIChatCompletionService(
// "gpt-3.5-turbo", // Cheap mode
"gpt-4", // 💸
// "gpt-4", // 💸
"gpt-4-1106-preview", // ⏩
_apiKey);

var kernel = builder.Build();
Expand All @@ -47,8 +48,7 @@ public async Task<string> GetSummaryBoring(IList<Email> emails, IEnumerable<Meet
var builder = new KernelBuilder();

builder.WithOpenAIChatCompletionService(
// "gpt-3.5-turbo", // Cheap mode
"gpt-4", // 💸
"gpt-4-1106-preview", // ⏩
_apiKey);

var kernel = builder.Build();
Expand Down
6 changes: 3 additions & 3 deletions src/TimesheetGPT.Core/TimesheetGPT.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@
<PackageReference Include="Azure.Identity" Version="1.10.3" />
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="8.0.0-rc.2.23479.6" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.0-rc.2.23479.6" />
<PackageReference Include="Microsoft.Graph" Version="5.31.0" />
<PackageReference Include="Microsoft.Graph" Version="5.34.0" />
<PackageReference Include="Microsoft.Identity.Client" Version="4.57.0" />
<PackageReference Include="Microsoft.SemanticKernel" Version="1.0.0-beta2" />
<PackageReference Include="Microsoft.SemanticKernel.Plugins.MsGraph" Version="1.0.0-beta2" />
<PackageReference Include="Microsoft.SemanticKernel" Version="1.0.0-beta5" />
<PackageReference Include="Microsoft.SemanticKernel.Plugins.MsGraph" Version="1.0.0-beta5" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/TimesheetGPT.WebAPI/TimesheetGPT.WebAPI.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="8.0.0-rc.2.23480.2" />
<PackageReference Include="Microsoft.Identity.Web" Version="2.15.2" />
<PackageReference Include="Microsoft.Identity.Web" Version="2.15.3" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.5.0" />
</ItemGroup>

Expand Down
11 changes: 0 additions & 11 deletions src/TimesheetGPT.WebUI/Pages/GraphChat.razor.css

This file was deleted.

6 changes: 3 additions & 3 deletions src/TimesheetGPT.WebUI/TimesheetGPT.WebUI.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="8.0.0-rc.2.23480.2" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="8.0.0-rc.2.23480.2" NoWarn="NU1605" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" Version="8.0.0-rc.2.23480.2" NoWarn="NU1605" />
<PackageReference Include="Microsoft.Identity.Web" Version="2.15.2" />
<PackageReference Include="Microsoft.Identity.Web.GraphServiceClient" Version="2.15.2" />
<PackageReference Include="Microsoft.Identity.Web.UI" Version="2.15.2" />
<PackageReference Include="Microsoft.Identity.Web" Version="2.15.3" />
<PackageReference Include="Microsoft.Identity.Web.GraphServiceClient" Version="2.15.3" />
<PackageReference Include="Microsoft.Identity.Web.UI" Version="2.15.3" />
<PackageReference Include="MudBlazor" Version="6.11.0" />
<PackageReference Include="MudBlazor.Markdown" Version="0.1.2" />
</ItemGroup>
Expand Down

0 comments on commit 3f228f8

Please sign in to comment.