chore: bump version to v0.2.0 and promote CHANGELOG - #253
Merged
Conversation
Contributor
|
|
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
Added
PromptRequestandImagePromptRequestrecords to carry prompt data from orchestrators to providers, making prompt intent a first-class concept decoupled from provider configuration.FeedOrchestrator(#223): addedPromptRole,PromptStepOptions, andFeedPromptOptionsto model an ordered collection of prompt steps (Summary,ImagePromptDerivation,ImageGeneration) resolved by the orchestrator for each phase of the feed pipeline.FeedOrchestratorContext(#223): new value object carryingFeedUrlsandFeedPromptOptionsper scheduled slot, enabling multipleFeedOrchestratorslots to run with independent feed sources and prompt configurations.ScheduledOrchestrationProfile.OrchestratorContextKey(#223): added a logical context key used at runtime to resolve the appropriateFeedOrchestratorContextfor each slot.Changed
SenderPluginDI optimized with Keyed registrationAiProviderOptionsoptimized in a single Extension methodBuildChatPayloadcentralized inAiServiceHelper(#244): eliminated identical privateBuildChatPayloadimplementations acrossAzureFoundryService,OpenAiService,DeepSeekService, andPerplexityService; a singleinternal static object BuildChatPayload(string text, PromptRequest request, string modelName)method now lives inAiServiceHelper, with each provider delegating to it and passing its provider-specific model name.PromptRequest/ImagePromptRequest) instead of reading prompt fields from provider options.FeedOrchestratorrefactored for fan-out with slot context (#223): the orchestrator uses role-keyed prompt steps, generates the base summary once for the widest sender, reuses theSummarystep for re-summarisation of narrower senders, and shares a single image generation across all configured senders in the slot.FeedSlotContexts__{key}sections (#223): feed URLs and prompt options are now defined per logical slot context, replacing the previous global configuration and enabling per-slot tuning.OrchestratorFactoryupdated to resolve keyed context (#223): the factory now selects the correctFeedOrchestratorContextbased onOrchestratorContextKeywhile preserving centralised orchestrator selection and existing reflection-based instantiation.MaskUrlTelemetryInitializerwithMaskUrlTelemetryProcessorto maskaccess_tokenin Facebook Graph API HTTP dependenciesRemoved
FeedOrchestrator(#223): the previous single shared feed URL list and prompt configuration for allFeedOrchestratorslots has been removed in favour of per-slot contexts.