Skip to content

Commit

Permalink
fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
MaximilianAnzinger committed Sep 16, 2024
1 parent b10e670 commit 2826eb9
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions app/pipeline/competency_extraction_pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,12 @@ def __init__(self, callback: Optional[CompetencyExtractionCallback] = None):
implementation_id="competency_extraction_pipeline_reference_impl"
)
self.callback = callback
self.request_handler = CapabilityRequestHandler(requirements=RequirementList(
gpt_version_equivalent=4.5,
context_length=16385,
))
self.request_handler = CapabilityRequestHandler(
requirements=RequirementList(
gpt_version_equivalent=4.5,
context_length=16385,
)
)
self.output_parser = PydanticOutputParser(pydantic_object=Competency)

def __call__(
Expand Down

0 comments on commit 2826eb9

Please sign in to comment.