Skip to content

Commit 1cdb2b0

Browse files
formatting & remove empty files
1 parent eb69933 commit 1cdb2b0

File tree

6 files changed

+6
-3
lines changed

6 files changed

+6
-3
lines changed

atomic-agents/atomic_agents/agents/base_agent.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ class BaseAgentConfig(BaseModel):
7070
model_config = {"arbitrary_types_allowed": True}
7171
model_api_parameters: Optional[dict] = Field(None, description="Additional parameters passed to the API provider.")
7272

73+
7374
class BaseAgent[InputSchema: BaseIOSchema, OutputSchema: BaseIOSchema]:
7475
"""
7576
Base class for chat agents.

atomic-examples/quickstart/quickstart/6_asynchronous_processing.py

Whitespace-only changes.

atomic-examples/quickstart/quickstart/6_asynchronous_processing_streaming.py

Whitespace-only changes.

atomic-examples/quickstart/quickstart/7_asynchronous_processing_batch.py

Whitespace-only changes.

atomic-examples/web-search-agent/web_search_agent/agents/query_agent.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
from typing import List
55
from atomic_agents.agents.base_agent import BaseIOSchema, BaseAgent, BaseAgentConfig
66
from atomic_agents.lib.components.system_prompt_generator import SystemPromptGenerator
7+
8+
79
class QueryAgentInputSchema(BaseIOSchema):
810
"""This is the input schema for the QueryAgent."""
911

atomic-forge/tools/webpage_scraper/tests/test_webpage_scraper.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from readability import Document
88

99
# Add the parent directory to sys.path to find the tool module
10-
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), '..')))
10+
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), "..")))
1111

1212
from tool.webpage_scraper import (
1313
WebpageScraperTool,
@@ -277,7 +277,7 @@ def test_http_errors(self, mock_get):
277277

278278
# Test the method
279279
result = self.tool.run(params)
280-
280+
281281
# Check that the error is captured in the result
282282
self.assertIsNotNone(result.error)
283283
self.assertIn("404 Client Error", result.error)
@@ -296,7 +296,7 @@ def test_connection_timeout(self, mock_get):
296296

297297
# Test the method
298298
result = self.tool.run(params)
299-
299+
300300
# Check that the error is captured in the result
301301
self.assertIsNotNone(result.error)
302302
self.assertIn("Connection timed out", result.error)

0 commit comments

Comments
 (0)