Skip to content

Commit

Permalink
fix linter whitespace issue
Browse files Browse the repository at this point in the history
  • Loading branch information
augchan42 committed Jan 23, 2024
1 parent 914fdf1 commit b34a439
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion examples/getting_started.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

logging.basicConfig(level=logging.DEBUG)


def getting_started(provider, API_KEY, API_BASE: Optional[str] = None):
"""
This getting_started example shows you how to use LLMs with your data with a technique called Retrieval Augmented Generation - RAG.
Expand Down Expand Up @@ -36,6 +37,7 @@ def getting_started(provider, API_KEY, API_BASE: Optional[str] = None):
print_answers(result, details="medium")
return result

if __name__ == "__main__":

if __name__ == "__main__":
# getting_started(provider="openai", API_KEY="NOT NEEDED", API_BASE="http://192.168.1.100:1234/v1")
getting_started(provider="openai", API_KEY="ADD KEY HERE")

0 comments on commit b34a439

Please sign in to comment.