-
Notifications
You must be signed in to change notification settings - Fork 6
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
Operational Learning Summary Generation #2227
Conversation
b3019de
to
5c0c71f
Compare
77a1791
to
33d0ef5
Compare
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.
Round 1
per/serializers.py
Outdated
@@ -1046,6 +1049,29 @@ class Meta: | |||
exclude = ("learning", "type", "organization", "sector", "per_component") | |||
|
|||
|
|||
class AppealDetailSerializer(serializers.ModelSerializer): | |||
atype = serializers.SerializerMethodField() |
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.
Maybe use this instead? SerializerMethodField doesn't provide proper schema
atype = serializers.SerializerMethodField() | |
atype_display = serializers.CharField(source='get_atype_display', read_only=True) |
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.
This Serializer is not in use.
per/ops_learning_summary.py
Outdated
client = AzureOpenAI( | ||
azure_endpoint=settings.AZURE_OPENAI_ENDPOINT, api_key=settings.AZURE_OPENAI_KEY, api_version="2023-05-15" | ||
) |
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.
Use cached_property for this
Add a TODO: to create a separate object for integration with Open AI for common use cases
33e896f
to
b12217f
Compare
05aad9b
to
f57d211
Compare
Code refactor of Prioritizing opslearning
Update primary instruction and Add New prompt instructions
Changes on mocking and response Add splitting confidence level value
Change latest prompt with used excerpts Add OpenAiChat class for AzureOpenAI Handle Empty df for Ops and recursive function for summary
f57d211
to
0863f37
Compare
a4abf7a
to
26bad27
Compare
26bad27
to
f629b6b
Compare
Add Translation for excerpts, title and summary
f629b6b
to
f069381
Compare
@szabozoltan69 When you have time, please review and merge this to staging. Thanks |
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.
Nice one, the performance ones (prefetch_related...) are great code parts!
Deployed to Staging, migration was running fine: Running migrations: |
@szabozoltan69 |
Done (run for 3 minutes). Sorry for not noting it at first. @susilnem |
Addresses
Changes
python manage.py update_translation_fields
for updating the translation.Checklist
Things that should succeed before merging.
Release
If there is a version update, make sure to tag the repository with the latest version.