Skip to content

Commit f502e24

Browse files
committed
lint
1 parent 8d8ec09 commit f502e24

3 files changed

Lines changed: 7 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
)
3131
```
3232

33-
**Local Development:** Returns placeholder string (doesn't execute)
33+
**Local Development:** Returns placeholder string (doesn't execute)
3434
**Production:** Calls a built-in UDF
3535

3636
**Parameters:**

src/datacustomcode/proxy/client/LocalProxyClientProvider.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,7 @@ def __init__(self, **kwargs: object) -> None:
2828
def call_llm_gateway(self, llmModelId: str, prompt: str, maxTokens: int) -> str:
2929
return f"Hello, thanks for using {llmModelId}. So many tokens: {maxTokens}"
3030

31-
def llm_gateway_generate_text(self, template, values, llmModelId: str, maxTokens: int):
31+
def llm_gateway_generate_text(
32+
self, template, values, llmModelId: str, maxTokens: int
33+
):
3234
return f"Using Generate Text with {llmModelId} and maxTokens: {maxTokens}"

src/datacustomcode/proxy/client/base.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,6 @@ def __init__(self):
2727
def call_llm_gateway(self, llmModelId: str, prompt: str, maxTokens: int) -> str: ...
2828

2929
@abstractmethod
30-
def llm_gateway_generate_text(self, template, values, llmModelId: str, maxTokens: int): ...
30+
def llm_gateway_generate_text(
31+
self, template, values, llmModelId: str, maxTokens: int
32+
): ...

0 commit comments

Comments
 (0)