-
Notifications
You must be signed in to change notification settings - Fork 113
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
feat: Add DeepSeek sample #861
base: master
Are you sure you want to change the base?
Conversation
/// <param name="Date">Gets the Date of the Forecast.</param> | ||
/// <param name="TemperatureC">Gets the Forecast Temperature in Celsius.</param> | ||
/// <param name="Summary">Get a description of how the weather will feel.</param> | ||
public record WeatherForecast(DateOnly Date, double TemperatureC, string? Summary) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove weather stuff
); | ||
} | ||
|
||
private static ToggleButton Header(MainViewModel vm) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove if streaming's not used
var section = context.Configuration.GetSection(nameof(AppConfig)); | ||
var apiKey = section[nameof(AppConfig.ApiKey)]; | ||
var baseUrl = section[nameof(AppConfig.BaseUrl)]; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@eriklimakc make sure to also add proper documentation for the sample please:
- samples.md
- UI/DeepSeek/README.md (example with PongWars for the folders structure and README structure: https://github.com/unoplatform/Uno.Samples/tree/master/UI/PongWars)
No description provided.