-
Notifications
You must be signed in to change notification settings - Fork 7.1k
[AOT] Clean up some AOT issues in Advanced Paste module #36297
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 1 commit
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
ee1dba5
init
93fe40d
Do not update package version in this PR
4d428c8
Downgrade reverseMarkdown version
14a1bb6
Clean up some unnessesary change
046ab9a
Clean up unnessary change
839dba7
We can not mark AdvancedPaste is AOT compatible. We need to clean up …
5d814e0
merge main
ff532d0
Merge main and clean up new AOT build issue
dcd9603
Update LogEvent define.
fbef327
Add Kernal to spell check allow list.
eddcb1c
Update src/modules/AdvancedPaste/AdvancedPaste/Helpers/LogEvent.cs
moooyo 1aca55f
update typo bug
a362d33
Remove unused allow list item
699df28
Create a new folder to place source generation context
53fa539
Merge branch 'main' into yuleng/AOT/AdvancedPaste
31ad8f1
Merge main and rename LogEvent to AIServiceFormatEvent
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,17 +4,50 @@ | |
|
||
using System.Text.Json; | ||
using AdvancedPaste.Models.KernelQueryCache; | ||
using AdvancedPaste.Telemetry; | ||
|
||
namespace AdvancedPaste.Helpers | ||
{ | ||
public class LogEvent | ||
{ | ||
public LogEvent(object message) | ||
public LogEvent(bool cacheUsed, bool isSavedQuery, int promptTokens, int completionTokens, string modelName, string actionChain) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is this constructor needed? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. No, we don't need it anymore. Removed |
||
{ | ||
this.message = message; | ||
CacheUsed = cacheUsed; | ||
IsSavedQuery = isSavedQuery; | ||
PromptTokens = promptTokens; | ||
CompletionTokens = completionTokens; | ||
ModelName = modelName; | ||
ActionChain = actionChain; | ||
} | ||
|
||
private object message; | ||
public LogEvent(AdvancedPasteSemanticKernelFormatEvent semanticKernalFormatEvent) | ||
|
||
{ | ||
CacheUsed = semanticKernalFormatEvent.CacheUsed; | ||
|
||
IsSavedQuery = semanticKernalFormatEvent.IsSavedQuery; | ||
|
||
PromptTokens = semanticKernalFormatEvent.PromptTokens; | ||
|
||
CompletionTokens = semanticKernalFormatEvent.CompletionTokens; | ||
|
||
ModelName = semanticKernalFormatEvent.ModelName; | ||
ActionChain = semanticKernalFormatEvent.ActionChain; | ||
} | ||
|
||
public LogEvent(AdvancedPasteGenerateCustomFormatEvent generateCustomFormatEvent) | ||
{ | ||
PromptTokens = generateCustomFormatEvent.PromptTokens; | ||
CompletionTokens = generateCustomFormatEvent.CompletionTokens; | ||
ModelName = generateCustomFormatEvent.ModelName; | ||
} | ||
|
||
public bool IsSavedQuery { get; set; } | ||
|
||
public bool CacheUsed { get; set; } | ||
|
||
public int PromptTokens { get; set; } | ||
|
||
public int CompletionTokens { get; set; } | ||
|
||
public string ModelName { get; set; } | ||
|
||
public string ActionChain { get; set; } | ||
|
||
public string ToJsonString() => JsonSerializer.Serialize(this, AdvancedPasteJsonSerializerContext.Default.PersistedCache); | ||
moooyo marked this conversation as resolved.
Show resolved
Hide resolved
|
||
} | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.