Skip to content

Commit dd9ca3b

Browse files
committed
blank string over none
1 parent 236a4a7 commit dd9ca3b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "ada-python"
3-
version = "0.3.1"
3+
version = "0.3.2"
44
description = "Ada, making LLMs easier to work with."
55
authors = ["Will Beebe"]
66
packages = [

src/agents/agent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
logger = logging.getLogger(__name__)
1313

1414
class Agent(LLM):
15-
def __init__(self, client, tool_manager: ToolManager, system_prompt: str = None, tools=[], storage_manager: StorageManager = None):
15+
def __init__(self, client, tool_manager: ToolManager, system_prompt: str = "", tools=[], storage_manager: StorageManager = None):
1616
self.tools = tools
1717
logger.debug("Initializing Agent with tools: %s and system prompt: '%s'", tools, system_prompt)
1818
super().__init__(

0 commit comments

Comments
 (0)