Skip to content
This repository has been archived by the owner on Oct 11, 2024. It is now read-only.

Commit

Permalink
refactor: Removes comments
Browse files Browse the repository at this point in the history
  • Loading branch information
frgfm committed Dec 6, 2023
1 parent 7e03bb2 commit e94ca5c
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/app/api/api_v1/endpoints/guidelines.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,6 @@ async def parse_guidelines_from_text(
telemetry_client.capture(user.id, event="guideline-parse")
# Analyze with LLM
return openai_client.parse_guidelines_from_text(payload.content, user_id=str(user.id))
# return ollama_client.parse_guidelines_from_text(payload.content)


@router.post("/examples", status_code=status.HTTP_200_OK)
Expand All @@ -136,4 +135,3 @@ async def generate_examples_for_text(
telemetry_client.capture(user.id, event="guideline-examples")
# Analyze with LLM
return openai_client.generate_examples_for_instruction(payload.content, payload.language, user_id=str(user.id))
# return ollama_client.generate_examples_for_instruction(payload.content, payload.language)

0 comments on commit e94ca5c

Please sign in to comment.