Skip to content

Commit b520feb

Browse files
committed
Fix linting
1 parent 3a9a0c2 commit b520feb

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

genai/rag/llm/cloud_chat_model.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88

99

1010
class CloudLLM:
11-
"""A concrete implementation of a cloud-based LLM. Uses openai as the default LLM provider."""
11+
"""A concrete implementation of a cloud-based LLM.
12+
Uses openai as the default LLM provider."""
1213

1314
def __init__(
1415
self,
@@ -70,7 +71,7 @@ def get_system_prompt(self) -> str:
7071
meal timing), answer them precisely based on the
7172
context and query.
7273
"""
74+
7375
def invoke(self, prompt: PromptValue) -> BaseMessage:
7476
"""Invoke the LLM with the given prompt"""
7577
return self.model.invoke(prompt)
76-

0 commit comments

Comments
 (0)